From a5b0446ab209e9d2b16f4e24b7ab6c7cbe0ddb08 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:20:09 +1100 Subject: [PATCH 01/12] Remove culture from URL This allows the server to 304 redirect the user to a culture that matches their preferences. --- .../ProjectRetargetHandler.RetargetSDKDescription.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.RetargetSDKDescription.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.RetargetSDKDescription.cs index 8ff441d0c6..2ad95ca889 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.RetargetSDKDescription.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.RetargetSDKDescription.cs @@ -18,7 +18,7 @@ private RetargetSDKDescription(string sdkVersion) : base( supported: true, description: string.Format(VSResources.RetargetingSDKDescription, sdkVersion), canRetarget: true, // this means we want to show this option in the retarget dialog - guidanceLink: $"https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/sdk-{sdkVersion}-windows-x64-installer") + guidanceLink: $"https://dotnet.microsoft.com/download/dotnet/thank-you/sdk-{sdkVersion}-windows-x64-installer") { } } From c9eec07f902fe67ea04812f5c44e8a605b06df4c Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:20:45 +1100 Subject: [PATCH 02/12] Alphabetize package versions --- Directory.Packages.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 449945ede6..d73c36df33 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -41,6 +41,7 @@ + @@ -49,6 +50,7 @@ + @@ -73,8 +75,6 @@ - - From 0f89cbf4233f588659b9e3840f89af5e5899691d Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:23:49 +1100 Subject: [PATCH 03/12] Prevent concurrent downloading of release data --- .../VS/Retargeting/DotNetReleasesProvider.cs | 245 +++++++----------- .../VS/Retargeting/IDotNetReleasesProvider.cs | 14 +- .../VS/Retargeting/ProjectRetargetHandler.cs | 57 ++-- .../Commands/NavigateToProjectCommand.cs | 23 +- .../VS/VsSolutionEventListener.cs | 16 ++ .../ProjectSystem/ISolutionService.cs | 9 +- .../Mocks/ISolutionServiceFactory.cs | 13 +- 7 files changed, 173 insertions(+), 204 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index 9493705a9e..d72677ea47 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -1,12 +1,11 @@ // Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information. -using System.Reflection; using Microsoft.Deployment.DotNet.Releases; using Microsoft.VisualStudio.Linq; using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Threading; -using System.Collections.Concurrent; using IFileSystem = Microsoft.VisualStudio.IO.IFileSystem; +using Path = Microsoft.IO.Path; namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; @@ -15,17 +14,14 @@ internal class DotNetReleasesProvider : IDotNetReleasesProvider { private const string RetargetingAppDataFolder = "ProjectSystem.Retargeting"; private const string ReleasesFileName = ".releases.json"; - private readonly AsyncLazy _product; - - private string AppDataPath => field ??= GetAppDataPath(); - private readonly bool _localOnly = false; + private readonly AsyncLazy _productCollection; + private readonly AsyncLazy _appDataPath; private readonly IVsUIService _vsShell; private readonly IFileSystem _fileSystem; private readonly IProjectThreadingService _projectThreadingService; - private readonly ConcurrentDictionary _releaseUpdateTasksByProductVersion = new(StringComparer.OrdinalIgnoreCase); - private readonly ConcurrentDictionary> _productReleasesByProductVersion = new(StringComparer.OrdinalIgnoreCase); + private ImmutableDictionary>> _productReleasesByProductVersion = ImmutableStringDictionary>>.EmptyOrdinal; [ImportingConstructor] public DotNetReleasesProvider( @@ -36,191 +32,148 @@ public DotNetReleasesProvider( _vsShell = vsShell; _projectThreadingService = projectThreadingService; _fileSystem = fileSystem; - _product = new AsyncLazy( + + _appDataPath = new AsyncLazy( async () => { - string resourcesFileName = Path.Combine(AppDataPath, RetargetingAppDataFolder, ReleasesFileName); + await _projectThreadingService.JoinableTaskFactory.SwitchToMainThreadAsync(); - // force the local file first, then download the latest without awaiting. - ProductCollection? productCollection = await GetProductCollectionAsync(resourcesFileName, forceLocalFile: _localOnly); + HResult.Verify( + _vsShell.Value.GetProperty((int)__VSSPROPID4.VSSPROPID_LocalAppDataDir, out object pObj), + $"Error getting local appdata dir in {typeof(DotNetReleasesProvider)}."); - if (!_localOnly) + if (pObj is string path) { - _ = _projectThreadingService.JoinableTaskFactory.RunAsync(async () => - { - try - { - _ = await GetProductCollectionAsync(resourcesFileName, forceLocalFile: false); - } - catch - { - } - }); + // e.g. "%LocalAppData%\Microsoft\VisualStudio\18.0_721820d7\" + return path; + } + else + { + throw new InvalidOperationException("Could not determine local app data path."); } + }, + _projectThreadingService.JoinableTaskFactory); - return productCollection; + _productCollection = new AsyncLazy( + async () => + { + string appDataPath = await _appDataPath.GetValueAsync(); - }, _projectThreadingService.JoinableTaskFactory); - } + string resourcesFileName = Path.Join(appDataPath, RetargetingAppDataFolder, ReleasesFileName); - private string GetAppDataPath() - { - HResult.Verify( - _vsShell.Value.GetProperty((int)__VSSPROPID4.VSSPROPID_LocalAppDataDir, out object pObj), - $"Error getting local appdata dir in {typeof(DotNetReleasesProvider)}."); - - if (pObj is string path) - { - return path; - } - else - { - throw new InvalidOperationException("Could not determine local app data path."); - } - } + try + { + CreateDefaultFileIfNotExist(resourcesFileName, ReleasesFileName); - private async Task GetProductCollectionAsync(string resourcesFileName, bool forceLocalFile = false, CancellationToken cancellationToken = default) - { - try - { - await CreateDefaultFileIfNotExistAsync(resourcesFileName, ReleasesFileName, overwriteIfExists: false); - return await ProductCollection.GetFromFileAsync(resourcesFileName, downloadLatest: !forceLocalFile); - } - catch (Exception) - { - // If we fail to load the product collection, return null - return null; - } + return await ProductCollection.GetFromFileAsync(resourcesFileName, downloadLatest: true); + } + catch (Exception ex) when (ex.IsCatchable()) + { + // If we fail to load the product collection, return null + return null; + } + }, + _projectThreadingService.JoinableTaskFactory); } - private Task CreateDefaultFileIfNotExistAsync(string path, string resource, bool overwriteIfExists = false) + private void CreateDefaultFileIfNotExist(string destinationPath, string fileName) { - if (!_fileSystem.FileExists(path) || overwriteIfExists) + if (!_fileSystem.FileExists(destinationPath)) { - Assembly assembly = GetType().Assembly; - string cachedFile = Path.Combine(Path.GetDirectoryName(assembly.Location), ".releases", resource); + // e.g. %LocalAppData%\Microsoft\VisualStudio\18.0_721820d7Exp\Extensions\Microsoft\C#, Visual Basic and F# project systems\99.0.0.0\.releases\.releases.json + string sourceFile = Path.Join(Path.GetDirectoryName(GetType().Assembly.Location), ".releases", fileName); - if (_fileSystem.FileExists(cachedFile)) + if (_fileSystem.FileExists(sourceFile)) { - _fileSystem.CreateDirectory(Path.GetDirectoryName(path)); - _fileSystem.CopyFile(cachedFile, path, overwriteIfExists); + _fileSystem.CreateDirectory(Path.GetDirectoryName(destinationPath)!); + _fileSystem.CopyFile(sourceFile, destinationPath, overwrite: false); } } - - return Task.CompletedTask; } - private async Task GetProductCollectionAsync(CancellationToken cancellationToken) + public async Task GetNewerSupportedSdkVersionAsync(string sdkVersion, CancellationToken cancellationToken = default) { - return await _product.GetValueAsync(cancellationToken); - } + ProductCollection? products = await _productCollection.GetValueAsync(cancellationToken); - public async Task GetSupportedOrLatestSdkVersionAsync( - string? sdkVersion, - bool includePreview = false, - CancellationToken cancellationToken = default) - { - ProductCollection? products = await GetProductCollectionAsync(cancellationToken); if (products is null) { // could not determine release, just return the same version. - return sdkVersion; + return null; } - if (sdkVersion is not null) + if (ReleaseVersion.TryParse(sdkVersion, out ReleaseVersion parsedSdkVersion)) { - if (ReleaseVersion.TryParse(sdkVersion, out ReleaseVersion parsedSdkVersion)) - { - // Find the product that matches the major/minor version of the SDK - Product matchingProduct = products.FirstOrDefault(p => p.LatestSdkVersion.Major == parsedSdkVersion.Major && - p.LatestSdkVersion.Minor == parsedSdkVersion.Minor && p.LatestSdkVersion.IsLaterThan(parsedSdkVersion)); + // Find the product that matches the major/minor version of the SDK + Product? matchingProduct = products.FirstOrDefault( + p => p.LatestSdkVersion.Major == parsedSdkVersion.Major && + p.LatestSdkVersion.Minor == parsedSdkVersion.Minor && + p.LatestSdkVersion.IsLaterThan(parsedSdkVersion)); - if (matchingProduct is not null) + if (matchingProduct is not null) + { + try { - try - { - return await GetLatestSupportedSdkVersionAsync(parsedSdkVersion, includePreview, matchingProduct); - } - catch - { - // we can just fall through and return null here - } + return await GetLatestSupportedSdkVersionAsync(parsedSdkVersion, matchingProduct); + } + catch (Exception ex) when (ex.IsCatchable()) + { + // we can just fall through and return null here } } } return null; - } - - private async Task GetLatestSupportedSdkVersionAsync(ReleaseVersion? currentVersion, bool includePreview, Product matchingProduct) - { - string resourceFileName = Path.Combine(AppDataPath, RetargetingAppDataFolder, $"{matchingProduct.ProductVersion}{ReleasesFileName}"); - - JoinableTask? updateTask = null; - if (!_productReleasesByProductVersion.TryGetValue(matchingProduct.ProductVersion, out IReadOnlyCollection? releases)) + async Task GetLatestSupportedSdkVersionAsync(ReleaseVersion? currentVersion, Product matchingProduct) { - // grab already downloaded release, then kick off a background task to update the releases cache - if (_releaseUpdateTasksByProductVersion.TryGetValue(matchingProduct.ProductVersion, out updateTask)) - { - // If there's an existing update task for this product version, wait for it to complete - await updateTask; - } + var lazy = ImmutableInterlocked.GetOrAdd( + ref _productReleasesByProductVersion, + key: matchingProduct.ProductVersion, + valueFactory: (key, arg) => new AsyncLazy>( + async () => + { + string appDataPath = await _appDataPath.GetValueAsync(); - releases = await GetReleasesAsync(matchingProduct, resourceFileName, matchingProduct.ProductVersion, forceLocalFile: _localOnly); - _productReleasesByProductVersion[matchingProduct.ProductVersion] = releases ?? []; - } + string resourceFileName = Path.Combine(appDataPath, RetargetingAppDataFolder, $"{key}{ReleasesFileName}"); - if (!_localOnly && updateTask is null) - { - // kick off a background task to update the releases cache, but don't await it. - // it will be awaited on the next call if it hasn't completed yet. - _ = _releaseUpdateTasksByProductVersion.GetOrAdd(matchingProduct.ProductVersion, - _projectThreadingService.JoinableTaskFactory.RunAsync(async () => - { - try - { - _ = await GetReleasesAsync(matchingProduct, resourceFileName, matchingProduct.ProductVersion, forceLocalFile: false); - } - catch - { - } - })); - } + return await GetReleasesAsync(arg, resourceFileName, key) ?? []; + }, + _projectThreadingService.JoinableTaskFactory), + factoryArgument: matchingProduct); - // Find the latest SDK version from the releases that is not preview/go-live - SdkReleaseComponent? latestSdk = releases - .Where(r => r.Sdks?.Any() is true && - (includePreview || (matchingProduct.SupportPhase != SupportPhase.Preview && matchingProduct.SupportPhase != SupportPhase.GoLive))) - .SelectMany(r => r.Sdks) - .MaxByOrDefault(sdk => sdk.Version); + var releases = await lazy.GetValueAsync(cancellationToken); - if (latestSdk is not null) - { - if (currentVersion is not null - && string.Equals(currentVersion.ToString(), latestSdk.Version.ToString(), StringComparison.OrdinalIgnoreCase)) + // Find the latest SDK version + SdkReleaseComponent? latestSdk = releases + .SelectMany(r => r.Sdks) + .MaxByOrDefault(sdk => sdk.Version); + + if (latestSdk is not null) { - return currentVersion.ToString(); + if (currentVersion?.Equals(latestSdk.Version) is true) + { + return currentVersion.ToString(); + } + + return latestSdk.DisplayVersion.ToString(); } - return latestSdk.DisplayVersion.ToString(); + return null; } - return null; - } - - private async Task?> GetReleasesAsync(Product product, string resourceFileName, string version, bool forceLocalFile = false, CancellationToken cancellationToken = default) - { - try - { - await CreateDefaultFileIfNotExistAsync(resourceFileName, $"{version}{ReleasesFileName}", overwriteIfExists: forceLocalFile); - return await product.GetReleasesAsync(resourceFileName, downloadLatest: !forceLocalFile); - } - catch + async Task?> GetReleasesAsync(Product product, string resourceFileName, string version, CancellationToken cancellationToken = default) { - // if we fail to load the releases, return null - return null; + try + { + CreateDefaultFileIfNotExist(resourceFileName, $"{version}{ReleasesFileName}"); + + return await product.GetReleasesAsync(resourceFileName, downloadLatest: true); + } + catch (Exception ex) when (ex.IsCatchable()) + { + // if we fail to load the releases, return null + return null; + } } } } - diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/IDotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/IDotNetReleasesProvider.cs index 535ce2b824..cda6c570f2 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/IDotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/IDotNetReleasesProvider.cs @@ -5,19 +5,13 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; /// /// Provides access to .NET releases information /// +[ProjectSystemContract(ProjectSystemContractScope.ProjectService, ProjectSystemContractProvider.Private)] internal interface IDotNetReleasesProvider { /// - /// Returns the supported or latest .NET SDK version based on the specified . + /// Returns a newer supported .NET SDK version within the same major/minor band as . /// - /// The SDK version to check for support or to use as a baseline for finding the latest version. If null, just get the latest - /// If true, preview SDK versions may be included in the result; otherwise, only stable versions are considered. Default is false. + /// The SDK version to check for support or to use as a baseline for finding the latest version. /// A token to monitor for cancellation requests. - /// - /// A task that represents the asynchronous operation. The task result contains the supported or latest SDK version as a string, or null if no suitable version is found. - /// - Task GetSupportedOrLatestSdkVersionAsync( - string? sdkVersion, - bool includePreview = false, - CancellationToken cancellationToken = default); + Task GetNewerSupportedSdkVersionAsync(string sdkVersion, CancellationToken cancellationToken = default); } diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs index 5f2f2f24b1..b4f2889074 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs @@ -13,22 +13,22 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; [Order(Order.Default)] internal sealed partial class ProjectRetargetHandler : IProjectRetargetHandler, IDisposable { - private readonly Lazy _releasesProvider; + private readonly IDotNetReleasesProvider _releasesProvider; private readonly IFileSystem _fileSystem; private readonly IProjectThreadingService _projectThreadingService; - private readonly IVsService _projectRetargetingService; - private readonly IVsService _solutionService; + private readonly IVsService _projectRetargetingService; + private readonly ISolutionService _solutionService; private Guid _currentSdkDescriptionId = Guid.Empty; private Guid _sdkRetargetId = Guid.Empty; [ImportingConstructor] public ProjectRetargetHandler( - Lazy releasesProvider, + IDotNetReleasesProvider releasesProvider, IFileSystem fileSystem, IProjectThreadingService projectThreadingService, IVsService projectRetargetingService, - IVsService solutionService) + ISolutionService solutionService) { _releasesProvider = releasesProvider; _fileSystem = fileSystem; @@ -39,9 +39,9 @@ public ProjectRetargetHandler( public Task CheckForRetargetAsync(RetargetCheckOptions options) { - if ((options & RetargetCheckOptions.ProjectRetarget) == 0 - && (options & RetargetCheckOptions.SolutionRetarget) == 0 - && (options & RetargetCheckOptions.ProjectLoad) == 0) + RetargetCheckOptions flags = RetargetCheckOptions.ProjectRetarget | RetargetCheckOptions.SolutionRetarget | RetargetCheckOptions.ProjectLoad; + + if ((options & flags) == 0) { return TaskResult.Null(); } @@ -70,21 +70,16 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro return null; } - return await GetTargetChangeAsync(retargetingService); - } - - private async Task GetTargetChangeAsync(IVsTrackProjectRetargeting2 retargetingService) - { - string? sdkVersion = await GetSdkVersionForProjectAsync(); + string? sdkVersion = await GetSdkVersionForSolutionAsync(); if (sdkVersion is null) { return null; } - string? retargetVersion = await _releasesProvider.Value.GetSupportedOrLatestSdkVersionAsync(sdkVersion, includePreview: true); + string? retargetVersion = await _releasesProvider.GetNewerSupportedSdkVersionAsync(sdkVersion); - if (retargetVersion is null || sdkVersion == retargetVersion) + if (retargetVersion is null) { return null; } @@ -95,14 +90,14 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro // ultimately we will need to just set retarget. Right now, we need to register two // targets, we want to create two distinct ones, as the bug workaround requires different guids - IVsProjectTargetDescription currentSdkDescription = RetargetSDKDescription.Create(retargetVersion.ToString()); // this won't be needed + IVsProjectTargetDescription currentSdkDescription = RetargetSDKDescription.Create(retargetVersion); // this won't be needed retargetingService.RegisterProjectTarget(currentSdkDescription); // this wont be needed. _currentSdkDescriptionId = currentSdkDescription.TargetId; } if (_sdkRetargetId == Guid.Empty) { - IVsProjectTargetDescription retargetSdkDescription = RetargetSDKDescription.Create(retargetVersion.ToString()); // this won't be needed + IVsProjectTargetDescription retargetSdkDescription = RetargetSDKDescription.Create(retargetVersion); // this won't be needed retargetingService.RegisterProjectTarget(retargetSdkDescription); // this wont be needed. _sdkRetargetId = retargetSdkDescription.TargetId; } @@ -131,13 +126,13 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro return null; } - private async Task GetSdkVersionForProjectAsync() + private async Task GetSdkVersionForSolutionAsync() { - string? solutionDirectory = await GetSolutionDirectoryAsync(); + string? solutionDirectory = await _solutionService.GetSolutionDirectoryAsync(); - if (!string.IsNullOrEmpty(solutionDirectory)) + if (!Strings.IsNullOrEmpty(solutionDirectory)) { - string? globalJsonPath = FindGlobalJsonPath(solutionDirectory!); + string? globalJsonPath = FindGlobalJsonPath(solutionDirectory); if (globalJsonPath is not null) { try @@ -150,7 +145,7 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro return versionProp.GetString(); } } - catch /* ignore errors */ + catch { } } @@ -159,22 +154,6 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro return null; } - private async Task GetSolutionDirectoryAsync() - { - IVsSolution? solution = await _solutionService.GetValueOrNullAsync(); - - if (solution is not null) - { - int hr = solution.GetSolutionInfo(out string solutionDirectory, out string _, out string _); - if (hr == HResult.OK && !string.IsNullOrEmpty(solutionDirectory)) - { - return solutionDirectory; - } - } - - return null; - } - public void Dispose() { if (_currentSdkDescriptionId != Guid.Empty || _sdkRetargetId != Guid.Empty) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Tree/Dependencies/Commands/NavigateToProjectCommand.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Tree/Dependencies/Commands/NavigateToProjectCommand.cs index 6d17aeaf2a..b391e34fc4 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Tree/Dependencies/Commands/NavigateToProjectCommand.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Tree/Dependencies/Commands/NavigateToProjectCommand.cs @@ -66,17 +66,28 @@ private static bool CanNavigateTo(IProjectTree node) private async Task NavigateToAsync(IProjectTree node) { - string? browsePath = await DependencyServices.GetBrowsePathAsync(_project, node); - if (browsePath is null) + await _threadingService.SwitchToUIThread(); + + if (!_solutionExplorer.IsAvailable) return; - await _threadingService.SwitchToUIThread(); + // Find the hierarchy based on the project file + var hierarchy = (IVsUIHierarchy?)_projectServices.GetHierarchyByProjectName(_project.FullPath); + + if (hierarchy is null) + { + string? browsePath = await DependencyServices.GetBrowsePathAsync(_project, node); + if (browsePath is null) + return; + + // Find the hierarchy based on the browse path + hierarchy = (IVsUIHierarchy?)_projectServices.GetHierarchyByProjectName(browsePath); + } - // Find the hierarchy based on the project file, and then select it - var hierarchy = (IVsUIHierarchy?)_projectServices.GetHierarchyByProjectName(browsePath); - if (hierarchy is null || !_solutionExplorer.IsAvailable) + if (hierarchy is null) return; + // Select the project node in the tree _ = _solutionExplorer.Select(hierarchy, HierarchyId.Root); } } diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/VsSolutionEventListener.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/VsSolutionEventListener.cs index 450efbddfe..2005f99d95 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/VsSolutionEventListener.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/VsSolutionEventListener.cs @@ -53,6 +53,22 @@ public async Task SubscribeAsync(IVsSolutionEvents solutionEve return new Subscription(solution, JoinableFactory, cookie); } + public async Task GetSolutionDirectoryAsync(CancellationToken cancellationToken) + { + await JoinableFactory.SwitchToMainThreadAsync(cancellationToken); + + IVsSolution solution = _solution.Value; + + int hr = solution.GetSolutionInfo(out string solutionDirectory, out _, out _); + + if (hr == HResult.OK && !string.IsNullOrEmpty(solutionDirectory)) + { + return solutionDirectory; + } + + return null; + } + private sealed class Subscription : IAsyncDisposable { private readonly IVsSolution _solution; diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/ISolutionService.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/ISolutionService.cs index 3d6c221388..ba72c5f445 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/ISolutionService.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed/ProjectSystem/ISolutionService.cs @@ -37,7 +37,14 @@ Task LoadedInHost /// Creates a new subscription for solution events that will call back via . /// /// The callback for events. - /// A token whose cancellation marks lost interest in the result of this task. + /// A token whose cancellation marks lost interest in the result of this operation. /// An object that unsubscribes when disposed. Task SubscribeAsync(IVsSolutionEvents eventListener, CancellationToken cancellationToken = default); + + /// + /// Gets the directory of the current solution. + /// + /// A token whose cancellation marks lost interest in the result of this operation. + /// The directory of the current solution, or if it cannot be determined. + Task GetSolutionDirectoryAsync(CancellationToken cancellationToken = default); } diff --git a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs index 9538f6edf3..3aac97ea3a 100644 --- a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs +++ b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs @@ -4,14 +4,23 @@ namespace Microsoft.VisualStudio.ProjectSystem; internal static class ISolutionServiceFactory { - public static ISolutionService Create() + public static ISolutionService Create(string? solutionDirectory = null) { - return ImplementSolutionLoadedInHost(() => new Task(() => { })); + var mock = new Mock(); + + mock.Setup(m => m.LoadedInHost) + .Returns(Task.CompletedTask); + + mock.Setup(m => m.GetSolutionDirectoryAsync(It.IsAny())) + .ReturnsAsync(solutionDirectory); + + return mock.Object; } public static ISolutionService ImplementSolutionLoadedInHost(Func action) { var mock = new Mock(); + mock.Setup(m => m.LoadedInHost) .Returns(action); From 4e054dbfd8cb8b43b2bd23eb0e822b2d92aac453 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:29:54 +1100 Subject: [PATCH 04/12] Remove release data that ships with VS --- .../.releases/.releases.json | 178 - .../.releases/10.0.releases.json | 5207 --- .../.releases/5.0.releases.json | 12934 -------- .../.releases/6.0.releases.json | 26433 ---------------- .../.releases/7.0.releases.json | 17138 ---------- .../.releases/8.0.releases.json | 18992 ----------- .../.releases/9.0.releases.json | 11172 ------- .../.releases/readme.md | 6 - .../.releases/updateReleases.cmd | 25 - ...sualStudio.ProjectSystem.Managed.VS.csproj | 10 - .../VS/Retargeting/DotNetReleasesProvider.cs | 23 - .../Setup/PackageContentTests.cs | 7 - 12 files changed, 92125 deletions(-) delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/10.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/5.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/6.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/7.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/8.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/9.0.releases.json delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/readme.md delete mode 100644 src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/updateReleases.cmd diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/.releases.json deleted file mode 100644 index a57a02b3d2..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/.releases.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/dotnet-releases-index.json", - "releases-index": [ - { - "channel-version": "10.0", - "latest-release": "10.0.0-rc.1", - "latest-release-date": "2025-09-09", - "security": false, - "latest-runtime": "10.0.0-rc.1.25451.107", - "latest-sdk": "10.0.100-rc.1.25451.107", - "product": ".NET", - "support-phase": "go-live", - "release-type": "lts", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/10.0/releases.json", - "supported-os.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/10.0/supported-os.json" - }, - { - "channel-version": "9.0", - "latest-release": "9.0.9", - "latest-release-date": "2025-09-09", - "security": false, - "latest-runtime": "9.0.9", - "latest-sdk": "9.0.305", - "product": ".NET", - "support-phase": "active", - "eol-date": "2026-11-10", - "release-type": "sts", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/9.0/releases.json", - "supported-os.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/9.0/supported-os.json" - }, - { - "channel-version": "8.0", - "latest-release": "8.0.20", - "latest-release-date": "2025-09-09", - "security": false, - "latest-runtime": "8.0.20", - "latest-sdk": "8.0.414", - "product": ".NET", - "support-phase": "active", - "eol-date": "2026-11-10", - "release-type": "lts", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/8.0/releases.json", - "supported-os.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/8.0/supported-os.json" - }, - { - "channel-version": "7.0", - "latest-release": "7.0.20", - "latest-release-date": "2024-05-28", - "security": true, - "latest-runtime": "7.0.20", - "latest-sdk": "7.0.410", - "product": ".NET", - "support-phase": "eol", - "eol-date": "2024-05-14", - "release-type": "sts", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/7.0/releases.json", - "supported-os.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/7.0/supported-os.json" - }, - { - "channel-version": "6.0", - "latest-release": "6.0.36", - "latest-release-date": "2024-11-12", - "security": false, - "latest-runtime": "6.0.36", - "latest-sdk": "6.0.428", - "product": ".NET", - "support-phase": "eol", - "eol-date": "2024-11-12", - "release-type": "lts", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/6.0/releases.json", - "supported-os.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/6.0/supported-os.json" - }, - { - "channel-version": "5.0", - "latest-release": "5.0.17", - "latest-release-date": "2022-05-10", - "security": true, - "latest-runtime": "5.0.17", - "latest-sdk": "5.0.408", - "product": ".NET", - "release-type": "sts", - "support-phase": "eol", - "eol-date": "2022-05-10", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/5.0/releases.json" - }, - { - "channel-version": "3.1", - "latest-release": "3.1.32", - "latest-release-date": "2022-12-13", - "security": true, - "latest-runtime": "3.1.32", - "latest-sdk": "3.1.426", - "product": ".NET Core", - "release-type": "lts", - "support-phase": "eol", - "eol-date": "2022-12-13", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/3.1/releases.json" - }, - { - "channel-version": "3.0", - "latest-release": "3.0.3", - "latest-release-date": "2020-02-18", - "security": false, - "latest-runtime": "3.0.3", - "latest-sdk": "3.0.103", - "product": ".NET Core", - "release-type": "sts", - "support-phase": "eol", - "eol-date": "2020-03-03", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/3.0/releases.json" - }, - { - "channel-version": "2.1", - "latest-release": "2.1.30", - "latest-release-date": "2021-08-19", - "security": true, - "latest-runtime": "2.1.30", - "latest-sdk": "2.1.818", - "product": ".NET Core", - "release-type": "lts", - "support-phase": "eol", - "eol-date": "2021-08-21", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/2.1/releases.json" - }, - { - "channel-version": "2.2", - "latest-release": "2.2.8", - "latest-release-date": "2019-11-19", - "security": false, - "latest-runtime": "2.2.8", - "latest-sdk": "2.2.207", - "product": ".NET Core", - "release-type": "sts", - "support-phase": "eol", - "eol-date": "2019-12-23", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/2.2/releases.json" - }, - { - "channel-version": "2.0", - "latest-release": "2.0.9", - "latest-release-date": "2018-07-10", - "security": true, - "latest-runtime": "2.0.9", - "latest-sdk": "2.1.202", - "product": ".NET Core", - "release-type": "sts", - "support-phase": "eol", - "eol-date": "2018-10-01", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/2.0/releases.json" - }, - { - "channel-version": "1.1", - "latest-release": "1.1.13", - "latest-release-date": "2019-05-14", - "security": true, - "latest-runtime": "1.1.13", - "latest-sdk": "1.1.14", - "product": ".NET Core", - "release-type": "lts", - "support-phase": "eol", - "eol-date": "2019-06-27", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/1.1/releases.json" - }, - { - "channel-version": "1.0", - "latest-release": "1.0.16", - "latest-release-date": "2019-05-14", - "security": true, - "latest-runtime": "1.0.16", - "latest-sdk": "1.1.14", - "product": ".NET Core", - "release-type": "lts", - "support-phase": "eol", - "eol-date": "2019-06-27", - "releases.json": "https://builds.dotnet.microsoft.com/dotnet/release-metadata/1.0/releases.json" - } - ] -} diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/10.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/10.0.releases.json deleted file mode 100644 index 71d4d85d29..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/10.0.releases.json +++ /dev/null @@ -1,5207 +0,0 @@ -{ - "channel-version": "10.0", - "latest-release": "10.0.0-rc.1", - "latest-release-date": "2025-09-09", - "latest-runtime": "10.0.0-rc.1.25451.107", - "latest-sdk": "10.0.100-rc.1.25451.107", - "support-phase": "go-live", - "release-type": "lts", - "lifecycle-policy": "https://aka.ms/dotnetcoresupport", - "releases": [ - { - "release-date": "2025-09-09", - "release-version": "10.0.0-rc.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/rc1/10.0.0-rc.1.md", - "runtime": { - "version": "10.0.0-rc.1.25451.107", - "version-display": "10.0.0-rc.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-arm.tar.gz", - "hash": "a4642196b0781088b8d232ce7fe5c1dece2e84998826b2b0e20be2eab7af425ea4defe609d7e20fb187f679df24aa6e9c711e48618f056bad1daa0ec00c9e26b" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "2d0c6abef3f8161f2df7ea2f61c96bafa9a3be44fbd77d9530e71a6ab1e3cbb95e34c41c945148790fc52baa3933fb731e4b5768f1e8e16a681adeba73aa0342" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-bionic-arm64.tar.gz", - "hash": "f79213bd0b43463f1b232e708eb69dd42fde7759d1aaf76be090e14a91ac1800f673c18c25005a2137c16722f1ec7ec1c91d2d572bdb0ce6326e7f851f5e1fdc" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-bionic-x64.tar.gz", - "hash": "0bf65ee779f74afe423519054dd0e81ba88561f69ae1da2afd70c015925b5782419cbee65387dde7ce7f185e955a4269b264ef1c4b632a856a94d1a14fe278a1" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "a7cfc8b5e28568feb00505d695b02945463bd978b8f2df28d50717f2a964ed128f9000ccea5509a98c450d4eec8c9b6755a45c7e47c40fb63d4080bc3871664f" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "51c57f42550727dbff85acb645bbe6a5d0b5acf7847f051285b7c103d8a8fa295fd462c435eec666af02d3608a094164fac3289d2f01d2ecbdc932e185a5959f" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "66748c01dc98e5a9c22a090a41743535bfd5944ce56d08f767e74098db71b05d5174a81960b30d5ca5c967e04a13d40befcd3e159e510b1a4f59d309b6f70603" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-linux-x64.tar.gz", - "hash": "47447e76b07c86b6aa8149a987b09541f32107c51be04499aebebe49ef0f105515b8cb2878e00e0638f989d7479488020fe43aa6ffaac82fb75ea56c723e7c5f" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "2e54f6b6185b29b872ba3c09230d156c893e128f2e89e59fc3659b1659e6deebb4992abc6d4a402f07eb8c7da8044d56387ce3cd1ee99f9e3d5c36c71e2fceb1" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-osx-x64.tar.gz", - "hash": "add97710f49df0c49472569ca36a8ee0100bfd414f4ee192cb3fdf7cf8d2901c7b3bf218da6f86e0dfc738f1c396eba6d0d38fb3c89a2870697215628ea865d9" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "01df5d4e7f0a8ed35a44e64e6b5539f2758d58de9abd432b62334f7474915e35a50be47e206f512fe344b427b713bf05e52cefa13dd95d7925295945b30bf387" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "aaf370821b9ce471655c2570e144b14c9fb49f0a75b8653287c1cfb1bf974692dd633de7835067ec83f7842fb360315887d12327381a501a9be1bbe2cdfa6766" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-apphost-pack-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "f2a3cfc5b46d784d0a963b13579371d8af753d2f5f2ab7d9458f9d27bc156e4f37f53f06d2c0c94134f8a63cab0670ecd064387f55b5583bbad56522969db51b" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-arm.tar.gz", - "hash": "9390efa105404d7df1779da30cd3b951fb5ae68154e1dcea280f4172576e546a4e26e11682a8078b837e0965a80e06eac5dacbb56cd7045a44ccfeb901d262b3" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "8d76e4e665af7dfdba5e4a31cb6f1bbb187bc2b9b8de565ef5ed715768dae859123042af7b384764096d0cb89a3d609f9e49bc27c229d2c11654cd488896263f" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-bionic-arm64.tar.gz", - "hash": "2bb6fc73eb9967e45d649c857ddc413698402915b3bfba25dabcb8bae709f764097a1e18a914a6ff16256ce379231afab57f7fd233fe79a1ee6c18a6e101d6a7" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-bionic-x64.tar.gz", - "hash": "e742d8f031e467e8bb26465a261e2740199a1a108a7fe740f8a6d9c1372eafde42a89d8d761e3ab63972dcac19868b59c9fc10bd3a20dc0130e7687a6699b169" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "1971f8162e8f10d2b8a8a313eecd41805d3491d2872c622bcf185d9c17fe8218370af021920d002979ce6bb1043bf7a0d913e2f27346d64bdea17c4999359522" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "294dff38273aab532eaaed7901399125090612f21f8c2e393885c61b649aabf5a4ccb850d8662f048d5a21f35bf3002b03e01c54977477a35190084a6ed25f59" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "1475454caa519cd3afa6bfb7a9517507c4914c53d0a7928ef7f5d342a56bda351a50bdc29424fae3cb5ecdacd23d7ef3c187ddc79932cca4639b9aa431b1256d" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-linux-x64.tar.gz", - "hash": "bf6b7f71af8eb06ea0ba87fcd28c178222d0fc93a5b1ca9366003c24fcafbdc497b38809e4310a97bfb04fd27a0b6e892e76e8d403f6018d6fc9588c6a38170f" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-osx-arm64.pkg", - "hash": "77fb9573b5c0d4f24cfd10eb6e8091d0977edd9911b32709fcc33392dc4e66e0aa7d72586fee25b198b819ada1e2f578041ab40dbd30adf1a8aaef78da32be04" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "d9f695b077b483ddd6ae2ae27b71e7de1639b11fa31905482a1bc9757487acd54bf6a47816b0244158d91b76423c542c6a282e47705a14525761eae0b2fa5047" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-osx-x64.pkg", - "hash": "8ee3a91d37dc86b6aa06a795970c7ca9836e0ee756d916c878dc82d6d329a3021d8bd9a364df4cf972ff69ac00ca1de84c5349f4c05e7c56f3d1a10a8c65b3b8" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-osx-x64.tar.gz", - "hash": "5ce8c4925d1d2f70f6fcd6d1a4fd001fac05a3029612519a1e96cd784d569a4813e8f1c85a5138eb75a22dd3c4ec2d9a70465c89042a68576a7965996e5eda83" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-arm64.exe", - "hash": "52ed29a335922d3298f2bf9825bffecc29680338ff8b52da82a1932943d3d50c3d680183d237dec43d8f7c9cd5057b6badd0443fa165bb4b77dd485e551b83f8" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "a17902f55631c1e8d26d67cbe7cc1e514f83b2288a1fe6395efb698b24c9d731e143de6301a69b8f8484682e30125fbb4c58e194efa1f969fa155bf447ccbeb9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-x64.exe", - "hash": "af3d7c04da65ffc5d93f856bb7f5a26359972137426919d39ea80d90bbebfa6d2d3ac616b01c440c5be5858131297930bab6fd3aff19556683ff5a03e1160ffe" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "cfccd5249860fcd7e8615f3c8e4aa40dcf84880962ec5f78c7df5fad64a17d234af285ee7540cbab2c5b22cccb4dba8d08e47ce50b3869ae79aa50c14dc77427" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-x86.exe", - "hash": "8c5907e725bbb98cc3e585f3ec0423eed3575e34453e68b8ca972c5e10bd005a6c542bea176c4d295070cfdc689257bd110604d04d4dce676742b5efac9b28d4" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-rc.1.25451.107/dotnet-runtime-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "bfd8dcc2b9c8d9a2a19a980e40474e743a737a02e9e1331be74cbfab1e5b751dc03b186936621dacf1fc4002c6264a892379e1866520fe9182b90f7099097fbf" - } - ] - }, - "sdk": { - "version": "10.0.100-rc.1.25451.107", - "version-display": "10.0.100-rc.1", - "runtime-version": "10.0.0-rc.1.25451.107", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2026 (v18.0 Preview 1)", - "vs-mac-support": "", - "csharp-version": "14.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-arm.tar.gz", - "hash": "4a7b82948634bf4981e47b292bfc4f9407925936ea736420a51accf0ecd05c6e1aaa1c7ff940ef5750b11cd7b902490b8a2f4da730ed729846270751f3ad0b56" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "71a9475cc1022058f3391eef850b518440d2e134de63b1cb8be048ab0dcdc1339288c5656e806b1097a603fd1c265d4e677359082611462482ee402faffac3d2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "61d72712e295250f3d2343afa97be7c272b7e29227dcfadbd06d9a47ec2b87158d3a2ec1f559e98997a4cf79a5410b85021a6690a8bde35067284926b2342eb0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "ff51d5eaa36e164980af47f99ee5f609b19fd7cf0caf7e167d40c6f30324072b21761528f266c6b921c07e7fac2240701e7d1b9af8ab548bcd05d37208aa5595" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "cc7eb9a34d5cea9757911591a455ff2090d321c3ff5e2a16c8119edfed13ce7eff1fff408134d8b5a62bffbb1b887ea6ccb60a74977a5ce77a299735f09e028b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-x64.tar.gz", - "hash": "bb34b93d5ae23101e6774800d61243c236ad01f27b22a1670d987c1068ce075601b4dfd521320a725a654b655ffd912878b2fc843617a0b38c5a61f30a4cd29f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-arm64.pkg", - "hash": "ad94ab7ddeafba6a19cb71d7e4af8f5937cea8d50a15e1fa20751b41ec82cf140b40fded39dbd7d4d50f89ee174ac034a6ae55313aeeb67b453a53dc66cbee5f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "43c532ee0aa03f0245ef05578789c04822ea69c38e852f57bb0a1b4b34750f6d0f8c77a085c4eb0d613018f83674afb9096e99fce668a8763098abe821b9b7e0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-x64.pkg", - "hash": "de469378e1f613e867ab34dc7ae69a3c7f39a1fe70537650e3b0a9010c7cecb9e0c3c757c2bb1ea2c96a189014910b354c881b31d91eb876c502e57c5083b7d0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-x64.tar.gz", - "hash": "9370c3bf82498d73c173814237ece108c20758e84293e76532837d877be7ebe9aa8a72ffee8b371bbc0aceaa24110d3778715322778a42159bd32910da9f0768" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-arm64.exe", - "hash": "d189e87cfdd5311f7e9e663e83a98995f90a420aed476967dd6e5f1a06625f8c517df155df97a90e5bdae53e2f3cd3be9f1dbc139b5a3b40bfbb2fecb590dc58" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-arm64.zip", - "hash": "26b1251b0e7a3ff461ed99a59ecdc43cd9ba547bd34cd84d5e77816a3ee19020671a1c314d30d1162d4c844f5413fcd36bceed32c381c5f99cc31c1b566f5e85" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x64.exe", - "hash": "92926100cd94d7e3e936c9f433609707c0563dc12cdb591a2cdd92f6a332e92b312cb4ca1174956e16d68f6a42521c30214f878e492990ef3a98db08c03dc75a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x64.zip", - "hash": "030194995e98e1c0f22b77c2d42ded91503fb989db789ed56d3cf9bc08473a0450c79c086c65fc456ae906e1aff90d1b93785d1d69b1465b20721833438062a5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x86.exe", - "hash": "f1ee78cbbbd49e5a801fe950a5a3e2b4be6323e79f5a04ee480b2dfa34791ceea838b9c005cb90854b938a27f7926a2462d6ad85b71f00ecc4097f08b3aec680" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x86.zip", - "hash": "bf6a1e691e79d96ecf51c234242f2abd70af6f63c94d1e2a1050d723e2302bd2f9636d9e4797422244deed7bfd0132af6ade1ac37308bc399a22af866498b601" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-rc.1.25451.107", - "version-display": "10.0.100-rc.1", - "runtime-version": "10.0.0-rc.1.25451.107", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2026 (v18.0 Preview 1)", - "vs-mac-support": "", - "csharp-version": "14.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-arm.tar.gz", - "hash": "4a7b82948634bf4981e47b292bfc4f9407925936ea736420a51accf0ecd05c6e1aaa1c7ff940ef5750b11cd7b902490b8a2f4da730ed729846270751f3ad0b56" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "71a9475cc1022058f3391eef850b518440d2e134de63b1cb8be048ab0dcdc1339288c5656e806b1097a603fd1c265d4e677359082611462482ee402faffac3d2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "61d72712e295250f3d2343afa97be7c272b7e29227dcfadbd06d9a47ec2b87158d3a2ec1f559e98997a4cf79a5410b85021a6690a8bde35067284926b2342eb0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "ff51d5eaa36e164980af47f99ee5f609b19fd7cf0caf7e167d40c6f30324072b21761528f266c6b921c07e7fac2240701e7d1b9af8ab548bcd05d37208aa5595" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "cc7eb9a34d5cea9757911591a455ff2090d321c3ff5e2a16c8119edfed13ce7eff1fff408134d8b5a62bffbb1b887ea6ccb60a74977a5ce77a299735f09e028b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-linux-x64.tar.gz", - "hash": "bb34b93d5ae23101e6774800d61243c236ad01f27b22a1670d987c1068ce075601b4dfd521320a725a654b655ffd912878b2fc843617a0b38c5a61f30a4cd29f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-arm64.pkg", - "hash": "ad94ab7ddeafba6a19cb71d7e4af8f5937cea8d50a15e1fa20751b41ec82cf140b40fded39dbd7d4d50f89ee174ac034a6ae55313aeeb67b453a53dc66cbee5f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "43c532ee0aa03f0245ef05578789c04822ea69c38e852f57bb0a1b4b34750f6d0f8c77a085c4eb0d613018f83674afb9096e99fce668a8763098abe821b9b7e0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-x64.pkg", - "hash": "de469378e1f613e867ab34dc7ae69a3c7f39a1fe70537650e3b0a9010c7cecb9e0c3c757c2bb1ea2c96a189014910b354c881b31d91eb876c502e57c5083b7d0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-osx-x64.tar.gz", - "hash": "9370c3bf82498d73c173814237ece108c20758e84293e76532837d877be7ebe9aa8a72ffee8b371bbc0aceaa24110d3778715322778a42159bd32910da9f0768" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-arm64.exe", - "hash": "d189e87cfdd5311f7e9e663e83a98995f90a420aed476967dd6e5f1a06625f8c517df155df97a90e5bdae53e2f3cd3be9f1dbc139b5a3b40bfbb2fecb590dc58" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-arm64.zip", - "hash": "26b1251b0e7a3ff461ed99a59ecdc43cd9ba547bd34cd84d5e77816a3ee19020671a1c314d30d1162d4c844f5413fcd36bceed32c381c5f99cc31c1b566f5e85" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x64.exe", - "hash": "92926100cd94d7e3e936c9f433609707c0563dc12cdb591a2cdd92f6a332e92b312cb4ca1174956e16d68f6a42521c30214f878e492990ef3a98db08c03dc75a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x64.zip", - "hash": "030194995e98e1c0f22b77c2d42ded91503fb989db789ed56d3cf9bc08473a0450c79c086c65fc456ae906e1aff90d1b93785d1d69b1465b20721833438062a5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x86.exe", - "hash": "f1ee78cbbbd49e5a801fe950a5a3e2b4be6323e79f5a04ee480b2dfa34791ceea838b9c005cb90854b938a27f7926a2462d6ad85b71f00ecc4097f08b3aec680" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-rc.1.25451.107/dotnet-sdk-10.0.100-rc.1.25451.107-win-x86.zip", - "hash": "bf6a1e691e79d96ecf51c234242f2abd70af6f63c94d1e2a1050d723e2302bd2f9636d9e4797422244deed7bfd0132af6ade1ac37308bc399a22af866498b601" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-rc.1.25451.107", - "version-display": "10.0.0-rc.1", - "version-aspnetcoremodule": [], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-arm.tar.gz", - "hash": "81058a18662967e825afdb3224103fdb111ce1c0fc3030857c62cc4ad1c7016f49747d733d758ce1eca80172de266c81126af8981ebe1c0d5df7264664f9b67a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "bd86bac48405084fecb610260e60a1f645de455dfaf208caec9771af160fd1d7bdc99a4a1f88169c1cef7595536d55dc571472ca7a15928271d40ae45fdedefa" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "0068163e30747a33f91152ed862f28912ff803daf12bd915a52feb2ffd06a8b153c0c89d9db965674a11ffd72df2b13cba29124c2a9790bde38d60de971acd7a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "d30e26528ca93f3527f3535db83e1e19acf12d78708f4b22f5ce297534b47d8307a9e346a5882aaf159fa73b804cdf71f5c59e2ed3948cabaed5c737910afb35" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "86cfff7410151dc88427d0b9c795194e79d813961af92a02604dd47a73c87a62ccb6cbdfd66efcdb8a1096ee7d1538c535f8016d767a19bcf78ccdbabecf17e0" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-linux-x64.tar.gz", - "hash": "d2219850cab73cebe3625a3e5321c67e2921d3bfefb6c238044a21d8a95ca07ca731507ba7c027a8b03fe8eeba7f23d8d884d34f02437d6a5830423484053d70" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "e1eacf318f4314507cb979fb8f0ee574ad450ae98f6be2bc0b35dc4adf8478aab4becd6af7c0d2ac5682ba7767a1190a4fb5fc9b37b66b5ad362606dd981a4d6" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-osx-x64.tar.gz", - "hash": "5d6493cb1f780c205bd218c9990ee9e8abc44bc81d868d196046d68ff30df0b70725effaee2ee37b3e82ae75bb0d1a14b56c0a39642b7ae6d0a752c6bc9ea98b" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-arm64.exe", - "hash": "471b26191020d874c475ec86f1dcc3008c1e82827801d918a8650d1728a269354cb22a94cf2997b8c7b27c8101a3b8b4cb4229f45efc2dc094165babb3d96f12" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "f23f71213c015120b6e970f29ea73df8a6299a9c7010404f8303304ae6070b7b7aa92bc742e6c588c71bfed0b44ebed7aff9f9e7e8ddc81ea3b5e1338a1110cf" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-x64.exe", - "hash": "2f48085c1a06abf8878a85f9703d0bbb18eec7e77f988781f6a37588a985c098ae7b64fc35adb39f97cf8d7fc27f4086449bc3b98a3840dd1e20dfacf43ffbaa" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "c287391e51df115d8712edc0935d98c2403db5c9d4b8168c6a55e3662ae6a1f108244ce5aad25a6c68be0fea41c7c89c55b50cf427d8b71a55cf5d068f081107" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-x86.exe", - "hash": "99ac0f34bd21def4ce984748163aca4422a7b635b2d8247aa414031c3f9dd92b675e12fc46ac20ffaf1ffda5fe679a775c104c8d2deaf7e8c994a38539604f3c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "960e7bd85ad6c5e5438d7f0ace3920c724c9286c13cc05359f2b4c73deabf9b7aace66352f47267cb275a55c02ea5994e167c21510169fd43773331323df1f92" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-arm.tar.gz", - "hash": "692371f269bfee2b4e89f57b66b8550245bee57188f913c5916ac1fbb90d18102ad8054027b6dd70e6798acee518f1295a2031f307f28fbcea8178f8768c7927" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "a6e564489bf1f8274cba4efb84e4fb109a0a4de8b335ec8df7c2c67650d47910f3109620a78d9ecf9155e64b8302d1b4c69d936ce42109505b16befbda9a0e12" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "c1654c7c37a207febe0cfc746805f5e64c559280a3a99fea1efc86dc3fa4668e1f6017172d4404fb5b3d65daaeb2bd4b67e4be792c30ca72046f816787306ec7" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "85a76445b9b9e0816a506b79960e392bcac399a55f6603684148168dc8c74e5a3beb0f65ce0ce74b5884e82847d267b36cd99366ac6919373c1915cf63eb6755" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "bd8681c332b5da73c6db6c85670c9474d6b727147589e65df158510cc84a732be7076bc7566e6ab8725c721541fd4088788a164cfa86187c2a057dc2858efcfc" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-linux-x64.tar.gz", - "hash": "e63a5e11ec9cdeb8dfcb41f1fcdfc0a0bb18cf54a99bc41ac4e5d5b9471284dcfeb737e29d7fbb5a5ee510e9a7f0a92e20f59e026c3e84f150ffe9cf117ba10c" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "e7e1cc55911989aef87e282dcc40e6eb5d71da5f55c65f3233181849f0730ea7c22918b6979a060393e7847c15dfccedf2c2aebdae4db1dde5e53cb273c8deef" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-osx-x64.tar.gz", - "hash": "7940dc6f7e156d711d03428574b5ab1fe9ed2dac501333f5e1cdfed4fcfad60619d988081326973df4e126281614cdb4dfc379f000de136f99a7916720df1290" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "ab7b4409316882059bab3af5d067401d6ae5a8ac35bbeb94bb38864ad445007d326eeee789e765fec893ac8fd13f3ab25e034671f3363808b0ab7acb19e9e035" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "545857d06330f9bff705c319f58b37c6e1f97093bb3f2aaea9481abaf9f7a4cb589785d4b5183ec921a925eb7f879892982cce04702e90f984f95b5160cc549f" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-runtime-composite-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "b1afc8d683a18593ed40b5e95c113ab525c52cb025c794e75941332ec3862049792055c43d83a6be7ea5c8d5cce2e8a54075a520a33cf818363cb87e3adb29c7" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-arm.tar.gz", - "hash": "0a4e25d1eac83a6eb0e4b0ae786b18ab4718f44ac4b06a5ae1258aabf4f9796aba4e67ab34dc773899380c6885c4a3d28a4485e5c2cfaebc21b9fe8f6fba2b98" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-arm64.tar.gz", - "hash": "e29cd3ee12bce41f56da92104cbd1353004f3b78b18160601a62a11451d432863646eae783dd724a02306268e11f96b763ebceb9b7c2ad13fb74d57ecdb3e08b" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-musl-arm.tar.gz", - "hash": "a4ce92a17dca4f82ab0ec24bc78ce8e5ccb627548538f9f80218679114be646ddbf94e2b259f47be41f1da4d23224492a7abe3cadd947836a149d8e63807f084" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-musl-arm64.tar.gz", - "hash": "3689b89a725d2649a067b0fe1681846d4f6a3d388215ee8aaa2c298631cdc09d890d50f6329ae06c1ca0b3949ccbd849323a9e9aac60ea4d1b8eb5a024bf28e3" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-musl-x64.tar.gz", - "hash": "5f79a0a2774a22e56eea42b40fac4dbd6090e46b897ce7160b776bee26b5d4543d0ac63f3e9d2b49df655923a1b83e0143fe27679179042dc8d2661bc0955b39" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-linux-x64.tar.gz", - "hash": "f518bc367abcaf11d731405b7daed7d2acf2b98743fd9eb4123dea98d9e2b2e05a04e173a726d1c31da30bbeba015382ccfaf4bf11b601fbe9b93e9cf068fb67" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-osx-arm64.tar.gz", - "hash": "3fd850e3813c3306eb85a3f54d1336c65bf4857bdbfe2e3eda2a82205d0f48819f5b8195dc1f801a730aa4f99e8817e6b33e2c82f9c6dd002be4af88e3f41984" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-osx-x64.tar.gz", - "hash": "f81020cda4ea3c7448aa2b57bfdda83ef15fb1fac11e4dd1d71d80f752576ed4b1e0601e295dbc4dd1eca927a3f3b5e2fd04a35815e858405cf69d3bd1579419" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "6bf4b5a5c960f8bb07dce881336c726e48719b3b820a19a5255e044fd29bfe42de3ccfd385866a740b4c09f7a82f70a605f754d8219288662db7bc537920ddad" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "642d925e8c392f5eb53fb90047280f7fb54f218eb3c8a3e5423578dacaf253d8e7b2263d0b48105dfcfb6b30b9163d7dd70bc09695d3a554449d484c52e0e2f7" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/aspnetcore-targeting-pack-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "9284bb8e71db42b5d8407621166b8a6073e2a0768e40bb88b18a3353ee58d74aa2fcba6a65a25e54e52f31262e057e5ab9535806be938a9185fa656ff6e009d9" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-rc.1.25451.107/dotnet-hosting-10.0.0-rc.1.25451.107-win.exe", - "hash": "6f2b4fb2af8604773d67fd27612c1dc9a24ec86efeb614b18e5f2805c3734284de93dd989ba71fbb07ad3b4cfe48bd8e29091147563ce62ba8f36d2780e36a5e", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-rc.1.25451.107", - "version-display": "10.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-arm64.exe", - "hash": "eb863f991ff329540f5be0d5e93b6616ac11d2cd5ff7feb9c5912f022f27c169ae8e6622d6212260c597981dc8ee03c9ea77aefe87c9809a665c5e9fdb68b376" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-arm64.zip", - "hash": "c5f92d39561d6d9f79d1773f98f59a6283b8d8258a69aff46ded7a3821d82e6cb4788f11a1b9283bb12492b77f368a490e8c6e01a12b4ca4c5f979aa98ba2756" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-x64.exe", - "hash": "45116876b4d6f1fcbe9cefb206c9e7ce992a3d440a76aebfee5238490db9804441aabecc518bf5b9e1e12606214dae7c63fd53269244d70f63c1f4859866c6c2" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-x64.zip", - "hash": "968fd52281e8bb27824d3751ce63967a55d72c10e14ef072293248de61b6d4d62d9c4f07e34d7439fc0f3ff19fa6209b880131d1926c071a9ccd9740ba1f7905" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-x86.exe", - "hash": "be88bfca63b99db01756f3b47c61f987b7a63fd68404e8afc48183ad5ddf22a5a08189a082a23cdeded5a2711086526c3b92f5880c53cb4b9f790d8eb36eb9e7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-rc.1.25451.107/windowsdesktop-runtime-10.0.0-rc.1.25451.107-win-x86.zip", - "hash": "3308524e23160380ae22e56e312d579971143c4726068ebdb850ddb57f6f16e43adaa51f34dcfffadb397f86bc21407d71583c75b7f406c9aad57b637c6e4bf9" - } - ] - } - }, - { - "release-date": "2025-08-12", - "release-version": "10.0.0-preview.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview7/10.0.0-preview.7.md", - "runtime": { - "version": "10.0.0-preview.7.25380.108", - "version-display": "10.0.0-preview.7", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-arm.tar.gz", - "hash": "54b4c6a175b6165351216afb9aa1416e911549cd9bf6b72a2714321deb139453a838b57f2b567c93e2471a449882ad1bc0db40d273537675e58d4b3431bdfc12" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "3fb619a47a8f9595d7210de60e159da03f732fa2200f5aa9a0edb9ae269e412c61a04016d20f8fb43f6fe4c29305566f15202e59c4322667b7f417cb4f389c31" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-bionic-arm64.tar.gz", - "hash": "7183951a0c82804a057acd5cbbed199d3065f8ec02888de04dd6bcda43656e05740735acbb3b388162723e24b2e0d4c39cd74957b8a20f8ff4e19447cdd0f952" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-bionic-x64.tar.gz", - "hash": "183d68c3f6512f2ab39830dc7ae95600ce8ed85ef6e6037af0f32d502e70d82d7f25de46835217007a5540d965b9bbfa782d8cc6c611a1065d99613347310dc0" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "56fe7eab141c6e1c550ecd3e46cf9e6f0e5e554ebc3aa749cd4ef1154eea19cfef276f25afea79435fc210310df47505cb920091b7f7b6f8084ad9a27d26f588" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "185dd3b0252e003a0ae9491b03a4bbe96ba3b55c22e4e32b5fc71c4befbb3985fc599d272837c4ef19420d8c267a92b927cfabfa32eb99f010df5a950d669437" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "bb34f05b8ae4cd853019994776912b6bb2495f2daa0b4b223cc3a9be69177a1a9828526d720c62a3210465432d2118b7d1656781ec6ca611aa7c37858837c6d9" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-linux-x64.tar.gz", - "hash": "dda8eeb6888b741497739e4c594052226388767059d122b5f741154453768d7f061068e298933fabd160a22840f2eff58be2282e73793d353da934b0b0f0d98d" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "eb40989973ace2a81466b4318f0a2df238dd51d6e529d4821cc7114ffb0bde94aba30b99d76f1f5cfdedb7b196e79091e5d62b95411fb9b7a9ff8b14cc2edc79" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-osx-x64.tar.gz", - "hash": "1cbf0d5a38a8c6ab51728ed42af0eed6f3df33063b7934f518d19b9c5dbdb53265d6e0e1325957e50fe1b5cbc6862982046cc2cbb47498607054ad4caf062c3d" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "d69896cb005f8d17e830c81af19ab506934b9f9122005db25bf7bba8008398c6229c3ffc9d813c58c5dccfe4c30bd2a9a5fb40eaafe3bd02ab9f804fff5b5ed8" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "c28b16a68f6af4ba65f87b19f7d6985aa67d7f64c45040ff70ee642cd6d0acda9d3161e1db6dad44f3128fde11aee08507b9d81d15b5a8edff89228a57c97cfe" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-apphost-pack-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "7e6453ff6e53551ed1a3a7cab2b5641ac9399302a71b69e696d6ecbc2ae1656179a079f4359390044f3905491c33202dd65eac1e2f1fbee756e66647c30148ce" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-arm.tar.gz", - "hash": "a32691868bc61531a32fa3bbf11341646ac51416ac52f680093c577d33b638306a26a0a3279a686a86543e0f2fdcca0e7a07f360817952945dc9b46de29c9709" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "b5301eaae11409bdbf31983bc69937f70dd17b355ef380f4cab317e921e5d66162642cd57d19a14fbba0efc09a76335c6e5f2ee998a60c4ac762cb17251d3840" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-bionic-arm64.tar.gz", - "hash": "bab9c7b22a41263d76f6c002555e3aa3a3d22476b78145d186823600e14d1e77d1899797b9d4261e29005cf207ed9e5a9d12358beeb14fca2b9d524c2707fb24" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-bionic-x64.tar.gz", - "hash": "d177d37d0e21f9b7e190ceaab26459f4c4f44e7c2eb496cc5af91bfe3633502d89e47c2e6262ab0a61a4219c4d83d690371964b50bbc4dc9796a2e37833c2007" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "6820978d7c737a9ffb3e3f481ac0c3026dc546c1f427396a8309027538b086ef901071e22a2089b778af5e51bc689a4414202cefd96091cd33015b50f7e1ad1c" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "c4902564728b931d23207a231cd4946422afaad1508e918c2127dc8236dcff2a95357410e2f0bad5b2d8719c6414c2092d09380c3ae70151b5920a32bb3387cf" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "c027d4879ce290a13835a256b58adaaaeda176f09882c7a3e36fb0e2293b428eff53e621a478fec45d928f178bdd52e7f4a2b4de9e02d20494c4b9925ccb6406" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-linux-x64.tar.gz", - "hash": "127487209cb3c4a394847cced5a15db8c5b66c93866e88b4a70789ea2c90b41e2993e00d9192d4ba988f33ddbc89a5ca2fe4f19a611d7ed8ad8c3e0a4692c501" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-osx-arm64.pkg", - "hash": "9bbadf6c5239d82b80326cd09abf90602bb7981018ea210be147937a440838360fcf82d9e69a010c9101ebbfc691f48931c34bc789f3ee77fbd40414deca3a21" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "ef607e73cd97ada3cda31a0cbea556cd60409a2612a94127271b9bf925e12df84cf7b326b0b5eddecd3bace37fd6fa7010d487cddc5c2324745ded96f8bca600" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-osx-x64.pkg", - "hash": "06d6840d8a0a7db9d4dbb74fc6044d053d9f3795e707417481b3179101cd4279028a89704b467002e0983a1af1bd06ce477233c583de35b4ca5bb540154499d0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-osx-x64.tar.gz", - "hash": "e24067fdd47c6ff8d308d3673702ba143fdadd50b4a5171af2aab7e80633eee19e66a0b6940bea4aae988a4d391155a35ba78e57760cdddda5af5ebd335b3d10" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-arm64.exe", - "hash": "a6943907fbb8ae9c710a0a9d374894d116c0fc6757f2a7069850a32bc52c92851403502e05e9097a075815bcb6dd1b12c8c951d9a03be1ee92560512de7b21aa" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "77f346452d57a0b6ca016effdea2e3918244bcb22f5a8e4d996c558964613d4047a7a6c2d7b49cfd4f595e1b010ba240a75d4d6bf1cfb830948fa9bafd0e6afc" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-x64.exe", - "hash": "eb9bd5f62fa364a81008e192fcac50e32773e31b43e6f00395fd26d6fa01805a776c2168274b1e61e86e6ebc52116b5bd0286ec63127583b0298886c5b13fcfa" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "6cc336587bcf32e3cdfe3cdaf3505575508fe753c5e263dbd95c7bfb6f8e0e30c3e7ca4fded20ddda24805bd8d1204e04b2b8fb78bf1e94c4e58d04f61f4c305" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-x86.exe", - "hash": "a1f2cd7de077bebd7692f413b45cb06d194606da22d87124894973ee5bdd780d9d4d8f87fcc07b3ffdf8e9900025544ab5c7eb89c1635cb98eb4d04ddd7529cb" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.7.25380.108/dotnet-runtime-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "9362a5f247f342582da837fde1a3fe227ab9b50c741502fe45ad2070827e90fbf88644294d99630c939d81b143bbca88c0ee961b924f829bf20feaa0d47fe7ef" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.7.25380.108", - "version-display": "10.0.100-preview.7", - "runtime-version": "10.0.0-preview.7.25380.108", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-arm.tar.gz", - "hash": "9279bfc306cf53fdc02673c68ebc06818b26fb05ee904ff315e8ff528a8d58b5342a86642233a4a67222f507b60110b8218492c7b97971bee78fb10a15f8aee8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "a81889cf42cecf616a7685cab17508694cee83e76a9619c64e89afaff4d382668ea4c7edfdeb4453a0c13dfceeac866ea3d0fe05f3df124638a4ca58b4fda725" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "0fae7f41d67983923419632aa1cf895bd2bed286812dccac58b524ae0c6b801bb1855509d6df4bf847e4c40c79965df5cf606bc07f22578f49cc0a3eff57448d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "cc88dcc54d906dd212f4c383de07d34947cc4b6459240b5fc13a9e8b6e5d7d482bca67357178b14195057ef883c7e60e4ffd80aef484c98a973987fe4993c1a3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "85ca6e728465581971af358bedd2640c00c9d75c49cac1fa9b3de996b40a13e95f35b7573defaefebdfc674c478e8b579f81a1030be3f160b6720b31fdfd68a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-x64.tar.gz", - "hash": "28d03c2da411e8161bfa37148f35ff622eaa2341adcd729a7b523f74aa21e8f7f65019da10d286d67858d19ff60082380b87436df9bcce27147b4fdb21286fb2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-arm64.pkg", - "hash": "8b2582b14502670403c56a4aea6362422c627ab26249f5df99c486ff6e9735a37056685b2cd9a01f3670c790cbea2975c1966df529a67d7278a078dde222ed9b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "788fdeed5df50049bcfe1370059cdfa743390a42d9bf52c745563eaac44bf54a954aaca356364bab6b5b108b1b6d9e0d6cf27c253d2e62b0644004669f8197c7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-x64.pkg", - "hash": "0700a05cbd7da683c02a9438d6cd11326c6f32e88fce49196641ad84381d7c675065477b26c409b20be0860e2429252135642587021e6fcf636bfcfe4563ab65" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-x64.tar.gz", - "hash": "fc3934725b09247325ee10e56819616722a630f4814bb93c43b60b2edbd32ee23cddeb0045d6400808b840d050ed0dc4b5bcf95a90de1b932936b62356e1ea55" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-arm64.exe", - "hash": "a019d16df4404f33b200abd5c24cb2b5cc0a81174d795b6b64ceb165afe5fe2ef8b460267db42e12ed22486adec5294ba0c3915b37f721faa2f452cbdb605718" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-arm64.zip", - "hash": "7b4ecb1646191e335b3e8fed6a438aafd347896f537888af2038034e1d3c5d59aca9e84a7eea7ca62269560e6407757a5d16d6021b9f5026eb60e311ed7a793d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x64.exe", - "hash": "5101cb87b0acd2704badc044c3874be02b6338fc21de059c22c695491aa58b5e3e91bea9ba068dfd5c1ebe8523ec843d3fd991628dbafcaf7b3e36ab2b0bc9ae" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x64.zip", - "hash": "c97a06d6859a9abb054a846f3f9b7f4b366fce26d25f411c0f793ca4777bd8f641214aaafb9a84f278b6d78f362e34e4167be460968145f4d2a764de777afdcc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x86.exe", - "hash": "c9d6bd67b761fc582ceb28aa5bf87519f226f249366c5043c554aae57cda12c805b4c099c0e66ea9dace3df0244f4949e49112deebb17a8562ade07fd5dc385d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x86.zip", - "hash": "e4e95b50ef7f86542f4af21447b2f6cab73c9479d532fe225cd80b53b14382b21dc6dd8da1cc7a2ec74b79eca9e049279708750880cb3bee9b616a97bb8294aa" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.7.25380.108", - "version-display": "10.0.100-preview.7", - "runtime-version": "10.0.0-preview.7.25380.108", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-arm.tar.gz", - "hash": "9279bfc306cf53fdc02673c68ebc06818b26fb05ee904ff315e8ff528a8d58b5342a86642233a4a67222f507b60110b8218492c7b97971bee78fb10a15f8aee8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "a81889cf42cecf616a7685cab17508694cee83e76a9619c64e89afaff4d382668ea4c7edfdeb4453a0c13dfceeac866ea3d0fe05f3df124638a4ca58b4fda725" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "0fae7f41d67983923419632aa1cf895bd2bed286812dccac58b524ae0c6b801bb1855509d6df4bf847e4c40c79965df5cf606bc07f22578f49cc0a3eff57448d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "cc88dcc54d906dd212f4c383de07d34947cc4b6459240b5fc13a9e8b6e5d7d482bca67357178b14195057ef883c7e60e4ffd80aef484c98a973987fe4993c1a3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "85ca6e728465581971af358bedd2640c00c9d75c49cac1fa9b3de996b40a13e95f35b7573defaefebdfc674c478e8b579f81a1030be3f160b6720b31fdfd68a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-linux-x64.tar.gz", - "hash": "28d03c2da411e8161bfa37148f35ff622eaa2341adcd729a7b523f74aa21e8f7f65019da10d286d67858d19ff60082380b87436df9bcce27147b4fdb21286fb2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-arm64.pkg", - "hash": "8b2582b14502670403c56a4aea6362422c627ab26249f5df99c486ff6e9735a37056685b2cd9a01f3670c790cbea2975c1966df529a67d7278a078dde222ed9b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "788fdeed5df50049bcfe1370059cdfa743390a42d9bf52c745563eaac44bf54a954aaca356364bab6b5b108b1b6d9e0d6cf27c253d2e62b0644004669f8197c7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-x64.pkg", - "hash": "0700a05cbd7da683c02a9438d6cd11326c6f32e88fce49196641ad84381d7c675065477b26c409b20be0860e2429252135642587021e6fcf636bfcfe4563ab65" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-osx-x64.tar.gz", - "hash": "fc3934725b09247325ee10e56819616722a630f4814bb93c43b60b2edbd32ee23cddeb0045d6400808b840d050ed0dc4b5bcf95a90de1b932936b62356e1ea55" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-arm64.exe", - "hash": "a019d16df4404f33b200abd5c24cb2b5cc0a81174d795b6b64ceb165afe5fe2ef8b460267db42e12ed22486adec5294ba0c3915b37f721faa2f452cbdb605718" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-arm64.zip", - "hash": "7b4ecb1646191e335b3e8fed6a438aafd347896f537888af2038034e1d3c5d59aca9e84a7eea7ca62269560e6407757a5d16d6021b9f5026eb60e311ed7a793d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x64.exe", - "hash": "5101cb87b0acd2704badc044c3874be02b6338fc21de059c22c695491aa58b5e3e91bea9ba068dfd5c1ebe8523ec843d3fd991628dbafcaf7b3e36ab2b0bc9ae" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x64.zip", - "hash": "c97a06d6859a9abb054a846f3f9b7f4b366fce26d25f411c0f793ca4777bd8f641214aaafb9a84f278b6d78f362e34e4167be460968145f4d2a764de777afdcc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x86.exe", - "hash": "c9d6bd67b761fc582ceb28aa5bf87519f226f249366c5043c554aae57cda12c805b4c099c0e66ea9dace3df0244f4949e49112deebb17a8562ade07fd5dc385d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.7.25380.108/dotnet-sdk-10.0.100-preview.7.25380.108-win-x86.zip", - "hash": "e4e95b50ef7f86542f4af21447b2f6cab73c9479d532fe225cd80b53b14382b21dc6dd8da1cc7a2ec74b79eca9e049279708750880cb3bee9b616a97bb8294aa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.7.25380.108", - "version-display": "10.0.0-preview.7", - "version-aspnetcoremodule": [], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-arm.tar.gz", - "hash": "957c236b2ded4ac9367e97ab42cc63a36f0f7b2758050039e7640dfda3824e5a65ebf2d30762fc76222a81d194a49e7ddeb899714a37bc28db6708d8d5b182ed" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "81358ed46adffd1a4e2e095e3d23d67d1d289a6c4c50ab20e1e71161b2823c8c44dd5a6c241ac9b3fcd4a2af518dbffbccdb7b3acd07a42af9ff24c5fd62c6a3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "b89d1b9ca5a9872cf367774a2ca5152a42ed86decc18c593b104883463ce5cfaca6a69f917449a02b4d25ea4158f822a36ac0d655c538c184e47ad751186ecdb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "7006341c95a51910a6ee02d581e9a41d76464a7efbed0ad779d0e64fc0d77c42bbd233537f57d76f6f0fdb387f6e25592ba53362670a5e6efed61a374e421cec" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "c117f44821cd6c55a76bb9ebfc7465606d38ac89c810ee224b2b3a0ff4f5abf2dddbbb1956839e672aeba4f951df0b5ac7f1935d2a90b6d4dcddc11ea7c33b51" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-linux-x64.tar.gz", - "hash": "f689f386f7fa56b9b53bd7d510abecf2b9c22358fb29367846c23fbba7b0a61a47d86dbceef96b73a728af076e55c346838497402e0cd80b8695d9dc1ea3c2b9" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "0f98b27b813a7ad2eb5a408e7bdb1fffdedf85e011b04985e90095de2916daa4c34214ac3cf9a066f49b3e7ee09d56d73f9e9a1858c71eff8900cc4145fd3255" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-osx-x64.tar.gz", - "hash": "1502e2a5a4d86a1430840d931a49d15ffd3b64465e57d21d714448b71969cfbce65382ef828260f1696dd46c409f3c03f6b8ae7a72e51567b444ca10ba8adea0" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-arm64.exe", - "hash": "ff0754f666261f9990ea7cabef99982f6510a2aa49a0ec349315cd456961b5d77a4ed38bea5068a5040898f2520f0a52dce1c4c6049874a3f2efbb4f5c862f79" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "4591c6ae7d1f9a98b83cbf9be2dadc82bd26551c536da559f14dfcdce610884cf2a0e5bf209bfafab98fce545302e0497f92cc8b6492bf1182aa771dd977d40f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-x64.exe", - "hash": "a6c0f170f649eca7f3bb87c9206a626fe88e2b4433b48f8324fbdd5e488f30f7f6e4511baf9e68a4aad7bd8bf400a11fc4b621ba44c767e1d145dffb4bf40bc0" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "65ff03441f22093aef7f6656a921be15b3033b0275876093dc83c7ab531b18b6253599850f9d1a072c5b0e18efad8f9cb12b6ab9090e584fe2b0d2e4c0dcc687" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-x86.exe", - "hash": "747475e25487900b801c69befd36db795011c7650787f2208f6d4d5fe08de934dace9fca7c757b59200b0fca5b47f5788a916928e743fb27682c5a1326b3a51f" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "8f17caecbdc2998e82d6139c53d7ed704edf1c3a7760723bece3e7e1a0bd83a557867dd6f2d64fa16ac1762eb869e2f9d5f6ba026cf2ee25ef179b8fb15786c0" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-arm.tar.gz", - "hash": "91f6f9b4aaf684b0f77d5f6fae0d8b1f0c58050d93acc17a850679ffe1b37cbf759397d9ea85e582678844dcde23d8eae7b749c2048ac97695861180c58e30d8" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "becb23fb61e649700dfb904d888ce059075cb209911d99fedc62ed2c4c385c8c923737e9a67413b9f18e78959c23a423663808626a0388ac94c937b5f2dff95d" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "f60b45eeddd3d56027fc0a80827609d9c629399fe98e80202f4c516a993496f97bd437b76bd035ac9a54d46c2de59cca29da0d53d25ff8e039f81740edea0ad0" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "e9bdf9a49812016deed77ca260b9885382ed5f316e39d0fb436822f4acb3e03a96522f2cb5802de1f005fd2ffb6e4fbefc8e648567d854a4de35faa66644e546" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "a0308e347adc280cf4fdba2c41479ff400a70aa97bbc51375ce94d4a3ff008fb59d9296447d0f8b10ec9bb63ab548daa5253f105c46819c72dcff42ebcbd7a05" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-linux-x64.tar.gz", - "hash": "8bf3330a819b7cffcbe4a50a01292b8aef27744053c582a3ce49e719f61b656631424e021eb4153213b083eeef119d35878fc5b3567837b9dbe8d3c3e096b7e7" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "e3d8eadc77b19b11ad2e73f70611c8fd3176e40d7a450eb24d3900b7c5534517ce02b90f1151dc39cbbf5443973e755cbcd7ec54a0085895edfd34cb7462c15b" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-osx-x64.tar.gz", - "hash": "c5f33a052cb5974d918325c59080e5ba83805b71fb14834fbaaac08bc4f5f0132f990c5e2d6138795626af03f654bfec9ea8bb6682c0284cbe13d282d7e8670b" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "0f97fcba1b776f40fbd5e143bd133525e72dd0681904caeeba787a84ce7ddd663772ddcc17ad9b18864594add81412c67aece328a32d08c4202f017cd1132e33" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "43600b61621fac1b28f71f2351dde3f8c4a21aef83780d68e48431a9f5fdb421e3aabd1e1daa2ef87f11c2948fb3e3dbfb089ce69392e610e2fb6a22ee6b4e92" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-runtime-composite-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "8a8c1d59b68b14c11951f6b13586cf45fa6b9fd710399ec4d60d9ab5199080b278a0bb753b4218612f9eec145ce457206ab3b3415d55e3e8684dfc114225d779" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-arm.tar.gz", - "hash": "7c6bc501bcabc772eabfc67657fe2d15f9e791bd0d35f4203c9ec33224f61542e507a760940d68780dcfa3812af6412f1c33c0078c41744c278412770e0b3885" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-arm64.tar.gz", - "hash": "3ce7319bddd29c12ac3873454aee6d7785b8745dd971541756f43a5a689c33b671563e8e3bef09b9a04a8ba29f710f08697c85546e20a65eea303f3fb1f67621" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-musl-arm.tar.gz", - "hash": "0b9eefed4c325c55864bdbc35dba99031c0afd760e993675b906f978d03f9ebfc04ef882aa75d2561f16838401f679247566b184c80a2ee9c52ac85ac38e7d37" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-musl-arm64.tar.gz", - "hash": "936ff1ea380acf08a082939ad1868d39de56de241f10eda333ac898c90da5ef1a2d00a4a0791a34968da5173ed418e433ed46181e7e75176f38e9d78e691098f" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-musl-x64.tar.gz", - "hash": "c45cd04247953debebbe05ee80be301e4f08cbcc9507f3dbbecc7ecf5dcfccfc41e4fd14f63370efca7b3c929386bbdb1950cea69e8058c46f2b1fecb7f14ce2" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-linux-x64.tar.gz", - "hash": "dc01594312f6af1c0fb3a5442f17d2360275eeb6e4bc4fff56fb045aae3c152c6cd0bbf586fd0f436a4696e4221155423df23d242088e91f8266e8107e08d5db" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-osx-arm64.tar.gz", - "hash": "e6236d0cd3d6d710f88bbf88922f10c8ac707dbcba5f9c30109ff747292ffb7462eeb40116dc34ff91f8472f0b3de8456b3c7fed00c638c6de8b6045e637df95" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-osx-x64.tar.gz", - "hash": "79945b4f07a337abc082fb0decf836d7cc89aa7f1cb45e356681d24891aeb33e5e1f2884c61645a8bbc76fa6fbfa351df5c6519ac5280bf97cf7cd38734cfcfa" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "e31a1bc8a4d503cbf8395d8eb16ef7b08532528562854167932c5ef20c79dc88e87c0e409c58395d2fec8c8f4b7f6ca463cfbd3e4d1f833711e557c359ef6325" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "216e89ff5fa4f6db8a0437711b74ff3241f622f904d2b230e959b0d999199d0d17e022dddfaae1fe89fb697534e781f9fda5862f90e93935311388698fc2f5b8" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/aspnetcore-targeting-pack-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "c0a1e208550444848746edab69119592f02a75473cbf0688f4385c41cb9003c7236ecc878fc873b121831e61d34daedeb3e8bb75fd32ce561649432ccff38d57" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.7.25380.108/dotnet-hosting-10.0.0-preview.7.25380.108-win.exe", - "hash": "af611b874dfee24d1ea3d3a017197142de2b1403d3c28977fd9e99070485fde1396346e1841f8a43fb6a3fde9b794960cd7bc587e5b7881b92a49f3555cead4a", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.7.25380.108", - "version-display": "10.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-arm64.exe", - "hash": "f51f2af41a5439881325c91c704a1168f362d9d9b941cd4b886f4c6fbe990475645e4cb35ca51aa3b5ddfb4d8b38f043438efdc729e7f7cc4c487acc6130df81" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-arm64.zip", - "hash": "221d531a3ec206890d53653e72fab90382bbe5e276011dc48c4df1d9305315e23e739eb6086dfe8635a70aca9348ee958b732d9f48534fdd9d115e31dc64b39e" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-x64.exe", - "hash": "04fa7bb4fcb12b2af615587d86dcc1ba63b4c34776d08d0d293ad1118d39a929b03a6d9d0aab1d9276c5a6af70528441cc89737d21c99a7302c15fa9a93bbbd7" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-x64.zip", - "hash": "7ce1cfbd1de6d0ea7c53ddf05dbdbe6ebdc14bd52929e05244539d5d62fcc80c079f5aae21e455581e1ed9ed8043645ab7c6cf944f69424c22cfa12ec722e2b6" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-x86.exe", - "hash": "6d0914c46d926427a191f1f597e07c91437dd6f87e2d8929bd6b06865e28dfc54a0e47fdfcd0e16d74b046208d453b8376f825f1557033b21c439b7c59ebd048" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.7.25380.108/windowsdesktop-runtime-10.0.0-preview.7.25380.108-win-x86.zip", - "hash": "d09b3c3067a3bf018c037df7c45fc72ed14f270b66d515b165902c21c36f2e4e109a69fdc33a108aa5da3dcf74736bd6a2c3535628d71d0c4428d4f32be92b5d" - } - ] - } - }, - { - "release-date": "2025-07-15", - "release-version": "10.0.0-preview.6", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview6/10.0.0-preview.6.md", - "runtime": { - "version": "10.0.0-preview.6.25358.103", - "version-display": "10.0.0-preview.6", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-arm.tar.gz", - "hash": "585c154aaac1ace4e219c9215cdb718889c099a38cb6201728e9687d69455c9b8cf37f8e3185eb0cd15882941231427e72ac114c6f357842a1e22d2ba20a3b4d" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "a2ae0d8197ad4fc163de4fb08a36573c30d8705a0bcdec3b1415600bfcd1acc33a6d68eaf2c0d973c49fdd54b00a83db8d29aab884bedcb3ed76ad136f628014" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-bionic-arm64.tar.gz", - "hash": "133d2f1b66a4718ff9c3fd0c4c4057f9f1871227ca8e58baac7db16fb23ba9538831ee9340bf586f2b02f1b81944d2037456c40775d20470aa2102dec72229d8" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-bionic-x64.tar.gz", - "hash": "2995b47505eab9f096d2cb9aa5206d32efbce9800f98459c32b2c7e04304f2486dd854b27e7aa6d9acfd99ab9a924882c6ad45f9142591e5781bcaed64a203a7" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "28918c347755f2134eff8258c81aab68b31b50258403e9b4de9526bc3018f5f6f3426edc7ff0d57505ec68ba5d5063b6305e20feb984e6154142640e41687ba5" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "f8059a20d357829034d76e590de828f77f6aa2cbc4e34f801fc7b1bf5b07354455510d7fbf764bffe488677de66c8a3262cd9ef1c5f7dfa47cb223bc6f0ebb36" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "75b28c2bed54aad80e438d213641f9ace3c3bbf3a38854bbc8c741fad1a1f47235a9abe270e098e2ec52e3e45ec44f1c6b54687afba3b68a58b37b98885c8f41" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-linux-x64.tar.gz", - "hash": "0a09c4876e9eb8d9c420b50e5e302f524444d2779ab1d9491d422cdb4978072b947bd5a42d3a1d8b59654f14e25d3faca7707c0052b66f05bf93e30103afb83c" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "869eef0c88092f05d2474fb0e8948cfcca8095113dda3cf96526e512ff000e20bb4ae612da59fcde189962b4f45d05e6a6c94747dad9a19698f42c075701c9a7" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-osx-x64.tar.gz", - "hash": "116d4a16b5ee05cac6de5e722221e9ac410de7c8fe67bace1658087753b29bfa806850a4fdbcea868ff795ac47e83e3b396874f2a1c2b0d81bc4e05745b07799" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "eec0524c8a2ab1be2be7d69a3b0e0a1f98482c22c9e4ec660f9b13f2634133b7d2679b0d3d28824bb16aef19047b7e73e9560504cda8895d0d9d378154af4453" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "401aa11ed41158f0f96a3b4a2ae87a590938cc09eb50d61fb4b5d64e6d68ab0f8bd8c8c36068e44a33806accc0761285df1a798b9202de24d5a44da57efe1a67" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-apphost-pack-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "fac7e239efbeca54a4fa2930a08444fcb6e9335b7fed152a4f9726f067d9edca1b66bd68866e3f3c0288215f5397d1ebdea6a9b63b582fc59f9472033e42d92f" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-arm.tar.gz", - "hash": "764167d3c6539e5dff9e3f1087ea40b37bab272f7e6c1de0c862d76a4d0c34452799b458e9fa70329ae28ec6d07d6b624b3f5bd0aa2812e6e7ec8f8f6af23b87" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "71bc9db7e507f3997526c4f3933914600f90f00031c617359f3b80b72b818a58dc804a5edb34c6b7cab1e16571e8555545950d1a0720bff5b31ac63744fdb4e3" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-bionic-arm64.tar.gz", - "hash": "0c80d273834c46467ee5dab34357646409200da6e28d95a2a3a5b2e5b75c21ba87dba9d8183dc89638594fe7fbb9edf2f597cf9b43f5f2e46eeba5054f7e21ba" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-bionic-x64.tar.gz", - "hash": "6d15c7109d2b758c7a035eb688f7494be8442a256b2fafb436536fa1253c98103c710c6bf27f22d0a11949933e60fd8ad5dbdb40a3bac890682bf9cb6acc00b7" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "5d717d86d0f956df2581302703d4d848dc814231e71293a090eaf56b18146084543a3d4670e4310eb90f392e182ad007c9cc7cc1f4514d0efa9df3b65d1083f1" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "e263fb33c241becbd8f2f7a63f9b5f4123c1a667c55447f03a249cff5491b38a6dfa6284511c0fc62745c69f302b4cad9c8088c270093582d7dbca7a2ec65d0a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "cdfdc4937a5b445e2b8ee92cda875979d2568948dd5fe7d01f84305b6321dca64d67ed61a98c1e71c6da1eed822f075d0bb0410551aecb0f8f3e1313843676a8" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-linux-x64.tar.gz", - "hash": "7feacaa8655e14521db6ba9a786072377f063864e418c5e4f5ea79923a29f4724ef6ed160745459ee028f19279afa1c0fede9ab693372208909eef8733ca0364" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-osx-arm64.pkg", - "hash": "be7ec9636516c06e79f6dc28aa9aef6d11db0366914e4ded984457ac7c96d8f37878b561fc7f541b85d1e397118ce11ff7c60ee1baf977a2de86d6f9982f42a6" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "cd7cc494aaed62cdabf1287a08cbc3a0f28f3112e896e037ed82d845d65387327e234525bf1c0449b03ef2185233d4562fb59fbfd19d5f28da3e0a6713745377" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-osx-x64.pkg", - "hash": "92fadd5217830fc2613057f634651d21ada3cd0bf46b3bd45b77756ecbaf87f0ad63aa3e48272e0e03db9a3cd78d80ad64cb7ff8932f3430972b4913b50c4186" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-osx-x64.tar.gz", - "hash": "966dc47b3aa1c7aa923b3548d887648823692b053f093e4f26b866bbf5809b1dd6ef38bd2c2e51a4e80f06c5dbe4aed0db5bae552ad9826462fac30ea68ae616" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-arm64.exe", - "hash": "b74971fcc40e00a356f125c8f10cfc2bc3718600de2b9e40e3fdd5f501e622fe5168b398ed200e76f162ad3d95a19957ddbdd737c31c61c2709c0997d39b0ae1" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "d85f4af276803be33bbb611819b1165cd782afa60589ff1809b8f41381aa994324ef999c8e369d2ed0a5954560a1a8c4dba31d64a482e1972767c5ee4ae9ffdf" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-x64.exe", - "hash": "582a2d876675f4e2c554de07455342e57980489a8508b62822bb8e935057cb98901a8f843f2790a65b573fd5a569b2a7e7103360765f06929f27229a60199e2a" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "691f89932e1204fb62978efb8b25599654e0a86b2b66dd617229a06207bb74ae1672e938cea6418391f9aa9f3f408735f8a8d86866c9822d3f6cd5616ad1f78a" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-x86.exe", - "hash": "0c6c85c24ce88805d80289b3a3d03cf43f068d9fb276cf8a2573f08d2c2dfccc4f07695d9c19b9a2787e53a5fdf9c80711e736c84fea7f3d6b4422a06351919d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.6.25358.103/dotnet-runtime-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "5d0d423cc356990aff4b2ca926bc9279a9497cfdf38d80ee00898d6e397b09bfe8c858e54f4001862ef149af262bd39cff4e473761dc1bea87c861ec21937517" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.6.25358.103", - "version-display": "10.0.100-preview.6", - "runtime-version": "10.0.0-preview.6.25358.103", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-arm.tar.gz", - "hash": "9588e34dc8b1044bdd8e9cea1fd0d6b567fedf0ddbaf4897b153ab9b3e93ac4957457810fa9ecd7da4d5a36d8a05bc48b670afd0f52d4d56d140f742a043820a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "7301643ea2fbdb2582526c6d4699d3cb657f6c90e3ce7f2746ad51c320a8483c280d3a15fc2e072605b2bdfe76369063a384ff61d79ff9644183e4b21c1ba774" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "f44fc0920da6a86974ee52daece0cffe8c891193ce9a9d686fd93e817881ec248b913e71745ee576a65bf4fdc16506718af90444cee0f7014fb8967a93a6ccc8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "c4afefa798f970dde3a65923c02648b67f3b554e51a7de13b2d29246843712d08645c8fc223a408bd37e0dfd7bf87580d0468cfa740095ec5b35b927406f8b9f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "2c28fad74999a319489f3d3c313e357923fe51a4021bed35399780f2daea959cde84d91835d1e310c93bd4b7cb695fb14f6f6501ad0b1661742ffc5801536269" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-x64.tar.gz", - "hash": "662bd61a77275a893186aed5b0a6e66a613d33657f71026a27f765f1196b78e3f3a2ada58e1b37e0faeac39a8377b3e9b3bcea2b72c5b06dd5d9848ad9873f3f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-arm64.pkg", - "hash": "2efa514a050bbb510ea9d90285150be21603050f47ffcf003d3159a1b9b511ec68a9625ae275aaa70b28fa765ce6b2ab1579e0f8884d73243b7fbdf8ac06632a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "c4320612a514117552a1cb13bba44173bd8bdb9506c13b4b9a67ae9ab0b38aad7ecd4e5dd1d4c3230ba49fb96ecd14b2af3416929e7651c5c990cbf76deafb9a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-x64.pkg", - "hash": "35fbe5c4f4f4174ed4787c75ed2cdee60547738f943b7271ea39f72732e88870c95425cb9db952178ffdff0bf4564d83a6eae246d8e933659e723e1b45f1b233" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-x64.tar.gz", - "hash": "ad69643ab5b9034d0197170ec7e4eeb0d812cde5f028a1eaf17fb0f209ce2b251932b24128db0c55f057b3e9aff67d78bcb045980893f81d96950323611a6795" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-arm64.exe", - "hash": "b1bd9329345e026cd17c29c83858f6d1990d254957abfc8bdb9abb61e49e4c3bf1bb96a5ebb19d3f71372e768a4df6e65511b77dba8566adbabcb56c623375a0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-arm64.zip", - "hash": "9f823a3ad6c22b0d69c9473777bfcc47cad29e269cc29213730ac6d9bb6b24876686632fc2f838cfcd53f9b176d7b5b059cd506407ddb42b2c345c1c45b7207c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x64.exe", - "hash": "c22b1d70697c489b21a0edbe99862e46808f455e1032f8b1343d1469487db6c662ddd35daebf92801d274415f288b93eb28298fae169b30127a6518c40168405" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x64.zip", - "hash": "e84217e64382fb73c18c2159f0abdf6e389dbd9013f1191d771945d73fbc38bff95b00317a7c8de3946e9a9dc46daf134afcaf328362bec2e196ecefe6d9fd9d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x86.exe", - "hash": "a4646a5aeb99250cd2508318e4388c7402076623a7ce2f4c1dd5b011b43ff81ae347ad291c433eabc7b227a66677676fe8e224140dcbd33f6e17547dcd500d1c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x86.zip", - "hash": "bba2dd299e3b1ed02d407d61acf54751aef0975435b6be2062d0d45d25c839f5b08843db644f90c5a16cffd785c22f13da03e835d8caaf84fc31d8071313f88f" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.6.25358.103", - "version-display": "10.0.100-preview.6", - "runtime-version": "10.0.0-preview.6.25358.103", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-arm.tar.gz", - "hash": "9588e34dc8b1044bdd8e9cea1fd0d6b567fedf0ddbaf4897b153ab9b3e93ac4957457810fa9ecd7da4d5a36d8a05bc48b670afd0f52d4d56d140f742a043820a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "7301643ea2fbdb2582526c6d4699d3cb657f6c90e3ce7f2746ad51c320a8483c280d3a15fc2e072605b2bdfe76369063a384ff61d79ff9644183e4b21c1ba774" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "f44fc0920da6a86974ee52daece0cffe8c891193ce9a9d686fd93e817881ec248b913e71745ee576a65bf4fdc16506718af90444cee0f7014fb8967a93a6ccc8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "c4afefa798f970dde3a65923c02648b67f3b554e51a7de13b2d29246843712d08645c8fc223a408bd37e0dfd7bf87580d0468cfa740095ec5b35b927406f8b9f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "2c28fad74999a319489f3d3c313e357923fe51a4021bed35399780f2daea959cde84d91835d1e310c93bd4b7cb695fb14f6f6501ad0b1661742ffc5801536269" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-linux-x64.tar.gz", - "hash": "662bd61a77275a893186aed5b0a6e66a613d33657f71026a27f765f1196b78e3f3a2ada58e1b37e0faeac39a8377b3e9b3bcea2b72c5b06dd5d9848ad9873f3f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-arm64.pkg", - "hash": "2efa514a050bbb510ea9d90285150be21603050f47ffcf003d3159a1b9b511ec68a9625ae275aaa70b28fa765ce6b2ab1579e0f8884d73243b7fbdf8ac06632a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "c4320612a514117552a1cb13bba44173bd8bdb9506c13b4b9a67ae9ab0b38aad7ecd4e5dd1d4c3230ba49fb96ecd14b2af3416929e7651c5c990cbf76deafb9a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-x64.pkg", - "hash": "35fbe5c4f4f4174ed4787c75ed2cdee60547738f943b7271ea39f72732e88870c95425cb9db952178ffdff0bf4564d83a6eae246d8e933659e723e1b45f1b233" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-osx-x64.tar.gz", - "hash": "ad69643ab5b9034d0197170ec7e4eeb0d812cde5f028a1eaf17fb0f209ce2b251932b24128db0c55f057b3e9aff67d78bcb045980893f81d96950323611a6795" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-arm64.exe", - "hash": "b1bd9329345e026cd17c29c83858f6d1990d254957abfc8bdb9abb61e49e4c3bf1bb96a5ebb19d3f71372e768a4df6e65511b77dba8566adbabcb56c623375a0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-arm64.zip", - "hash": "9f823a3ad6c22b0d69c9473777bfcc47cad29e269cc29213730ac6d9bb6b24876686632fc2f838cfcd53f9b176d7b5b059cd506407ddb42b2c345c1c45b7207c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x64.exe", - "hash": "c22b1d70697c489b21a0edbe99862e46808f455e1032f8b1343d1469487db6c662ddd35daebf92801d274415f288b93eb28298fae169b30127a6518c40168405" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x64.zip", - "hash": "e84217e64382fb73c18c2159f0abdf6e389dbd9013f1191d771945d73fbc38bff95b00317a7c8de3946e9a9dc46daf134afcaf328362bec2e196ecefe6d9fd9d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x86.exe", - "hash": "a4646a5aeb99250cd2508318e4388c7402076623a7ce2f4c1dd5b011b43ff81ae347ad291c433eabc7b227a66677676fe8e224140dcbd33f6e17547dcd500d1c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.6.25358.103/dotnet-sdk-10.0.100-preview.6.25358.103-win-x86.zip", - "hash": "bba2dd299e3b1ed02d407d61acf54751aef0975435b6be2062d0d45d25c839f5b08843db644f90c5a16cffd785c22f13da03e835d8caaf84fc31d8071313f88f" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.6.25358.103", - "version-display": "10.0.0-preview.6", - "version-aspnetcoremodule": [], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-arm.tar.gz", - "hash": "fe6acfd9322bdbb3658b39e62060c5763ae23de792a430db47268cfbed60360264e7935002b1cedca8133288367795e59d3824a74de51f9964dc540a814d9189" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "88667d66d90aaba30649f84d10d057da7c0db479cdb36b76824dc8e0f02a44a6bf5d269d74daa0d6b78376f2dc66b60238558267555e2ced40cbd06aac745d6a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "1c0aeaf3006505c2bfb648f2562593f62bb7a55b0050b6cc81e70ae9cc1a35cadbbfd54611705a1b0bf8498aaa355d037847c9ea7a9ada3f5855688ba6a61349" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "087ed093eac5931dd88ce9c817543fac4a7fb00705ffe71eb7553afd0a15b507eb5a63b8e850e14fe488dedd7b39a0ac86499a154e684815a99c1223af5349d0" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "6d4d8993f0724a5c30cbb5c347da2fc6872ddc751dbc6ca4388e7fba60d516266193983a984ac6bfe879b448788f77bafb50b99967defba403f44ee3ff2731ed" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-linux-x64.tar.gz", - "hash": "15ccea434f5e33b4af872bda00d30d3fee4494113a1e5d7b1e8ce206ab0a2e09384fa5a223afdde4b94ea3b7e12b796c1a45138be833288bd68741ae843fb6c8" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "565587049866ef0e09211d122c950e3d87f3bc22ff740e4d550618d69a62763b8dd766c135c0bde4fc7cccbaa64f332142b490d0fd4294e4c58e2982078f7204" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-osx-x64.tar.gz", - "hash": "736b42aaaadb865448bccfdb38ed8a9660842ec98f4b84eb7b1abf13a8a68cfb166f1f1d1d9b7abe244e2800b40703d4b31a503bea36359739a041e332c6525d" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-arm64.exe", - "hash": "11afbfab6882b7299df1e9a54808663253ec9f653e24e893497f1484595dcf768ffc659e496635f4df2f393589b7880545d14dc733d374f0bcd2d9f44cee6204" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "270ccf17b9e5ebed9f6449cbe813465f58a9942735a7359a389c202e2693eee22dd19047ebdde0ed76ada1b17057b5d0f96b4f6e6642c0ffd66f66e59ca30ca2" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x64.exe", - "hash": "17ccc2dd5e869234bd80768225f879d2e5ce43855e6d9bfad2061906572e0afb6bccad48af43e32ec857989aca98b9859586f472e3d26130db4117a492f569c9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "9aea37c402bce6d068895e22cbfaa1e86aff48f77e47fa32fe3001d57764710578b0fc2eb141b614b54863148506fb7405a99310620b993cadf765798856ff29" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x86.exe", - "hash": "f889b8fa033034af08956e1b55befabac492d441682287703d83aa7c086f2c95d3e7a21f64e8d608b12364b68440d37d35ab1ad472e554de2b66736a74735d3d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "91cf8eb14e78500911d003e2e144c9f2c19dfea05f91ba34a796ad6f74546f314c21552bb79810d2a04a65fb0e8e23c4de69339bc1ba6eca9603a76566364fb5" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-arm.tar.gz", - "hash": "395af781d49511228feec273ea71085647737f9bf82cd84150f13a630a433cc8a58a1a7ca045e177af9493acbcca0b46f7a5fdcc855b0e2e50ec751603eedbce" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "33a642138a88f6119cd2e3fa428fca2240e792fb7bc96a9caae1693236c44a7255814d9684e62983ae24619b607057110e3abd39f52c7ccce00c03a54bcaac3b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "c9016dd417d69b54342fe2c762e887b27556d57281fd95ed20d294786fe57cbfa6c986236e7c18a5e5ad5ba2ce9d78e5fcddcb0973fbf70275fb6586fa1e6cff" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "364a58f1cc25bda7e7e8fcfb62478778884d44bcbcf4ce62d3188c6b48d4b2a89bc568e5185414e365ac45edf477ab7a8dd3fc63186dd99a73b770c765881ff4" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "fde4fdd204f98f8cf2e06af78f9611dde9f1c854b76d51d56a36bed40bd7a4f57bfdfa41e382f933ebc82855f5d6c07ea4e67df507c4953041f220dfd386d1e7" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-linux-x64.tar.gz", - "hash": "3a775f76723ab2222d86c08089828c4dbfdd39fe81312a632c63a855ee3746b6e295ef64d7e5695488056cc3de537af8f966aef3ce60f66bff2915306332925c" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "225a167a5305929da9589e44312ba9b7932b694fdbd9ac48d4566821a2f110b99eca05a78dbb0f7ef884b4bc67ec38690fc531e5d7fafaa073a34dcdceeccd47" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-osx-x64.tar.gz", - "hash": "0728fd7436b8853b1287041b8bc8975de069bc2efe58c166ffbfedac8dcdd2a5d8e9d29ca537c07835614bb74495e932513e55d8f97d68f5b7cb3f6319566216" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "536e65b97b080645dbaddad60c64cd2990d58ffd072228dd04505f59f25c9e2b11222cb6efb0e6aeac19b032b669ac698b38881d4d94e5c187a0fe4eb546bc02" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "78c87a5c2f9ced7634940a31184b87aa2992bba9f5d5852d5d3e0319585d9b618fa7049288e7d9f0af63d4fc9babb4944f8c2627aa9c467e621b14c791d52efd" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-runtime-composite-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "2815be27271624ab46c94f0b821085bd01c429718d2565e91a5434dfa1857e492d611013f5c571d83db37ece41d7a7d5f491e3859b7e041af379dedefc8a2596" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-arm.tar.gz", - "hash": "d86b9729f9f5bbcabccfdfd23667a463c4e7a1088404af3c783e7e7ccd8e5f09aa4ee6233d4116897ad470eb01b26f37ce71df36f597e13d5765e194313afbd5" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-arm64.tar.gz", - "hash": "68dd25119b2f2c1ec5e4ab39b444b5b79d248c7b3479b449ef36bba43b82a9a5857d5f2fbabe78edd0a7d04ac9bbe7c8f45e2693c5ce9afc6f1aefb06bc8a07f" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-musl-arm.tar.gz", - "hash": "3ecec156692fc7bc3da94d920896aa9626afa5474ce815fd87da5d8ac8f1bde406afcf2d6f4e87b90a6c07994edca75191c4b26726214b129d94938ad32880b2" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-musl-arm64.tar.gz", - "hash": "0085cbc9220800ead8363382fe3498de25715e49394fcc8362fa6bdc4b2ed17ba8857863e3c6656c8fb5e446317cc75419ff2cfc78fd15d8306c5ed8fa62fc31" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-musl-x64.tar.gz", - "hash": "e67e13733dbcd3b8506eb4fb539a76793178c263c7eaa170a1f6017cf6e01242b36ab98493879f88499ffc1a06662eac9474d229b465d0a3447faf5fdc17555b" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-linux-x64.tar.gz", - "hash": "a3b12278e1cdfde02f60b6612b26bd79dd4d18116a42a09f24fd8c4a436fc34f707f05e385bba9743e96dcd99662fbd79894c50965b31c5c7fd100e12fa6d18e" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-osx-arm64.tar.gz", - "hash": "5fa7827b3225fb814f886ce77887c8dc84ef61e698c15d15ade30064aa49071b46fef8a84f6ddc089d7a67aa725ffff76ebcf71f38071d644a351677f9808880" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-osx-x64.tar.gz", - "hash": "f8b63f014d54a4e499cadadb1b4526ab938b55a3031bf3ba3de4936dc87aa6cdb370b609890b66cef37ebbbaa4fe88aad75a3885d1094859af9b0e263231ee96" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "7e5ef0dd5ca6851fb412907b4613fe7886ee09dbc2b3bb27ca23d5130f971fcc776a55f2373dedbe5f29ebe04530f39389988f08d1f558addec90c87c775c489" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "c752b71785f177a817b346d6ba169994ac1de69fa7d9309f684218dc7d84f1866e46f4cd544f91b3e7a29e4784e67748dd286ef8500a8f43d539603683981703" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/aspnetcore-targeting-pack-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "1bff983ddc004e0b3bf710761365fa6b4505b15066fc38d5aae0c2adb0ad32efa8693b43f432fc83863dead471447a5df46fcf2d60821b32edf640b38325f683" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.6.25358.103/dotnet-hosting-10.0.0-preview.6.25358.103-win.exe", - "hash": "753ebe5c14f67f433128a64571c6c941aec7a0888f010a2a163797f2e4f9327f90a21f112afc51de1f819ae1ee434abd09a622d2ba51d690a41b178b59d36e1d", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.6.25358.103", - "version-display": "10.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-arm64.exe", - "hash": "b522cb2d917cf922b67c04da65fb6eb39afea6e1a423b4f02c2553563bd095bc48e4d36a5f587132e7db83ee3eb8b5329ca8a8c08bb8d5ed3e68f6c10ce03423" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-arm64.zip", - "hash": "2d56b2ded486cbcd17d9324cb2016158d4f959a5a0e74fdc4e248bcb41b0bc981a1001dd091c851836ef903ecf30cc4abf51f150cefc13a91134dbc2e63230ed" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x64.exe", - "hash": "4bd1e1f433e844bf8a986224c67c1f025bb215fce36a8105f89b89d4c16c757b0f1f4ff745db6952b4f0a011ebfdeff6b9dca7371fe01d21f62b7f12434200aa" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x64.zip", - "hash": "6db3ff230c718ae832edc231fad4e9ae234bf0fca4419820e2a901c76d26654a4fdaa5d81de53a9532d8d690bf1fa620856a1c03df4c525ed5ffa90aaf5eb726" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x86.exe", - "hash": "e9358de29a7006f925875ac243d7b486e482420c7c178a2c1bf7d6b13ac230d382097e48193709d96c5ea2dea5e3e139ae6a3863e3084a10681122dc880c3399" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.6.25358.103/windowsdesktop-runtime-10.0.0-preview.6.25358.103-win-x86.zip", - "hash": "c94e393338caffd834bbb4b33194e95e42faf0363ac3489c497ac3dedd6eaa2a53c84e4e27398c4ceb4a7e483c15d95f12c6d6dff88c6e2bc7ba50447dd2feb7" - } - ] - } - }, - { - "release-date": "2025-06-10", - "release-version": "10.0.0-preview.5", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview5/10.0.0-preview.5.md", - "runtime": { - "version": "10.0.0-preview.5.25277.114", - "version-display": "10.0.0-preview.5", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-arm.tar.gz", - "hash": "A6E028A341A62E8D6439626BF888D572F991A12CD80A1A2D8CD6EFDA9C9F104ED19125C5B11CB8EF505B75B9129294A42237740D310005AB7F0D72CE35CB77CC" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "44FAD100DF0564153855A76A964B21FE30C7DC26C5610138FCB2827F13FE7D669E53E4F511A3D16292593DC01589D80F8A34A4C007FFC5257732161DAC4EACC6" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-bionic-arm64.tar.gz", - "hash": "E31CC0034F38AC94FCE1A12DB067053BA8DA900C113195BDACC79D5767BF1937E5179B7D1523ED46141622A51DD693CA18D7AC69328DF6E9A5754DE4A1E2EB41" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-bionic-x64.tar.gz", - "hash": "B987D31E0C2F0933239B523AEDDC820AC42CCF2D611EF095DCD6A39CE9C4501F7D6419987B314405E46E9B572FDAC026BB5E2F2E7BEBDF280FE3F56D0B41C971" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "8EE1926711F970B6692CBFFD2050BD3FBCD225C411475A154006BD94CA34E7B09BED8B023DDA399148BF01FA37B893BA17863BCFDD4F14F8CCA636EF0A4C6E2B" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "207B84A7911F5F194A7558F35A4E13482B85EDEE587ECB93E4A42690CB14284C0EA2EC89F9D96F2D1A19B7A0A8411B6D9CBB7543BA2CF2A5277DB74AAF125360" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "DEE31F80B1B1ED6ADDA70CE58AF96183EDA2A8FFF5B2AADC7CEB70E3C9914C132C6FB2405984E241BAC1973DFE1E4403E5E695D4E67A326BD1D9D68F03DC9EB5" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-linux-x64.tar.gz", - "hash": "6A71DCCAA3997E2CCDC5A506C8473B24A2702C8874AF27C983F6F787B857B9EE53E2F3C6EBA3DB75D423B1F57ADF9D6053AF9C1FF07C1EB25C8340DA6041E41E" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "AB849707CEE617BF314CE68C09E8D8C9AF3B2B9DE4D64405C3AA3FBF875C9510E1E7A22649B0B0285BC1FAA0EAD426F3F79D159463530002011DC5929100B52D" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-osx-x64.tar.gz", - "hash": "2E28F36C3FFB64730EB8B8DE5D5764ECE16613C818FE377A0E7DDBEBC6C07900C9D0B289DBA4D3494EFE07FCCB21F227BE0CA807C10BE18B954B0EE1FDF43F0B" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "9082BDF83AB098B2C94C2676A0849C528A2D8DACE34E32621B04ADC460D9289B3BE5D94A5C424ABFB9B290BA59F4380A06AA41FBB8F0B2F99B4CF2A15D70C2E5" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "1E71509F540A4B92B17ABADBAC1CF74B6E8E8044FCCF1D6E6F941506BA56F9084F2114FA4B994832667A20ADBE5D71CF57462433C36833D44EB4469675D27B79" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-apphost-pack-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "515F0CE92E16FCEA513A56D91D0F72BF35A2D1AAC97C3BBE6A1A19E734062A3EBDC189EC00407F188537AC80C66D009A6F5C50AB27CA99AA6FEC60005652E915" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-arm.tar.gz", - "hash": "D9294D0AA4A224E1A76AB08684D827580841B45A0D96953C317EF4FD3858C08524455B302734F76ED7D5C940B212FD116F7A5F1317F7A4463AADBEC910989AEE" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "9AE24D6528C30242F537F2D3E3AD89B87EBE47BAD441FD6730DF5264D135A63705721B67F434E2251809013B25ADB2E3734D650E233E6C871C579D713240A650" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "linux-bionic-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-bionic-arm64.tar.gz", - "hash": "340827A3C4893DC492CC8C084B3F1CA2A386BDC252B4174DD34EA12A778D43298107B0E060E4592C6B77C98B328359EFEFC3C4EA61111984392037A93950D2D6" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "linux-bionic-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-bionic-x64.tar.gz", - "hash": "D0104F8B1333AE62A7B3BB64B27A313FEE343AA23C7D8B845DCA47DF570B0BC2CB0E101025F92136A82E5B99D57A7BFCFBB7EFC793C02D572A7004DE606F3C42" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "37B38B5CA69E2CBBDDCFAF4D7C2D1F652E56368F3C4BCA842C8CD81FA108A25AFBF5A9AC85856363EA6E0E10C85CEC03CFF57E641690EDDDF0938F17D379DE32" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "10F5A4F743D8795688FAB1B9E736CD76E04BECB5A56903D9607CD7694C81A0AACEE948FA511BE463E7D719EF8AAA9CCD9099EF2A6A0F15D955D238CE0919FC9C" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "716B01559B44320C124459C461DC9BE7A2391B680EC9BA46A22F77A737EB93C4E3323A73B1138DDD1574DCC50934C82ADF7ABE792D6BBD953B8AEA790619941F" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-linux-x64.tar.gz", - "hash": "EC21EFF51B0F8B9E7C9C00B6CC9E9CDD810997C9D2C1987042C48CDD6BF6E40C2552ACBFCDA405C56B3CE7DE52B3A20E6B91F068C6E4BD101B896C302A32B5F2" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-osx-arm64.pkg", - "hash": "3867EFE2B96768D785CF74849F8A0816EA6DB24D4A0452D560FD1A1F5CF741BD0428BF4B60488909C055C8E02C84E1A2AED30ED7616242002F52C9BE11E7766F" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "8B950FDF099F34022CBB11AE2E736FA36D3CD7E117230971230EB3E0CDB3D33F36B43F87EE6F8C0767C56E6619066667BCFC8E267A6F416965B9C37B0C92152F" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-osx-x64.pkg", - "hash": "05BEBFAB82BF512D806DCC9E5F478E7D03C426E5A889C55279A846F89A307CADB3B5948F31DE17C1D7F3A827B91956C3656487E3FA85C31A742E6BF72E7B74B6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-osx-x64.tar.gz", - "hash": "B8607F688ECF06CF9FB295045383D7565BC2C9057E790F7716A2AC2D056C9AF6B5A3D642D82A1BF4F82727E0B6F6B066C72E2C54ED969FC5ADEA38841D88408C" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-arm64.exe", - "hash": "55D6B893B179DEFC422FF581A1356B6AAB9E37B233FB244902C320C490EF6F1D2ECB4EBEF129A80C1E1DD1113DB45FDE7F469F5BB230A56E68C3A3029DF254B7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "8F29BA0D38827EB30A0CE0A3A6FBAC2BB82F1EBF417B0C41B234F2DECB063E87AC9BF28B198F7DC162C1A2DBCAE0C9ED11D5B9245A8BF2C85FAE245442AB6F2F" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-x64.exe", - "hash": "C8B6764DD8D080A3AAE07A2DC7452B70578B8921864C356418F8002A4F912FB381B5C7921F2E5EFF8A7065BA27F1694E1EF838ED072EF2B0FEB88958D1F9AEF3" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "9A2E9FAC1424CD7E50624466E410D3DDA7F97EFFD6F4F96BE2B08961A1929A48169B84243555622AC015D6BCFFE8E953B86F68DA6FB9A66DED5F72EC1E362021" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-x86.exe", - "hash": "AB5C8169FBB774E7A177648D17AAA9F037E163FDB6E52D9D5FDF2EC62A6B04857DECEE3E2AC2EA7983C4E5A65EDD7CE157DF3DBE5EDCD6EE8E054F699C62CF22" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.5.25277.114/dotnet-runtime-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "64AF1C5917CDB077EB1909F8ED62AD2E8BFB3BE0B9B01612F85203D614F5F15F03B7802D6676967025AADAE3202909634B6FFE29EC28640D84827F0717B19517" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.5.25277.114", - "version-display": "10.0.100-preview.5", - "runtime-version": "10.0.0-preview.5.25277.114", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-arm.tar.gz", - "hash": "1BB72EBACF090A3FC34DD1311AD634E4FB00EA452320AA68D62ABBF83121518B5AE42B9C1895FB804F55CFACEC78095CAF23C0CCF44D0076912C7E3A5A001786" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "E99F03858BAFFA1B41E67EB6291B7E9EB68FC8926409794D4416982092B7E80356E5547BE779B774216C1EC7AEE236B6474567CB7C0D815ECD19EBC71B07F971" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "DE43CB81692591FF6508A9BEE19107FE03E6551633F03FD617CF29A14E5142DBDCAED9DED406A7E839F39D8D0FB4B6AA1749C2C925B63C93CC1567420679B0C1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "C5085C53974ABB9949A774EE613BB22CAA22BB510883296AA5E0CF9590F4F13BE0E2E7074E4054F9B1BF09D20D08F2FF223594495E956FBEEAE85C508C7F1596" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "B9E48F0C1B8B233F0BED18EFD84DC35B3DFF4F6C84052C9CCA40FC701A34D1D86744DEAC0F155C91CEBC3E54276170AD0B51DA7A8E73E597A7D3D24672608C18" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-x64.tar.gz", - "hash": "4EF3BC177BBAA7BA38CEB78CF0109BACCEA1F4432CD8C52E3D78B237CD5A92BD660E926774036A2FCB51175F48FFEBC8A65DCA56BB905BC8ED4F2ECFD8C15C79" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-arm64.pkg", - "hash": "2BC0BEB4636989819A008ECEDA33237E623B11579F72BBCEB3569F96656719BAD0FF70E6DA72D1C247D31795F49380EAEFAA2FFBADD0CB154B89458AE86C750B" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "185A3E341B928BA1B218FB769FB0D8CFD7162C567CCD46928FFCE74D6069BA0C491E44E9062855335283A747E995AF44529EB6FCE06D3C09C5C9B0A622C39360" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-x64.pkg", - "hash": "DA59DF0ABFBD51BD1BFF48F4383C5A11C6B1470B7173D6F4F953AE161030E9AA19ECCBFA10CAC88BAAA85AB6AF682C1E1456C8B6CFEBACF20ED0C77F504B355F" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-x64.tar.gz", - "hash": "CAF70EBAF1182FD803E60A05F2F793AB6F6902EC365BD94B09902679709FB2AEF6122A03256DB4D3936F33B98F64623E8EDA0C64CF8AE902829C23E745987148" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-arm64.exe", - "hash": "AC896689007910E927751A6EF6AE801F368FEC53D69D2B95495860374E9C85C72906B9CD66B85C1B07DB42AD6C0D54BFE19D1CFC9070937C630B63B3B316AE41" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-arm64.zip", - "hash": "67FF83BFFEDD09D513636A870247DA9157096DC22FB30D1E7DE3D4C7268892396B89542D2C7F7593EB154F3E1CF54CECC754640585F5081AA44AB2B6C8DEFDFE" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x64.exe", - "hash": "A831E4853315517ED6AE917E892D5F4FED15D1398FA69B5A6F4790827AD1EA81E9E0290939C6F7C5A91126A8F0A7DF885ECF1BE5105E5B5A9301786C00F6A74D" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x64.zip", - "hash": "E54A15F594474DD9902AEBCB99C3EC0963D7E4DCD73935DADE6E70D726BCC21410DEA104CA699F19D8CAEB4D3E82EE52F8F373102D4E46F5E9121CACF9DC53CF" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x86.exe", - "hash": "3CF01D32DA05DD5A8880863974EE1A0E20BAA3A8E8162B69A76B23CDAC092389BBB30208545B7E05D7C2039628A866B7F153745F7FDDA8FAE36C33C383B1C305" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x86.zip", - "hash": "BEC0FC40E823827F6F6691AF1CD7FEBFC7045A2F36DD60FA551CAF1CC191FF9B51F640CEDD39CBDC873A94D7501F0D93E6A4023B64B048E67873D46C0FA115A9" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.5.25277.114", - "version-display": "10.0.100-preview.5", - "runtime-version": "10.0.0-preview.5.25277.114", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-arm.tar.gz", - "hash": "1BB72EBACF090A3FC34DD1311AD634E4FB00EA452320AA68D62ABBF83121518B5AE42B9C1895FB804F55CFACEC78095CAF23C0CCF44D0076912C7E3A5A001786" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "E99F03858BAFFA1B41E67EB6291B7E9EB68FC8926409794D4416982092B7E80356E5547BE779B774216C1EC7AEE236B6474567CB7C0D815ECD19EBC71B07F971" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "DE43CB81692591FF6508A9BEE19107FE03E6551633F03FD617CF29A14E5142DBDCAED9DED406A7E839F39D8D0FB4B6AA1749C2C925B63C93CC1567420679B0C1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "C5085C53974ABB9949A774EE613BB22CAA22BB510883296AA5E0CF9590F4F13BE0E2E7074E4054F9B1BF09D20D08F2FF223594495E956FBEEAE85C508C7F1596" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "B9E48F0C1B8B233F0BED18EFD84DC35B3DFF4F6C84052C9CCA40FC701A34D1D86744DEAC0F155C91CEBC3E54276170AD0B51DA7A8E73E597A7D3D24672608C18" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-linux-x64.tar.gz", - "hash": "4EF3BC177BBAA7BA38CEB78CF0109BACCEA1F4432CD8C52E3D78B237CD5A92BD660E926774036A2FCB51175F48FFEBC8A65DCA56BB905BC8ED4F2ECFD8C15C79" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-arm64.pkg", - "hash": "2BC0BEB4636989819A008ECEDA33237E623B11579F72BBCEB3569F96656719BAD0FF70E6DA72D1C247D31795F49380EAEFAA2FFBADD0CB154B89458AE86C750B" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "185A3E341B928BA1B218FB769FB0D8CFD7162C567CCD46928FFCE74D6069BA0C491E44E9062855335283A747E995AF44529EB6FCE06D3C09C5C9B0A622C39360" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-x64.pkg", - "hash": "DA59DF0ABFBD51BD1BFF48F4383C5A11C6B1470B7173D6F4F953AE161030E9AA19ECCBFA10CAC88BAAA85AB6AF682C1E1456C8B6CFEBACF20ED0C77F504B355F" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-osx-x64.tar.gz", - "hash": "CAF70EBAF1182FD803E60A05F2F793AB6F6902EC365BD94B09902679709FB2AEF6122A03256DB4D3936F33B98F64623E8EDA0C64CF8AE902829C23E745987148" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-arm64.exe", - "hash": "AC896689007910E927751A6EF6AE801F368FEC53D69D2B95495860374E9C85C72906B9CD66B85C1B07DB42AD6C0D54BFE19D1CFC9070937C630B63B3B316AE41" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-arm64.zip", - "hash": "67FF83BFFEDD09D513636A870247DA9157096DC22FB30D1E7DE3D4C7268892396B89542D2C7F7593EB154F3E1CF54CECC754640585F5081AA44AB2B6C8DEFDFE" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x64.exe", - "hash": "A831E4853315517ED6AE917E892D5F4FED15D1398FA69B5A6F4790827AD1EA81E9E0290939C6F7C5A91126A8F0A7DF885ECF1BE5105E5B5A9301786C00F6A74D" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x64.zip", - "hash": "E54A15F594474DD9902AEBCB99C3EC0963D7E4DCD73935DADE6E70D726BCC21410DEA104CA699F19D8CAEB4D3E82EE52F8F373102D4E46F5E9121CACF9DC53CF" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x86.exe", - "hash": "3CF01D32DA05DD5A8880863974EE1A0E20BAA3A8E8162B69A76B23CDAC092389BBB30208545B7E05D7C2039628A866B7F153745F7FDDA8FAE36C33C383B1C305" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.5.25277.114/dotnet-sdk-10.0.100-preview.5.25277.114-win-x86.zip", - "hash": "BEC0FC40E823827F6F6691AF1CD7FEBFC7045A2F36DD60FA551CAF1CC191FF9B51F640CEDD39CBDC873A94D7501F0D93E6A4023B64B048E67873D46C0FA115A9" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.5.25277.114", - "version-display": "10.0.0-preview.5", - "version-aspnetcoremodule": [], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-arm.tar.gz", - "hash": "0830203BBDA5F1BE678E59BF08E4CBF6C0DA52C9809D026004BA2EF0EA0FD6A3088C8F025D7A92C6619B0FB586E07056F7495A26D5FD537CAE09AB71CA816E1D" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "AC99EBEC4E7ABD660A27317D37DA56AE1FA8E9EBDBF4A88FE5F9BE58E1F4D7E8F05BEC32D5E902C0FDD1E9D9E250CDB49448266682010E4CF7F4640F9699B9F1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "789EC6DCB6805ED709F03FACD19E2CF04FAEB88408E2436BC7E7E76EB65F273402F4714CEE60C6B08FD9B59138BFF43B805965D1D5C5BA585BEAE71E5FFB8B4D" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "B06D62A7C5300C4A7FC795438180E27C127E971578F8F874C8C6D733BE2B645EFB59B633D88F6658CA34DBCBC8B689675CB3651A612598204FC2A5BAE41D361D" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "C998983DB2CD5E8BA3703900873929D93F0FF8C6A51B465A27035972BA77F0C19A72D3CB8542DDB32FECD1E76BA3971627391A2E00F5A9FE1DF7CE648392D317" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-linux-x64.tar.gz", - "hash": "6E69A85F7E18B8EEBB5F99A7E8099DB2FA5DA34BCF078BECBB123C0863D4BE7B4252C7CFC6B21B9585F4F800C058A12CAE55EF2A63B9BEA886CA3D1D8A0EC113" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "623B5A293F98DD35D305F311281792A1ABD9CE557F31A6673943F20B928E6EA918076AD8F21983EC5148206BFA4C0898EE8D926DF94925838CCE11AEAF6A5524" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-osx-x64.tar.gz", - "hash": "231667EDCF6E734240C0A8F40EBB428E7B5685C5185BA1FA50D5F5072ED86533F9E94B69551C8BF6C16DA4DE4DFD4980E6AC25F104A1CC1518A792399BF2268D" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-arm64.exe", - "hash": "CCBFDA165F7B43F1D32EF6EA907D322EFCB320EBE946666C7B390CA133FEB9D5C6BA384058B2FA5EE5830F17A2A02BDA8DC811575CF4A1F40DE97CE5C5AA9953" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "30EA875D0F445EA7A08E10884A36D10C4B14E8BAABF2D709F042FF9ABD72CFFF4B13BDAA2EDBAFC4E1EC5E9F969572B226A99C9EA0F65C2EDB62BA968B6C6C21" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-x64.exe", - "hash": "E0828789A0AC2920967604CF859CA008A753897B91FD9F6C954C61DF28B10C5DE89C498732B68F691BF2090A2C7E045AFFDA14CC4E3B17C2FD0D08C320752097" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "FE9D46066F394BF11D172E847A90038F0B42951CD06960D153822C158666E13DEF904DCD7A900B1CD43F2888AAB94E90405CCB0552E7D707FBFC0278E6314DF0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-x86.exe", - "hash": "EB89B1AAC4B49C9CB64FF75A21D0D245BE0F31774CDE88AE0842F65B88F56B9022E5D5D8907F0188B8B91AE39C1A6175B4ADB35C7C16EF8D8B29DF67E2F50FE1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "D746F85FA7E6361A15F85A5114A7BB5C4D076529B175DB2BDE8D6D53A7006C707DF5CCEE9B7A555D45A9B5EE3E6B84FBF5CC29AD9C57C0E30DA97D52B4BC46B7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-arm.tar.gz", - "hash": "E0023293584C9DF783F1CCB4A8368FE9DAB128BC42B469CAF883E52A6AFDF0C216F001BE0A9E383C537DFD5F31B8106944936784E5D74193D77E50EB08D453A7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "2160222CFBD063F1EF109D94C629A2D2236263922927ACCB30BF38FF1F853F69651FA33DF5C96AA2AC037C2D6AEF7A107347F7E40EA3681EEFBCCEC7D06D1D1C" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "A012AB79894CAF198FE725825C6973C818B0F5CCB6BA7D0F306B6741FD488E39A5E3D1DFD90FF5D2B100714D2F1F2262B59C97C1D360406D37431B109F483C42" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "246F726E68BEACCEB8B96177663BB2D6B00153ED51BFE591234F5F59F9C8E50B4DF3C8E8084C52D81FF144D47FB78BD7C40E7C9BDD51B7DD4EE51AA5ED462F30" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "197D5A9C080743A7CE1F3547BD7A3D7ABCE2A1F66796416FABDD01630BB127033004013EAB1CFB8CDEB1F80C62FE18FB858E13FD32388D2B48EA291A42C9C6F1" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-linux-x64.tar.gz", - "hash": "390EDF8B930F1AD580F555E3F795E6F0568BFAC09433661C6D04D80E7DD6615F8438C2301CD55DAEAB9766722E40EC94C7B442CBB0C6AAF82C501A55D3224EC2" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "01CB563E953CF0D7DA687D8B976B79A5BFF4FC5ED48971E1D271B6EA3294E31EE0FA916A77AA991A526D0F9B40FBB19CC73D42053A5735733E09C0A86F74A482" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-osx-x64.tar.gz", - "hash": "687ED68AD0AD1D41BFA58C938428DC7EE5C3A89ABC28310B5E5E126EFB02A73654AD743F4B495C69D834D717ED4F6BB5D136C3E778130F5F1F99433885F2AB68" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "6D54359F7546E295685EF87E3FB5C230AD2DFDB106657E7F098CEF0D077B880E70CF76FD863879A5576C7530BFDD8AD841C57C3EB940BE2F019D606C1B651AD2" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "96E0E11FBE520A4E15874C07B4CF61799EEA4084B14AC158C6852922E1897A826B17A5640F60D827E599722953B4070A0E2EF55FD10A3AEB6604D4528F61CF5A" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-runtime-composite-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "F18FCC0C88A11F6EC96E9F8B6C31E1ABC7FBF98FD42E8754B158C0385DDEC762EBB4C62D66DD2B65AAE1A5A78B01FEF8839E77F0BDD38767C7B1DCC762FEFDEE" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-arm.tar.gz", - "hash": "7AFE535FD96C9AE6A1B9C034E2447E117F700B85D8E96EED6F727C79799B8B265D8C101AACB5582673D48B13DFA519F065D6AC830BAA7581A63F68749180A914" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-arm64.tar.gz", - "hash": "A6F7AB98963E2EA694FF6CDC3AC2A95E1AC70A1A51B74D6A4040D59DAE1C71999F67DC9565F390B22EFC88F8BB13BBA94F295C78B6939ECF1F69CCAAFDC6DE23" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-musl-arm.tar.gz", - "hash": "0C65D01FE4E253FCC628D5710C78B6D27686D20FCE24A10904870C86FE2CB7C720B1E7439AA3BB75E74011400E3DF8DF4414E07A7E5239F6552803808FD4B857" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-musl-arm64.tar.gz", - "hash": "98D53983BF534D71935B6D63621411F3EB2A956AACF8C32E397A31BBD85E2FBD6DD3E9DC0E2E779E2581E72EA04B9935C1725448DB363104FDD2B9D14FCD71A8" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-musl-x64.tar.gz", - "hash": "71400A85B86198F362EC47A3003873EA16B8F5EE394D1280EA863265EE4F9012AE7217834A972E466BA619F62E5577D43B8AC54AB916071AACF2060548DEF8D2" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-linux-x64.tar.gz", - "hash": "9EED70BF765947ACC19342A5B564A60AB96542DEF4A93A83F263317159F80602BB28E9D9BBF26DE53643ADBB0B934752D2C44503EF60020CF68BF514C5831989" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-osx-arm64.tar.gz", - "hash": "F78680057C875DBEDBDA253E87EEB5F6AD25016B1013C62087987B798BA13BFBE55E9557C34F0C43869526B282F34276249412F4560461D7639D1A11B19CC7EB" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-osx-x64.tar.gz", - "hash": "A4F2CEEFCE7ED17612B45F738E363C967C427E56EFDD8394A1546063C1C94DF6B3AFE9EF88E01D18944ADF2C54BB1CA597D0CCF9BFF33BF374F5E0DC44236120" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "10E180B1F80563AFC5A281E75B0D716D5D38EFAB2CAFBB3E569A6004A43EDA528A7D4A003543AFF8C389F794BE1C324F8779166A726C11484ED3989EF7AF5EB7" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "C597E119C158FCD872DF4CFA83827722777B232C6232948DE041D53AFE0303124C46F7EC6ABB741EF9DD1AB82D513D7A0B227AE7C3703F77AE9446DB17E9AB68" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/aspnetcore-targeting-pack-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "330560CC24E0C51F255FE59CD0D1D79E03776D86803DA5637CD5CB5E5F4BE23987F92D7E4F1887B6CCE89BBCA93A3255328DE02CEF41E7DF6A3A53672F88F7F8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.5.25277.114/dotnet-hosting-10.0.0-preview.5.25277.114-win.exe", - "hash": "928C153F8C3D5F65FDFEF71975E6B8F630A4910BCC8B78202C125DB0F4CC06279A7BEF8F3E2B5FC5BA8FE8712B67C992C33AC65F869F794B7C8D5B3E0B0A12E8", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.5.25277.114", - "version-display": "10.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-arm64.exe", - "hash": "26A7F7461474DB196EFBB6F0D14F888E6FEC74841B097C96E70B0696AEBCEF075E4F9EABCB351064C25CD2EE77BC2E0F57530A31CA6E1CADFB49073E1ABA0E34" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-arm64.zip", - "hash": "BFB19FB4A3AC9C3ECC27B8A9F3392C8ADE2768AF153979F1FCC1D20C4D643B89AAC47B4436AEDA9B92163A234AA12F5576CA32268D37E0D07A7EDC2DFD4C683C" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-x64.exe", - "hash": "AB613396EC8344449B115611494FAE3470EFE6472CDA363EF104B4A698FAF7591A3343E379F57A020C035453835EE899B3BE4F7A5CFB22361A8E8965BC0A438A" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-x64.zip", - "hash": "A4680A1C746F771654F5C61109DC33001961C595B6974466C7E29CA172664522193D4A1BF3981EFC1B7765202C8B979439789073ED7613E4D39BC3FEDCD39140" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-x86.exe", - "hash": "85780B5FCCF23C405C7B419C72FF36CACFE43D6CA6B767319B48C877613783F4BAFB2F1F0F19975BDE66F6ACA1D465D555A94E8FA6F305C8108C3BC7A1634E4E" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.5.25277.114/windowsdesktop-runtime-10.0.0-preview.5.25277.114-win-x86.zip", - "hash": "C4A9F08C7ED3BD7C164AA8E2BD47DAA6EB7E34E385B289AD7B7047E77F7B3FA940A236A72B081ACB1B684E6195189051CF89991F7A78D17926B7AEA1FC99CA32" - } - ] - } - }, - { - "release-date": "2025-05-13", - "release-version": "10.0.0-preview.4", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview4/10.0.0-preview.4.md", - "runtime": { - "version": "10.0.0-preview.4.25258.110", - "version-display": "10.0.0-preview.4", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-arm.tar.gz", - "hash": "d5115b0e54b487c83fd4b66504da7c31522d4b6fe72044ef0bbf8b7362b39f538658d309f6b99289091ee3a13c10f9d63abce8bbefbeb5dfb2cba1ef382cdd2c" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "1a42d330b310f79f6e153fcef38d4cfc6aab65ebc42bd8ba3c1e58a813e6ee2e3c9e947fb7356b6224efc7d71405526ca314f49ae7c280f78f5e4f2599a42c08" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-bionic-arm64.tar.gz", - "hash": "8ea0d014f7aa4c8b91ccb060cd2f7123d90be0cca967252bbacb09fecbed93be450fa13bb3004d2d08f8fdb674cc6da57c25847f6f49e1b342c8465ccf068e5e" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-bionic-x64.tar.gz", - "hash": "f193737f5aa908c02e65f3a7cbf5cfa18ddb0d047b87e237410f74fb64f0adc3a866c28b2c0115b84f641a88afa7fd1c10a38804eba1461e9db724a6cd295246" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "38724dcfcc683e66a3539c49bed1215b8e7a69246aff91f40cdf61ad93afd5e51f30f209fb6c5ca70cf31f33d55285917c8270c613b5a4f76968ce1045da6f9e" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "1d893ee5ca41523547e9e37ef4894c3a89e36d7d0d8a06a2f9ab9b4d167ab92db8b8b121071f634ea5e52f9caa5b20468592b7ec823ace4d0e4b21abaf968e34" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "86234118a59adad350db86bd81cf2720f8b41b8de5cfd405f103789e43fd7593ffe3f77a1c2ad7cc1e5be08ffd412d25c0a1828e3ea325dc8e597a9cdea96c21" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-linux-x64.tar.gz", - "hash": "cb259beebf484a240846940bf2e3e2a047788eab8059afbaa27518b2f5b09bba284049c97ddf9a15bf1e8d9c170f7ff0917e8b4fe7196ed5d9acb8b843fb4d02" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "7e66852c9ad6505f1b70bd5a531b3ae1b52033af24139c7357fa63d7b2ba16cec427cddbcb2757ff117773f47345d633a08e4756f14b37a626214b5d8f51f1db" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-osx-x64.tar.gz", - "hash": "1d103e6f01a47c2d98d36f7b01ddabcb400ea6cd645ab8c18a3471e2e147983b16039fa884ed054079c30f4fcf1c9acd6ee8813bc19c404beb6ed6a089429389" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "e4e331b5e9d662e323d0c00515571d13a3b7ea2dda9d91065d501a1e715d337ed6d9735af723a871f54be7262460c9b9d272c7a2786ab70e400273f59ce002ad" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "b6b131e1babea7975fddd6d92d1d37526e06cc8f314ef68c9e92b57dabc878f1bbfbc9d87c4409ec315d8b74f30fdd0f09f18b401aa17d78043b1e8a77636325" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-apphost-pack-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "e0141bdf479ad12ddd4896d155752908f44a186a75191b3343f3969bea354fc6a44eac1e39af9c3b4791be0c6ebd7389b1ef576f99f345010d0993f09fb1876e" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-arm.tar.gz", - "hash": "403d9c733139895e3ea6269f054a5324df870baeb5a6fe3bb74fa0bae62254962df49025c01b162085e8c633c89b4b2c8403780f0e322d7889d5da16c186ca2a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "06af523d810d3afc311a83830e1ac03b01b36fbfc93ece395ee954ecb238ae5aafd403f330332870ea314f2b569f2474c721c12c78d162b1bf2b5fd075d6c231" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-bionic-arm64.tar.gz", - "hash": "66b9492b51b107fb1572141b0951fd43c0104b5f7ab90245d086c2a5e1dc1c87d038b65417f58a5cadb52547c894262b4dc2e8b01f25dc49ed289fe0241ec6d7" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-bionic-x64.tar.gz", - "hash": "f8f2c3a986c5b6498e7dcd7d62e2351a289af990574eeedb00d15a71cd2852b85ab79eb54049ee9851f73eaab964fb0f252e76707019a950656f20b56a9772e1" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "95ba53d99a5faf1e666747bacc19f593011ffd6b6941ff46ec9002b7757591855738a065885af67099d9abe6d29d3623350557cac4337fa59908988788d42fce" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "6e2d053f3c22e4f60df2eaee9a36b7b2dd5c68e5fc0d03c4d4e51f9b5157a5abfadeb0a2a0af480cc65c3eea3d5fa78d4dba2cf3abbe74eccc06f6485e1d0915" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "43987a916ab6f92e39307ec05d10e50e23c727a7436a14272ba86062b76f89ff4e288341f1e26d6e996e4b61f2006aac37eb700f3c2300c9ff27c3b6e9f882a2" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-linux-x64.tar.gz", - "hash": "1902b230b1f200fec7762a14b1c7e140172a155bd8312d5338ea290c9507a61be3ed7dc7995e5769e9e0f55b11dfe2ee7585a654e6f4b4464e59415463ce7ade" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-osx-arm64.pkg", - "hash": "95b322b963df61e7b4a61ffa353d8b21182c75478a284e07924c86e4986fa2a5cc5bc35be072f6d282a9d8a3c8630083ad5df5e38afc961340d1865f4b046eba" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "3aa02f829a824c8e36aece53c747acc6fa4129938af04fe305e3df7ae0666df172b60a687841a0f98d89d142644f5ed42fa14d31a13a0e7de141f9c0cfe9a658" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-osx-x64.pkg", - "hash": "1b25f378949dc0d8b1136b01eab8e1394bfe32b414432144dfe2df9e106c5eb52b856ada3d905f67f2ebfd822cc3c14de452d52ba2ad5700006403789fe30a68" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-osx-x64.tar.gz", - "hash": "3717d3249bb8778ce3696801ed57115b552b204c0480d3afbeb8e6fa3f17b9f4ea89b7b4154e3abdf5827ea11c3b63d7e291e7620b48e0b5a9a31d116c0594bc" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-arm64.exe", - "hash": "dbf94215389639365fbca47b383320647555589bfdbcb73eb31dddad40ffbebbe2b136cf07077f8e2fb37d89b136dddb3cda64a8746faabd05f9f3efe7c06179" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "677929369caa6211ac317ae98fbfb44de2eb5fbed7fb99d9091fe88f77cf2d9d32fd9b52b16288bda3f3324daf062c7ccac3710b2c1c9f8e363728af02376e58" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-x64.exe", - "hash": "4074a801ccf0839647b4a00e26e1b3f85b1dc779716c78039454bcda33217b724d7e20c02e254bd949eee2fcefd7dc9e5533797e815abba0007173ae0e7fad4a" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "e8b57e093218b91cc75bff6ef929e9de890c79ce8bc71d3d3bfe6a0cfbdc23cd6902c36b7052cff3f3c4f52f6f7841acaf43d2b514a4bb672fb6129626bfc8da" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-x86.exe", - "hash": "8e7e77bc51f4ec5688e5701f846ec519f600fdc20d9f60005293fe911a4e78e59e7612aee8d23f755740d8c4d60415208395f4e323a0c22f66b4ab5a2cebd1f3" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.4.25258.110/dotnet-runtime-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "6234f55a4525e300778260ea6721baa1e657f1837697d98030f9fb88959728a28521c061659f7ce03d93b2ba8063260508076ef3e7b8b582e6211386c39eff8d" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.4.25258.110", - "version-display": "10.0.100-preview.4", - "runtime-version": "10.0.0-preview.4.25258.110", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-arm.tar.gz", - "hash": "0d4279a0b35853ce619a2341fe3c2375f15fafdfc67d48a85ca6c1d7212e7bf098cfebfe48455daef98ada9357fc5835b07ffb3c549234654dac39fed864cc91" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "38c25fa1f4335907a5e58210b343b1bed0b4444ef94a336558d70bab3f2763ffd786155e66640fc08fd9fd949bf061c4f69451fab9c0a6f134e0104a440cf972" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "8a714da3e87b21d8d81b709a7b8e401f1ae0f7be3bacb9829fb84de29b48c6e7355050018accc72f642dd395e8ebc08f9987deb9140eda8ba3f1a6cbe41138ec" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "0ef193341f450a17996e479e42e69087d700473589f0d8dccc1f4e8072f104cf83e065e38361f9fdcad84cc816aab0b807b82b242b6f67858cde592725e42aef" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "78c54bcc822dfebf1d4972387e594ff7bbc3d70a02609393f4d93ae90e2cbcefa00abc16a5d7fef8202446aa9057deb9194efbe2df83c078c2a2b9ba61fd9422" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-x64.tar.gz", - "hash": "889788370618955f2fb10005aa66a1e617d52c8cd01783d7819e4368ed5c60b9541adf126fe7e307b764c0f0f283a4f209c0d2017d992da4432b671b73765b44" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-arm64.pkg", - "hash": "258abd5a6ec4f81109e056693a379239f8ba5556e1257518bd4f2dac6ffd53a447bc2d980edd5bdc3a12b8d6e969727a623d1b5f0eda2ad1ebffcd75fc483681" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "b3e02d8f01786e89bc4f8de711e6edae97b979e27097b2673aa51cc5124306853325edc9be899eba4ba81b67692cd81e4c7ba388a15f85ceeba0404f1bdc92a1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-x64.pkg", - "hash": "5703352dd15952ec30cd5b96882ff22f4db6ee23cef8773d796411eb33e8c4562cc8779eeceda40c2112907b838e46d786f1289c3c75c42f733e8977e62c6e4b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-x64.tar.gz", - "hash": "5b8b066612c4dd09e3955734cdffbba703ce6e03d40f688b4b1367980b08407ae07b234f5219f2225ec2db6d81eddd02c4afba64ae10ac31882a71b60117539e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-arm64.exe", - "hash": "f5b6eb2b923ae8419073bef4b4d6846c60c73d7172017c06bc67cce8b6360954882af9a0e09de2c6be32604242f6878168029599507f08e0db7b250655ce63ba" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-arm64.zip", - "hash": "a2a7725d794e592dd0965682ab920e7b691bf387cc7b7c526eca367604734e4e2b3022e7f09ebda3fe7a2d1682894a230b83d9ea7920665d5bb12c159c38e50e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x64.exe", - "hash": "d79646bbfdee7f86250efb63934d5d9876d1934ba52fe2694ae4feed383fe1667f6c49f2435ab5b5430e22669caf0e9c821d3a1c90e075017c62085a34249e52" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x64.zip", - "hash": "266d9f25c196bada1c73af596ebe1605ef0e4527d66aafbe0209f597c78d3cc9bed3a87fddcdc0c3d4a757adb108f71487ee2374a79278e688a9f12093a5131f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x86.exe", - "hash": "39277ae3e55f7d59b8e083d172fa1b74ffbe1e33ac3a147137a6b390a6edd8b42b80b504522a4374f4e7a89b63f44faf22a76d0cf52e294bd699eda0aa838693" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x86.zip", - "hash": "3d30f45ad988cf9612aadb64c3a326462279adb7a28996bf77143c75310ec1bec1fa3fb6a23bbc832333201fb27169a0ee2afdc0ef9dba6c93a23bf76710a746" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.4.25258.110", - "version-display": "10.0.100-preview.4", - "runtime-version": "10.0.0-preview.4.25258.110", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-arm.tar.gz", - "hash": "0d4279a0b35853ce619a2341fe3c2375f15fafdfc67d48a85ca6c1d7212e7bf098cfebfe48455daef98ada9357fc5835b07ffb3c549234654dac39fed864cc91" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "38c25fa1f4335907a5e58210b343b1bed0b4444ef94a336558d70bab3f2763ffd786155e66640fc08fd9fd949bf061c4f69451fab9c0a6f134e0104a440cf972" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "8a714da3e87b21d8d81b709a7b8e401f1ae0f7be3bacb9829fb84de29b48c6e7355050018accc72f642dd395e8ebc08f9987deb9140eda8ba3f1a6cbe41138ec" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "0ef193341f450a17996e479e42e69087d700473589f0d8dccc1f4e8072f104cf83e065e38361f9fdcad84cc816aab0b807b82b242b6f67858cde592725e42aef" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "78c54bcc822dfebf1d4972387e594ff7bbc3d70a02609393f4d93ae90e2cbcefa00abc16a5d7fef8202446aa9057deb9194efbe2df83c078c2a2b9ba61fd9422" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-linux-x64.tar.gz", - "hash": "889788370618955f2fb10005aa66a1e617d52c8cd01783d7819e4368ed5c60b9541adf126fe7e307b764c0f0f283a4f209c0d2017d992da4432b671b73765b44" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-arm64.pkg", - "hash": "258abd5a6ec4f81109e056693a379239f8ba5556e1257518bd4f2dac6ffd53a447bc2d980edd5bdc3a12b8d6e969727a623d1b5f0eda2ad1ebffcd75fc483681" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "b3e02d8f01786e89bc4f8de711e6edae97b979e27097b2673aa51cc5124306853325edc9be899eba4ba81b67692cd81e4c7ba388a15f85ceeba0404f1bdc92a1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-x64.pkg", - "hash": "5703352dd15952ec30cd5b96882ff22f4db6ee23cef8773d796411eb33e8c4562cc8779eeceda40c2112907b838e46d786f1289c3c75c42f733e8977e62c6e4b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-osx-x64.tar.gz", - "hash": "5b8b066612c4dd09e3955734cdffbba703ce6e03d40f688b4b1367980b08407ae07b234f5219f2225ec2db6d81eddd02c4afba64ae10ac31882a71b60117539e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-arm64.exe", - "hash": "f5b6eb2b923ae8419073bef4b4d6846c60c73d7172017c06bc67cce8b6360954882af9a0e09de2c6be32604242f6878168029599507f08e0db7b250655ce63ba" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-arm64.zip", - "hash": "a2a7725d794e592dd0965682ab920e7b691bf387cc7b7c526eca367604734e4e2b3022e7f09ebda3fe7a2d1682894a230b83d9ea7920665d5bb12c159c38e50e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x64.exe", - "hash": "d79646bbfdee7f86250efb63934d5d9876d1934ba52fe2694ae4feed383fe1667f6c49f2435ab5b5430e22669caf0e9c821d3a1c90e075017c62085a34249e52" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x64.zip", - "hash": "266d9f25c196bada1c73af596ebe1605ef0e4527d66aafbe0209f597c78d3cc9bed3a87fddcdc0c3d4a757adb108f71487ee2374a79278e688a9f12093a5131f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x86.exe", - "hash": "39277ae3e55f7d59b8e083d172fa1b74ffbe1e33ac3a147137a6b390a6edd8b42b80b504522a4374f4e7a89b63f44faf22a76d0cf52e294bd699eda0aa838693" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.4.25258.110/dotnet-sdk-10.0.100-preview.4.25258.110-win-x86.zip", - "hash": "3d30f45ad988cf9612aadb64c3a326462279adb7a28996bf77143c75310ec1bec1fa3fb6a23bbc832333201fb27169a0ee2afdc0ef9dba6c93a23bf76710a746" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.4.25258.110", - "version-display": "10.0.0-preview.4", - "version-aspnetcoremodule": [], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-arm.tar.gz", - "hash": "64c4359a8d35ac15312ad844587dee1d227f207d3c9ba16edf50c6706f93a29d0b8d3388bd17547491652f1423a67bfbf42c4c7ae880afbe420615e529babf75" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "7c56bc04dd5515291fc29a944e501ce276b722aa78e3c679188cb9fe33fbe063c21b04efd0fcbba61013dd73914e7a4b438626a816c0b6f9cf7f097646a6d208" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "d6b6e4f2f548b0de2ba48c85a55de60675243d91b9e433aa2c4c036679aeb814236f9cf4f38509da5d471352a3845a830e1e02e5bc5e971acdb841567285626d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "92070419e0df1ec95d92900a14984fd1226da604e815460853fea6186be9b03a8bf4e0c79b243812ac54f35f293cd247b478f1bd896c3b653cb526808cce797c" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "a23f36e5b2ee6d1533b8770a9b1b90b8053bed2c613489d3b5ca298f4553d0cdc79ad9f5080058a1ce868c7c83ebf4727de379e757aee45dc07def528e55eeea" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-linux-x64.tar.gz", - "hash": "0fa8d60bdc3f63df49b5f3fe5cdda13713a3f9bea3e7c150480543f2b7c3b3871f4278fc042d6f850434146950c4934606c848f4b077be69ae4357ace36b7075" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "71a4c1494e7fd576fef11c5c92fcd0ecd921fe042f496704a55a96ffa5145d7938c6c435090e285d8ffe150c311f3ed67f75b1c1e3d192db9429f34f5301fddc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-osx-x64.tar.gz", - "hash": "5aa0689b4df534c2225b78170e2b52e8ba88b5c243e655f0ab1c58a11357022f7c7d7fb418cf145d7d82613d3a3b290d68a59a34d5fe33221c6d878719b30502" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-arm64.exe", - "hash": "9a4ab672e0c5a6c600d6fd5c1ad4e2838ce24f95cbc7ff8720c1542647a7b42505b108d6e38d4b6b6c4630fd4ae208c25b13f8050f6e77814bbda917636514b3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "17d0d35b085cd8bce4f30d29be29bfea341789580fea60f6dc09673060e1c4b1f5f3056a7c03bf465f978528f1e9e020f7c7c93d5d3fe9c4d6f6b14a11edff10" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-x64.exe", - "hash": "a01fd598de7202dc0bc379f16108a828587115ac36be19e1214e00edd44f2d5bb7706b2ce582baaa41c947e8ad8699b356ea405b5ed277fe36d0a26eb157c142" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "db68461f744a623a62fd63d230e5c9fa160c220013a46b23d436fad18927c0f349432cdeb6c9e115db5ed8311dc82891bd81f2958d7d6773c4ba84c92ad0e7fc" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-x86.exe", - "hash": "a94cf1c01a3c764da6e0dcdc6a86fd21fe80c9f0f4bdf7962f7ecd39d2598bb1c5597a3933c15808c5beea5caa3871698e818aebbe50278e0f8fdb70ecbbaf55" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "da426ac0f9f5f07094f38155c75c0b22887ab6b14725aecbd7bb12e529b815b61ac13fb05ea093f0a8f281e2997e05b8f71522c996c901c7d05f464cdd5e52b5" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-arm.tar.gz", - "hash": "177a931c53532a4d5881775b0670405bd23ff12102c8f7c55f83a5a5db04c3d326e78eb6e86626a19f0a771067af3e23147c8bfd19bef56f21a44827bdd67a63" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "9b1eb0c1ce649bbc74900c459fff67d91379bacf84b95d1ad207feee9baa1fbd56b3bb264a9a8c073415e5f878805754e371c48e36e71fdd9041fe68ce733125" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "fbeeb4b715588e1f480a42fe799c248e3b9cf90aa5bc04dea9506d17d65f0fa9e5db8fde779bdc9231ef8d0bf947a7182c3b2164e3367eda443b04ccaf5bbbaf" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "4fbd593865854e0e69c271871cc4db3dcf33a244c35810c1a3c2ad42db37a92aeb628fa3e8db37f503dc27c332d108e60f3f312304cc6aa696d857ebeb200cb5" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "eeb47521e7d68d0e964da20cc318bc578ac3aae85340d870a29ea0e9d1e77b5ddc2b722d15e42c5b15b080eda21d8f3a1708630bf942d55e3c3288a117a91a3e" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-linux-x64.tar.gz", - "hash": "8318d32f748348c1a5d56823a6733b3bb31558734c8f91dfe8189c8475953a64ee2c2698a1bf5e007e07054f16f797dfe2dfa463f61f69c877714589b51972c7" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "ad9a40cde11dfb7135f4e47f0f611920eacca6067598d82251c74de7cb9685d5d4960f299c784016d4267ec854e0aaa58a7ffd5f46498b4ea90487e29895c09e" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-osx-x64.tar.gz", - "hash": "99f8600261ae2fd49be181e8d181a386b6694c5eeeee15839c845bfbfeff987e999f88aeda37360350090ea9635507d8bb3f871f86c59a5df1a722520aa42592" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "ea788a61e314aa8912adedd2e9c8dfac306be701f917d2fec64ead0e63caf6dfbcb765dbc3f56f6d5b7e757d55326979b70b3725d02598df9ee7b6e1bf26a151" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "4b04f92244740e89615ef8e19975b51d8f87f879517850fb0037d90400952d8e2442e4679dfa246a9aa7239f5b417e15b59dd3fadafe05b63536df17354b91a9" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-runtime-composite-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "cf95339751f7156ac19e5323b59cb5a38683236c0f5874fe03b21f695f92f6b9bcfb0f07b0823edcc1b8297019f84bab465e985792e168ff8d208e07f76bd45a" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-arm.tar.gz", - "hash": "d5f31468d42c495ca46bc6bad75a65b3412f18a108f2ce42ccacfd0c364e257a21c1a6ef1186f5d3d96b70712905cc108835cada43437bc0c42ebb026f30c31b" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-arm64.tar.gz", - "hash": "528202289d982da003d68fb8e07883f2e490b49de0d9e05c84ae568feb59e4f667d45959d3b2c22a875f4c8d2491dad62a834394c03e153f0c849b7e8c823a0a" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-musl-arm.tar.gz", - "hash": "932813c81d4805ad18727d1b362d0a97a946ab34bc56ddf540dab53f438aa470aff79f57ad8fb5744dd0495dc6deefba6d1d10bb47863612265831e06d2ba62f" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-musl-arm64.tar.gz", - "hash": "000fae4aca4bce7b2f2692233cabc94c87970826eaef4523d6ac969d0eaba46f1cc0fab939f323f298cb9a954ab4f651e8bea1df171a8ddc3b2d671698201829" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-musl-x64.tar.gz", - "hash": "427a9e64e585ddaf852b2b54cd6831fb610665dde71a826a95915436c0b0a42ea513a11bc03cb42e7c653187c72be98aee7575417afe52d93bbb827da88ef333" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-linux-x64.tar.gz", - "hash": "79b0ff89da667252420c57e2c515983433bd738aa6eda8e06773569bb463be7d896c7417587a9d2e713860a3c100d94d88fe87bee8c44272fa3bf4638fd7adef" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-osx-arm64.tar.gz", - "hash": "051ad55c690422bdff1cd3e6936f5e58c90c1c2e6a41dc4466cf4f6debe74e3dca68790ff97efda76362e54d93a35797ee36b5a24f7b5bfc8c2a7088259e479e" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-osx-x64.tar.gz", - "hash": "48cdf253c8a6687af3b8cb0461d189a8d91b299af47ece3dd91206c98f4b7e86861abcbeff458f27128aa4a049fa507b4e73843461e1485528d7dce7c82f0b86" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "6236dfc25233ca8f55543e6b723899bc94d9ef9cf125d20393c28b2b5c3255518f6e4d85e710ee45ec3c2b023cb3eca0d0203439645ffe1d8e22bd3c948e71bc" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "56e4f21f8a51c58eb6052183927f61c8d538e2e27bb4dd10d1bee0f4fea07f69874d8237d761afba9c8bd172f7c8e1877f92d26ec2fb89532221493369be5155" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/aspnetcore-targeting-pack-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "1e6d06385e6fc7837e648a02243d9fd45491e12e2847a2ca1a339c648ee7c23b506bf0c94d641053377a2fe3275c3288d78758e130db7f5f1b155a8031f9fde8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.4.25258.110/dotnet-hosting-10.0.0-preview.4.25258.110-win.exe", - "hash": "2b4084f7a291f67d0c73fab697a26d25afef3ba3ceadb14292096743e77f07d7663d20703485c3097ef2bf86f89f855f69c6c75377f87545db525a44037a8b3a", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.4.25258.110", - "version-display": "10.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-arm64.exe", - "hash": "c23d2116db598a7d06248f55b7550ecdea4e7762bdc68fd73036b1e93935646dae81ddfc4ecf56da38a01c8e38aa3b9f8f96f4e7f30861d1c8c00660fabd79f8" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-arm64.zip", - "hash": "390163e50818cdbb4699c2834c56e230935e3dc160c4976c2676cc97d1ab9f62cd35f6e5f2ff466241cb37a0d8e68143ef3c753b18c8c4341c73aa99e6c598bf" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-x64.exe", - "hash": "4a5fbb9ca28733487eeffb64d8e83c9cca20a76d7f443c46a9cb36fb21c58f66a8effca936435b60ef834f647c197aeaf5ae5aefcc406b51c0ae2c31be902012" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-x64.zip", - "hash": "03b37d335cb34c455c317499e29c39d571929e8d4e699fcef371f4c30c7617ccd28621225f171614fb5ff4370988f46f00ea244501e7d38335d4ff22258f0263" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-x86.exe", - "hash": "566fc2a08954d4dcac7b5c79f23fe40242c84d4b56da5af2ba7147cfcda54991634b26b59c2c6cdc6a5ce095b80d51166ad820ca1c7cfb198438fc64050527ea" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.4.25258.110/windowsdesktop-runtime-10.0.0-preview.4.25258.110-win-x86.zip", - "hash": "a5c6b2684079c33ee13bdbd331d8e4e56c0aa80be685f88181f7c1408a5be4eab4339b824bb319166079c563e90ca976fb10f698434e30883716f04749b54ee7" - } - ] - } - }, - { - "release-date": "2025-04-10", - "release-version": "10.0.0-preview.3", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview3/10.0.0-preview.3.md", - "runtime": { - "version": "10.0.0-preview.3.25171.5", - "version-display": "10.0.0-preview.3", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-arm.tar.gz", - "hash": "c28b6d9d293ed96c5306ccf38f854763d1a9888247b8e824cbd4cab91948333f5150fa303d283074c23a4d5c14ea851b0aeb9ca011c211ecbafb7d7e122ab080" - }, - { - "name": "dotnet-apphost-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-arm64.tar.gz", - "hash": "68e5f33442ed13528d57802763d75f15b2f93462645192aff609670edc6529d2f550f6235346292835ac3f7624af1bc5c713808151baae4055d8f5c13c106420" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-arm64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-bionic-arm64.tar.gz", - "hash": "a2d49acdeffe3a39795ab5e672e1f5103758349b373f76afac65cc271889dfd81f3e0d0b9ffa49b7ec8ecc829ce07d36612f80bdbe85b0bbaf4a5ea4188f92d4" - }, - { - "name": "dotnet-apphost-pack-linux-bionic-x64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-bionic-x64.tar.gz", - "hash": "d6f0518537bdec561aa332b136ead3240f8b066a41152f50057bbcecf3e298d897058db6da55f56638a4876aa59472c63e8d1b8dbe3a1dc47c547d12fa794644" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-musl-arm.tar.gz", - "hash": "d84f7ef0a2f87ac281523d1cc0fb3d8d504c1d24cfeb8d1d0778695bb7197e3769975bcf4980c99d01154242f89b603584ce10e39677c8c8378311802c093914" - }, - { - "name": "dotnet-apphost-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-musl-arm64.tar.gz", - "hash": "cd5298d10162b00881bcd0568440161296a6c9e08a0320707959df70c5d0372585e9c3ffd1ff56b922d04bc0db47ac657daf72ada2e5adaac79e3dee6605b26b" - }, - { - "name": "dotnet-apphost-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-musl-x64.tar.gz", - "hash": "b6b354f292e85c2d99e2aa0ee1c8b2e35973e3f76a921c57a839c04c0e44d9c31a21ed0e735ee5918d398494bb8752da4a0e3e4aa29817af87ce207ca55767a8" - }, - { - "name": "dotnet-apphost-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-linux-x64.tar.gz", - "hash": "b997a1b0c0ac1445e1d61b02a010d5bc8525ad298bb6f0c85cfa4c578387596364ef7d8151f5736cbec20f0b25bfa52cd55391c0e01055715d6f23f6b2d7331b" - }, - { - "name": "dotnet-apphost-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-osx-arm64.tar.gz", - "hash": "0aee07fc58bc2a9bd640e9a438b3c9adf28372a0b396dc73049e34d0f03a8c0e26cb7eab6058a5508edfa7200ed7853c543ce51cce78a8cb1ad8ecb5d7ed3feb" - }, - { - "name": "dotnet-apphost-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-osx-x64.tar.gz", - "hash": "37a9126f23f194b891e86d273c01ce247b87250e387bd245397fe4dde6dcf59c5b3fec7516017de3b1efdeb75c84080133526e4657dc57768622afa72f5c895d" - }, - { - "name": "dotnet-apphost-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-win-arm64.zip", - "hash": "fecd488d5b2b551db07100fb442055c4c7c82b1fe71f6801201f805c5d8978e081dc8507aa4a52701c77e98e43ffd345ce43454782998f06ca5c0807c2c9ec94" - }, - { - "name": "dotnet-apphost-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-win-x64.zip", - "hash": "6e817d1967e007ba1dc63358344686316509218983328e03a095b0d6a0112d269097b23043dc5867e28ce961574070459382e4204fc106b158ed18ab4c3e2d11" - }, - { - "name": "dotnet-apphost-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-apphost-pack-10.0.0-preview.3.25171.5-win-x86.zip", - "hash": "bdb648e9b2f409cf41151da07619f30812853361c85f23dd9ac1de03616457f6bb0eb9b952bf6fbc220844eaade1fc0331cfa93f2f36e1f2bce89c41ab8c07e1" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-arm.tar.gz", - "hash": "8e690259454a540c0c16258bed659c0a26640d2a4f4ba7e194e2807e4597e267564fc0c9b7892805a4fa8e010219de3d2229a1026e08189f0f1eca059a3a9ee6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-arm64.tar.gz", - "hash": "a6a59432c12ac1964957ca09f78e15e0b2d6435d9b70ba13b6bc23ec99c9523e81e23297fe28297fa723caff4a5d2159a0cab50470de623e8172245d4343f1f6" - }, - { - "name": "dotnet-runtime-linux-bionic-arm64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-bionic-arm64.tar.gz", - "hash": "4da2db5a27f28ced921edf9f9bbb7a5bb99553c9e6dd81cf49ef32e1e153fc91fc038eae19bcc8ed604ec82e6e41e38019ef8c585b8da9be4b54b545db53a1cd" - }, - { - "name": "dotnet-runtime-linux-bionic-x64.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-bionic-x64.tar.gz", - "hash": "7cb67ef172548f403e75258881c8feea10382cb028d0255d14c252102152f4a48c75ee60b37794f444bd1ea3a8dac7b9008392bbcce8b92a0070b7ea4a71075f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-musl-arm.tar.gz", - "hash": "978895a7639f0c1b0860eb3c293226553e4eaeea5ba7039aa5df0eb57284657a2255e601c65a40e25d5248383884b05cd401d3472cf60934a65726007cc1de4a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-musl-arm64.tar.gz", - "hash": "7532ab4d168ad7ca86fdca46db3f9447b9ece86688fdc011d4597e4a68aedaa4b3af0079c2f92f4ab2a546e7ab6ecf525dc69ef4c11d032c84c29738c7a62ada" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-musl-x64.tar.gz", - "hash": "26914a60143fa394d1f238d4da335ae5869696899b31da9b1f537df96e2f4b1862cdab11ea2e550dae9a19817ee3679aaa0e4db9656cebe5143b8513090dfee7" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-linux-x64.tar.gz", - "hash": "4e9bd2bdd54124c95dd62bcf96a5feea095617d73f132cfcc8332d15a9a8366c03bfe55d02e7409ea8ee3d35da1eb0e98390b9ec3fc86e928c6706c535fe67fa" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-osx-arm64.pkg", - "hash": "c1f2f39a11e672cf962162523f3c60ebe0426542a310b0a901ca63d990f82406d78d107b32b2fb54f9762bd6381f4a19c55dfeda1c6bb94d55a37e8317850a51" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-osx-arm64.tar.gz", - "hash": "cc02fd234c012c863d8725d88b6d302b214fb98d0171572915aa6dfe324881340f77b71cc81b53fc062d2893675bb399771bae05dd2d10f544aa2fa9d691e441" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-osx-x64.pkg", - "hash": "ed67fff1cf144bee3640007d3eef1afc69e7231847cf2cb519417615687540f6435dd9fee893088278fb371d06acf1e62f115a98c091c17d3235cafc1af4f669" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-osx-x64.tar.gz", - "hash": "8a9e97bb551ba3a2493043db6d55faa29c0756d8f5e1a8960617941d01941a8eb3297bda3ae0165c586569c51f2adda01d5009559900f50cbd4b9e59eeeda327" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-arm64.exe", - "hash": "4acb5933fb71ea8efc0dbbdeb2b645f9a5fc05f78a7b4c79918aae01be8e45cdcb656b72d84606de505b805fe3bfe5029801b80b2c5adb8d77e86053e56dfbfc" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-arm64.zip", - "hash": "1a537b66cdb3eccdc22dea97da2672417059cf6246d473c717df5a434521bcf2c2291bec323649fe1979fdb00c4a2790dbbd8495efcd7cdb0037fe7ed8e8dd89" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-x64.exe", - "hash": "ba6808a34f8808ad7e85eb41d9ff29dbc2677656b5c5211ee48eb9ded2036d37a567a2332e1e1938c57063c804150a81e1e1630fa579702a6cd98b2f507484fb" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-x64.zip", - "hash": "586e24e04ada25753dad5bea6f9302771ffb08d6a0d8be998b68ab66a28d665b6fa82c2935c4a50e9030e6baff6ba052ac43144e93c720e64cec852de125c89b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-x86.exe", - "hash": "a7f493398cdeafa10d30e46843fcc7aae18af426b832c07e3ef7e70703e1c0fc390d83788f964f2efab7a7eff1a8d3c75b17be68729f0e8d9bab171284be45f7" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.3.25171.5/dotnet-runtime-10.0.0-preview.3.25171.5-win-x86.zip", - "hash": "d0e832bd8a2f40c430bb11b78ab3b96af607787db28ed5a847455acc732091627f350bcea7da0b8367befebaef5d8f00e8e3945216a9f7aadddffd33c55af3dd" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.3.25201.16", - "version-display": "10.0.100-preview.3", - "runtime-version": "10.0.0-preview.3.25171.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-arm.tar.gz", - "hash": "9409d8a906bae261b22f272cc80a1b41b8be7726437708815944e232396f0f889b874df37b3c28e6158002d2ae578f36c808d7670622a9f5cb9242df66fffc5c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-arm64.tar.gz", - "hash": "9e1f7ddd98d468f937b74469397b1fc1238c4174b94dc5a78e61c6984359f594dcfd0c248e502ebda165ec6100198ebb797b1da08be47320ce926612318b65ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-arm.tar.gz", - "hash": "a7ababbe1bd3d4b8534199f872357ceb2f5f0a7da1f4bff9a929ba799f8c8e6b0018048524e8c760cd4a15d8f99972e993b5e728592602040a905f06884efd44" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-arm64.tar.gz", - "hash": "9057e97006f99e4fff1cc0a688443c469cfc25739aaeb752d8be5aea6b494eb49419d954339d58380e89fcb5628a424f967cdc6112b8d14357dca07f9f160d5f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-x64.tar.gz", - "hash": "5443a2e09eaccf29d0dc92330a4899140627a7901e79d13d76b9d5d249a96137552831236d214932cd3c6ac56bc437fabe7b173029661fb5d061064a06e5671e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-x64.tar.gz", - "hash": "aaad778cc80f5e5f023cbdab47af67703214a7a1900d12782f5d956f8623de1bd3801026727fbb5ecf84fbc885185daad92832b47da3b6514a45aa56fa971156" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-arm64.pkg", - "hash": "accdc73b5f4649fd03ae49e15dcad39cc0740fb27f0f6ca8df6d1d9d01b0398e33f09188cb0f9ecd17389b6b63db4b03eb82f42faf0f2567cb045c189d62dabb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-arm64.tar.gz", - "hash": "b38a6ef7c6568ea5e2fd6cbd893a8e05dd158e5f21a4245b39b22bee0231033869c6c2bf576c76260c9fa633a1f0ef1d88b3e5e9cd1cf879b5ea45e9aa6600dc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-x64.pkg", - "hash": "3954f8b9da6d61b04d23d8ac004ba6312a5688dafacb760fa9423a923946c4d52c4b26f08a6b5d8e28bc9f70d8c6fc9e736b129179a6a7b0e9f48ecbc351ffaa" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-x64.tar.gz", - "hash": "6a9c6634176027252fbd6cc3ddd10a5eeb1e40268f58aa725ec50ea94ef87362bfb154ff1f12584792b1f956710ff8070421d9f86a4638d2b392ef09910a5944" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-arm64.exe", - "hash": "92bed682016c91ac75b4f9cc4f6a1e48bc93b7b5abbf8b6af9c3fbb4fb166ee86c0ac3ac4dfdc7f707ef62000ecffcbd77fd13dfccd2a8567465b73b3fbc7a2a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-arm64.zip", - "hash": "17889797c279519c3e98c909c2dc6952bcd15c1a7c5c2d915d87e1c8b544319262ddf7acaf80f71833f8371b8ad58b3eeaf3a32a3815fae1897585eea1154c06" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x64.exe", - "hash": "848a3355da9555293964e15d0d08d11964106dededb9dd5356d899e235c325a0322d16526addd40f45badaf49997f51de874a3d6a15da9a3ff07c8cbe746c342" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x64.zip", - "hash": "fb45e1d0cc4ceab81da28ef70543bae460cd85a37eab4ec3301dccbf7a0bdec7e29bed3cc533ee466fa8c978f2f4215fdddedde8b0da3113ae1af51e1d27417e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x86.exe", - "hash": "11255c0fc31648bfb2cceff3c590e974159f3603316cb79163fdc08d74abe6fd4c269160176c1fd7dec4aa52304d447bd618af880880eed804e4e6d920767bf5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x86.zip", - "hash": "1df2edfb8a4ed469ae34c16c3d5552e51077205149474817d7b6764c8a17f53684f08cfec19d1687d7d061b204fe5fcb2098728a9e2656abdead67222196a7c7" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.3.25201.16", - "version-display": "10.0.100-preview.3", - "runtime-version": "10.0.0-preview.3.25171.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-arm.tar.gz", - "hash": "9409d8a906bae261b22f272cc80a1b41b8be7726437708815944e232396f0f889b874df37b3c28e6158002d2ae578f36c808d7670622a9f5cb9242df66fffc5c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-arm64.tar.gz", - "hash": "9e1f7ddd98d468f937b74469397b1fc1238c4174b94dc5a78e61c6984359f594dcfd0c248e502ebda165ec6100198ebb797b1da08be47320ce926612318b65ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-arm.tar.gz", - "hash": "a7ababbe1bd3d4b8534199f872357ceb2f5f0a7da1f4bff9a929ba799f8c8e6b0018048524e8c760cd4a15d8f99972e993b5e728592602040a905f06884efd44" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-arm64.tar.gz", - "hash": "9057e97006f99e4fff1cc0a688443c469cfc25739aaeb752d8be5aea6b494eb49419d954339d58380e89fcb5628a424f967cdc6112b8d14357dca07f9f160d5f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-musl-x64.tar.gz", - "hash": "5443a2e09eaccf29d0dc92330a4899140627a7901e79d13d76b9d5d249a96137552831236d214932cd3c6ac56bc437fabe7b173029661fb5d061064a06e5671e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-linux-x64.tar.gz", - "hash": "aaad778cc80f5e5f023cbdab47af67703214a7a1900d12782f5d956f8623de1bd3801026727fbb5ecf84fbc885185daad92832b47da3b6514a45aa56fa971156" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-arm64.pkg", - "hash": "accdc73b5f4649fd03ae49e15dcad39cc0740fb27f0f6ca8df6d1d9d01b0398e33f09188cb0f9ecd17389b6b63db4b03eb82f42faf0f2567cb045c189d62dabb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-arm64.tar.gz", - "hash": "b38a6ef7c6568ea5e2fd6cbd893a8e05dd158e5f21a4245b39b22bee0231033869c6c2bf576c76260c9fa633a1f0ef1d88b3e5e9cd1cf879b5ea45e9aa6600dc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-x64.pkg", - "hash": "3954f8b9da6d61b04d23d8ac004ba6312a5688dafacb760fa9423a923946c4d52c4b26f08a6b5d8e28bc9f70d8c6fc9e736b129179a6a7b0e9f48ecbc351ffaa" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-osx-x64.tar.gz", - "hash": "6a9c6634176027252fbd6cc3ddd10a5eeb1e40268f58aa725ec50ea94ef87362bfb154ff1f12584792b1f956710ff8070421d9f86a4638d2b392ef09910a5944" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-arm64.exe", - "hash": "92bed682016c91ac75b4f9cc4f6a1e48bc93b7b5abbf8b6af9c3fbb4fb166ee86c0ac3ac4dfdc7f707ef62000ecffcbd77fd13dfccd2a8567465b73b3fbc7a2a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-arm64.zip", - "hash": "17889797c279519c3e98c909c2dc6952bcd15c1a7c5c2d915d87e1c8b544319262ddf7acaf80f71833f8371b8ad58b3eeaf3a32a3815fae1897585eea1154c06" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x64.exe", - "hash": "848a3355da9555293964e15d0d08d11964106dededb9dd5356d899e235c325a0322d16526addd40f45badaf49997f51de874a3d6a15da9a3ff07c8cbe746c342" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x64.zip", - "hash": "fb45e1d0cc4ceab81da28ef70543bae460cd85a37eab4ec3301dccbf7a0bdec7e29bed3cc533ee466fa8c978f2f4215fdddedde8b0da3113ae1af51e1d27417e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x86.exe", - "hash": "11255c0fc31648bfb2cceff3c590e974159f3603316cb79163fdc08d74abe6fd4c269160176c1fd7dec4aa52304d447bd618af880880eed804e4e6d920767bf5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.3.25201.16/dotnet-sdk-10.0.100-preview.3.25201.16-win-x86.zip", - "hash": "1df2edfb8a4ed469ae34c16c3d5552e51077205149474817d7b6764c8a17f53684f08cfec19d1687d7d061b204fe5fcb2098728a9e2656abdead67222196a7c7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.3.25172.1", - "version-display": "10.0.0-preview.3", - "version-aspnetcoremodule": ["20.0.25082.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-arm.tar.gz", - "hash": "f9c3a4655924604e4e4ed4365333d09442ac1135ca195e0f82374999159f4e67d0b3ef07edb60d87a4d2f1dfa2e0b1df4e49fc79f9dd248677aea9db623d9144" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-arm64.tar.gz", - "hash": "48568aa8a3fd431a6775c90f26754136c87b89dea9e07b304101bd8c6dc4961f1436fa5a0316f7e9535198a978636caf7425f9b7aae003b53a95a1e14a01b450" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-musl-arm.tar.gz", - "hash": "f1b06e651590ba866dc312da08a85b4b3e4c8d71a1dce9d5719e1e86f5d7ad646913dead9552d74eeedd7cb70a349d10fd54c77dbc9ad09b34327f739fc45092" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-musl-arm64.tar.gz", - "hash": "8decf0ecf5dab0c1d09832c3419c08cb6ba027fc1713f0a17ab7a61b89369867dafabaf1704340e0db81753b65aa63e131b75969fe7d7ee58e01c8854c6cba6b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-musl-x64.tar.gz", - "hash": "6fc6432cda03745448e4152c06d737bd8bfa4356e2b38a0b48619f2b6ff75ff1d1f66f72449c643224ca7f04c505efe1af35e0e66dd311e5edfb34ac6599e58d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-linux-x64.tar.gz", - "hash": "592e78f23d0eeec3fe21d3885d6b4b2ce65538e6a987d9d4094dd5acfc98351eaa8441845d53bc0cdc1d49f3b4c1e6a93a0ddacd44bd5c7f50a01eeae76247f4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-osx-arm64.tar.gz", - "hash": "23fe9a7fe626ee9f0acdf64842fbb6bcdf81d6b4ef97037bc12de3cdf6a6ae7fdd218373487ce185b83fb9af5146188b1368d5eee82bdf59b089908c7b032ad2" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-osx-x64.tar.gz", - "hash": "ca5680ec83add53dd9c261d3b4a9aa3a2353a168889aff6216300ea76b760bd4246058a2ba28f562aa822302f4c522c7c5b4b1499e13eb1851d9dd1566f3977b" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-arm64.exe", - "hash": "ec8765b4d545c6dc52348895d362ba9be6db83e4f1d2da836e7c4fe02a7cc8a0f0901ab2437b322cf5ce5947d1fd975ee76357a1a9ec7e9c82610e14ce9ba4b9" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-arm64.zip", - "hash": "fe23d4b8ad4e58fe8ef4785bf1f73d91deb72ed31db094cb30a588f3d3fde2525d05ef024ee220422e0835710e917a020b0e87232bf4fd75334e67b0c555bad5" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-x64.exe", - "hash": "ac51127107942feba162a0ff14efb19a39be744028beb83aca2b1fdf7c25bac77586a06bb57b10a6a124923e8df5465953edc84262bf52feaf101a1b05b7b4e9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-x64.zip", - "hash": "0bcda427a08422bda3d0331b99742fd076abee2e22c994dcd4b4a84534f3e6080dbb63a69b415b8a0a5681d34be38b80366addbf3a5446fc25faca9e2a88eb8e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-x86.exe", - "hash": "e510c6e419b5977290b2ca8462f411f18a20b7168388e6677401f6889041595123082e0a91bbeb9d8f02e5241f37b8955d783795f1b9baef745e3ab4c5a9de80" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-10.0.0-preview.3.25172.1-win-x86.zip", - "hash": "090cc1df01eac271750e2407eea6d8adb555ab1083527401282af69a86bc252a91c68cadad455b43fda9b306df146e8056cb25c5ea66b3e6f0e90408924e4a58" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-arm.tar.gz", - "hash": "27d233ea2fa4855880f8dc87a99b5123c4afef986904ca7827125c6e4e86c858f0bedaef82a78bcb8fb61b5015403d78bb649e371bff8b7830140973141a89aa" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-arm64.tar.gz", - "hash": "a0e24eec757d9bf02cd918bf48a5e5c8c8ae5afe10df153cc2f9373e24d552f7b4385ea825638ab348537903368e9a3832abe5df241384629e558d88ac8cf676" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-musl-arm.tar.gz", - "hash": "37319b3e7962a1e1092bf875feaf04d6f6c0fbda2f04e86c0add572883d70ab8a0b4284bb7255bfa08c1115303eee4f0cbcf9feca495775a1c1f9111e392f463" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-musl-arm64.tar.gz", - "hash": "ffa0fb15fd3a1c48c16501862d0891c2971cfe4861b0c09a1cbec86f44c3b703482b953102e44913991b6df5deece7960f27fa18cab4a2924f3d7887770f9e37" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-musl-x64.tar.gz", - "hash": "b0f26f74125cc91e7612de53d41c6b845fb3a10c261eb9e717d20e267fc0332ebdb77be7c592d15b34ffa623b5c5622263d4ab81460a547dc9a602baa4f49832" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-linux-x64.tar.gz", - "hash": "55cca3c587e789137305ed3d6aed34915b53ba4d36000f1e5368e85ad2250d3b206db9c979bfb01b244baf9da85f3fc325a7cb5ce8905250299cbdddbcddea21" - }, - { - "name": "aspnetcore-runtime-composite-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-osx-arm64.tar.gz", - "hash": "317cc1cc61e65b009c8143baec0844a679509b32fbf13715faed4142c52aa1ca80c334f48aa1aefe86b461252265f648a766e872b11243eb24b248973206bea6" - }, - { - "name": "aspnetcore-runtime-composite-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-osx-x64.tar.gz", - "hash": "d5851f026d61dac87626de5246c0fc9114a84f2a4cc75a9211d6d74e4c4918ce1cd39bc91c182a3499d4c9cab994a680708d4273d149881ee70045a92ac76e21" - }, - { - "name": "aspnetcore-runtime-composite-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-win-arm64.zip", - "hash": "a2b61b0fc31800e6eab96b78c74d9e60bdb5128a3639523905b97686f59491be0db44a514bb8113c7b9be91220470720e9443c179040952a29ca18f74e39c1f8" - }, - { - "name": "aspnetcore-runtime-composite-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-win-x64.zip", - "hash": "7d77304e8e99f929c4e5661f240210b41b196bbde71a829f7b7d4e5ee25676d7c63891deb56ae5405580ae81ac763e259a4ae9d77c3b5518d865d65e3e7a5b20" - }, - { - "name": "aspnetcore-runtime-composite-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-runtime-composite-10.0.0-preview.3.25172.1-win-x86.zip", - "hash": "bb6b940b7a70100557c5861b70085cdb661d4fde03ad7339ced37279fc2d0178c542d8463d22abcf119cc77334203911ad7f89cb79a71d98f1491c56555f97af" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-arm.tar.gz", - "hash": "c72bee489cf35bb776a74db282700a994a76575847e1c475707e331c9e0941ccd1b55dfeac8dc7d63b699b82118564113cf8a7dff2ad2227b1bbb9f5b7d2d2ba" - }, - { - "name": "aspnetcore-targeting-pack-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-arm64.tar.gz", - "hash": "1166181c34da505b02d7d1242c0dfe3198c427b73c119b63f5a3fb408bfbd0a2e1b996cd6f0be4cb1104992bd84c1ec777913990c8f07277a204d60c0734160c" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-musl-arm.tar.gz", - "hash": "48ec5076dd9d22c3d52a638109fb85c35f1de0f2e215d63c72a628dbc0c816ba9567079afbc599ba812b0e541920d158717e94333c5b0c54bb8d2ced89d292e3" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-musl-arm64.tar.gz", - "hash": "88eb1a8dd59bc92664508f2515bb73d922274efbd11f0e6ef71578ab135728453dc2ba8259f70c077683aa7a5e3475d94e86d1b2ea1c8c6520c97eec4890a02c" - }, - { - "name": "aspnetcore-targeting-pack-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-musl-x64.tar.gz", - "hash": "2854fc7fb51edfd9896dfaed0fae9a86fcf0310554cc36167eb614ab0d7d90abb7df9d9704863eb0be234d53db7b02793a50c11adc181e013c819be4e5aef5a6" - }, - { - "name": "aspnetcore-targeting-pack-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-linux-x64.tar.gz", - "hash": "237f27e22d5ec4dc923fc5bccac326f03c680174a53e365aa3fb6f63f3993cdc6ec70236e8559a3696393db0dc1459047c669a16090d27b0be83a3c0f6718c13" - }, - { - "name": "aspnetcore-targeting-pack-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-osx-arm64.tar.gz", - "hash": "6c431c18714cf4bf00b6560eae2b4f58f65fc1f1d1feb20a119b66481346e815c463274fbfe22577c55683e87364eeefa816bb6a9963215ad87f917caba3d5e7" - }, - { - "name": "aspnetcore-targeting-pack-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-osx-x64.tar.gz", - "hash": "ae48cce52954ef14f3117de041080adc16985638ddd2d7aac6c135b30717425d10b5ec43f7b4cc189c8aca00f1d16109f10af7c66628324e830ddd0cfc8b088b" - }, - { - "name": "aspnetcore-targeting-pack-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-win-arm64.zip", - "hash": "5bd2ec084c22c5d9d793805fe4150de91e57cd9e54dcb399f7cce004888f3126c2d994eb5e5ba577fb4af837a122ab2d065fed82c717b660832257a3eef32e53" - }, - { - "name": "aspnetcore-targeting-pack-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-win-x64.zip", - "hash": "833288807dee18f8fa41a04906007212e83ed3a33c44ce386abc8b1009772c0ac7a429d6750160b67017d357f9ac331144f5cc8e2cb422a9096ccd14d2c2fe13" - }, - { - "name": "aspnetcore-targeting-pack-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/aspnetcore-targeting-pack-10.0.0-preview.3.25172.1-win-x86.zip", - "hash": "3fb64cb2c399a5bc9a1874932b685217fb0320282779183bf3e0274d3316e16fa0ffe0c0309773e80b817338f058baa51d1353d98be5400c0cae6bcff4da82b6" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.3.25172.1/dotnet-hosting-10.0.0-preview.3.25172.1-win.exe", - "hash": "08aa4c6bf1e014a6d6140b1e51c2ef3a444a87f0bb669d10f3438604b9d7a7d7fb56db5befc8c4a29edf90e1cbeb39e62fe272d99316350ca49cea4f1fcd8796", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.3.25174.1", - "version-display": "10.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-arm64.exe", - "hash": "7420fc8b532723d95277f97676800c6fabbe27ec674c8593c87cddbefcb39fe76561631839d0623774ddb7bed5b75eca06d2d6fd01124d996a519964d1825512" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-arm64.zip", - "hash": "9e8aa5501715957f21995153780b737c9b3e48ff619328ec63383658c9040f000a89ce70054a5b6d5d892dc7331cff45758411905266b96be6e7ea1a845e01ba" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-x64.exe", - "hash": "535a275a0b9aa19bac39dcc4d463fe6c66ad7b1b9e2a002eef3999526c7cb03b6d6308093342f6b7ebf0dd5a91f75ae90e79f2a78825180e5f3c7763f23267a0" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-x64.zip", - "hash": "81ff1f3343fbee94713ca123882a968562948b6a7bacfba843ee0764a00967f73d17e64e326176e68e608037a9e4d60ee7f2bf7f0c87321294ac166f13fa3d3e" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-x86.exe", - "hash": "fd267202f3de8dacdd0b789c80e5300132030ef058cd7b22b4b7e24e1388c3eb607479cb4c24ccd86c724e5fc96d4466251fde53233aa4d5c88348f74c861a3d" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.3.25174.1/windowsdesktop-runtime-10.0.0-preview.3.25174.1-win-x86.zip", - "hash": "26f4f66b6d479718e50a9dbe2ef2ec00f21187c6949687d3b4e2837107a5ec98b4b269d5ded0c8f7e69401b900cf0a4097bed80b0c96854e2fd4e684ff0a3419" - } - ] - } - }, - { - "release-date": "2025-03-18", - "release-version": "10.0.0-preview.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview2/10.0.0-preview.2.md", - "runtime": { - "version": "10.0.0-preview.2.25163.2", - "version-display": "10.0.0-preview.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-arm.tar.gz", - "hash": "fe8af0c9ac3d39e559155950cecbfa27450521f8e5faa446438de3dcc8c4bf51fb135323cac3ba5bb045fc13423776ae66ae4ed9d6a0df331e959a0ed34179a4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-arm64.tar.gz", - "hash": "05ca5a0212600fa2c79c3526c673822d79ed8965e513263eea904f2d09fcdf423058321961bc930fdb90814ee41ef42545a3b27c081cc9731ee4602c514879c5" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-musl-arm.tar.gz", - "hash": "1298d446e8cb27768dbdd512576cdd6526dad29a7676ee748bc92fa64430760cdbe817ca6c62c4872ab2008b845580d4709571a59c6c3f332650acaee8643546" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-musl-arm64.tar.gz", - "hash": "63cc61a5bd53b1327fd67d57b04841c0a8e7950b5d531fc7890352e56aa2a09b083a808cc8b9be1afd424264371d51fc3329791fdc0479888ceefadda52e2723" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-musl-x64.tar.gz", - "hash": "d91bfb5839b30377d09849511c8668230be51fae0d05e07d761297da40c994d800de5ce6fc5f7307cbdf5cf6e7fa7dd720ecab8354ec9436c662cd4fe14851dd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-linux-x64.tar.gz", - "hash": "a64cccc9809fa5b2f4ccb178964bffa92b849c43dd2b2c3981d753e73f2b05a2b6e189a8c2a50fc67652badf66963313444c08ea22e4cd18fe8797049571341e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-osx-arm64.pkg", - "hash": "d3493cefce4b9c7157fc2da2cdb6aab8d29510b37d3ebee06ce92eee42b8ed0d899b88c8b4590141aa5e061f2365073cb084b26ff073ba1a42d2d38dc09d0368" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-osx-arm64.tar.gz", - "hash": "349b2a9f34dfcd1ab819484ee09cc32ef61c31629a9520256d643916e4bd5d1384f3cbaf8d0316bde8c90cd8eeac61a170cc486be3960b9512ac79e567ee54b5" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-osx-x64.pkg", - "hash": "7dddafcbfae1b6e54e63ee1d3bc5879631fb86fd2d8bcd8d2b5389ce1326c9caa10393d7e5002039faf20099d6c10d9fe1f10c9aeba8e7e06db8269d23890a2b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-osx-x64.tar.gz", - "hash": "a398deecaf401781cadec919f4876aa914d93c38f081a9c1f1b850e2ebfe4952919f90abd723d8faa5cf37a149b281e391742ba8e73613e2b1e4276755d8d81e" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-arm64.exe", - "hash": "63f9ff8aea8a268a831fc05de6442bf504186b469f24cbd488e4613971f5311d6426e10bc1b67aef5c907261e38c8ef244ab76eeec0c643048a9bd1ed74fbace" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-arm64.zip", - "hash": "fe0f3c1e53ae995d01d6985760b0e519faf7b55b944508a87a1a5d4498517c7e502a2591b36b0aeec91b8c836ddce4fa5479c98ab9a536505bfc2048febdc028" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-x64.exe", - "hash": "f17c15095f3b630fd63d4de390ddd0afcd5629ce7a0629f64cbfede0de9f37433ec435a2b99a26038113a3c5916c3958178886ce21010ad75e4900457c8d7a67" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-x64.zip", - "hash": "db4f2e6cbf3729461a1232f4f9ffe625c177691082fc06707d12da1fd72e5b1bbf4516bd31fd675ee4eeaeac01bce42030ecc97edf12e36ad721c60ec31f06ad" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-x86.exe", - "hash": "9efc3b62710e35fb2bdf9928d5ca98800eeeb7b5d393b14def887914687e18e4920d95caa2f02340b73c75afd6b76a7867942a0d2c8135201ea67b37ddde5ef5" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.2.25163.2/dotnet-runtime-10.0.0-preview.2.25163.2-win-x86.zip", - "hash": "bfdb644c6cdf29e5cec6da558264dc9956c246161ede16922747dc4e42b18b45bf8c5d474ed01155d67cdbf21096a4b339c5561f90e3ba98a8f15052ee95683c" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.2.25164.34", - "version-display": "10.0.100-preview.2", - "runtime-version": "10.0.0-preview.2.25163.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-arm.tar.gz", - "hash": "084168b2296a549fcba190d69cd565cc48efa5ea30cbfe61b5bed9e415acae43a416b53dd8e5bf16a598beeed1b0ba96dbb7bc554a2e0e2ce00c7634a1a5a1f0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-arm64.tar.gz", - "hash": "0491381366f50d6a2211f925f5c5b2e1364f3b3a45076c706dacd3afa6856dd95efb6bacccc8874718bde37439e77614ff2bfd580c3c2e97737d42db311db5e6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-arm.tar.gz", - "hash": "82cfc7fa9a6491e6258adf33eb81b0bcb1b69f5960d631bfbd1e9cb59e0b5550c2ffd2620461e46430d1215b8cca097a67ac215e0f7a9c965800d307a5bb8d70" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-arm64.tar.gz", - "hash": "c1419b713d5511835ffe6e61effe1782af5a8429fabd517d3d840d219752265681cb1a7a15a1f06b6c5a890dd50e7461b3b0eeea0a24d5c2066bfaf3d52eec42" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-x64.tar.gz", - "hash": "789876535ef56669dbfe6391378fcf40dc2b8f4adf137bddb8b358a23403ecafe5bdbcbb0c7715cfb0d26ed061adb20520ad1ab12505f964dc808b2b102f6594" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-x64.tar.gz", - "hash": "664e5618827c4f9e5d5150cd7ed7f8c4044f85ae7be8dc779a8d8634dcc962b59e7317a9533e57b2683334b1304f7b66e59b5e68e1a501147ac14e1f22f46bc4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-arm64.pkg", - "hash": "f65538d7b650de4670cef8ab0f7fa3c7775782686ee174589f98e78296bb1c0adfac7ba3cbf700a75db36af8143bf250c21e9cbdeb9968ff0ccc7f894e4b6a73" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-arm64.tar.gz", - "hash": "55ec928ac50b0b34783871a7d8662aadbf9443cb9217b905fc447e6b46de179a6222bfdfc25a6bdd3e80bb8227bcddf088b41e61d5a5d1e6ab931fc8237d5a8d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-x64.pkg", - "hash": "2f516e1dda0cd9f4ebb90fe0f3b2f30751d130252b6927a1178275a81008b00c870c6f48d978886d82fcfb1246f8e2184672669f4a93db18061037f3493c8b08" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-x64.tar.gz", - "hash": "cc573dc0f9d84620f0c90dd74f0538e797a597daed2365c2f311a162b0fbd92d031a697c89c806adba8ac223c3e3f3719de6d2243ea044646c62cbb8ba182873" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-arm64.exe", - "hash": "ecbf9153c56c8bbdccad88a86a8de578ba0a12a17b28c1e40c0b13a5ef673dae292629b98625dc8ffa8c1856829525437b8972b3be4414e3115335b36c3c937c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-arm64.zip", - "hash": "bec80096e4d0d2fbc6e97317eddb9ce84582056b77767bf9cb771cec76039547141100bde33e7fccceb88fda56a32e810041f84ee7a17e7bc4cd92d215001bbb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x64.exe", - "hash": "e70b3967716954ddb6cd766d72604039465dbf9693fcafd260e6dcf5fddcdda0ec97a499c9450953861814340445b3f24c7ded879a869c1b7be61c8b69852c1c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x64.zip", - "hash": "a8aa6371149103c3fda2cb29972aa9343b2d6a3e3ecdbbb7e8b123c1aab1c9ed25f12408a59db3d7661316bb0f13261b1a353140f420e366bc61c5b7aaaabc1d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x86.exe", - "hash": "25fbc7a782ec0f8927f8d2475a497f46a3b61f4873cdce43356b6a934351c0d0e7370b2064a607106ae3071f505345db45996feb2b34efed18446b56f7abc8bc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x86.zip", - "hash": "70e416497327a7dcf478551d7fc12daa980750ff31f53770c4d89ca8efca086221c6dd441c31c14d0117f834750b6b15ed0c5380be4112597a645fa3d7a26a06" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.2.25164.34", - "version-display": "10.0.100-preview.2", - "runtime-version": "10.0.0-preview.2.25163.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-arm.tar.gz", - "hash": "084168b2296a549fcba190d69cd565cc48efa5ea30cbfe61b5bed9e415acae43a416b53dd8e5bf16a598beeed1b0ba96dbb7bc554a2e0e2ce00c7634a1a5a1f0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-arm64.tar.gz", - "hash": "0491381366f50d6a2211f925f5c5b2e1364f3b3a45076c706dacd3afa6856dd95efb6bacccc8874718bde37439e77614ff2bfd580c3c2e97737d42db311db5e6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-arm.tar.gz", - "hash": "82cfc7fa9a6491e6258adf33eb81b0bcb1b69f5960d631bfbd1e9cb59e0b5550c2ffd2620461e46430d1215b8cca097a67ac215e0f7a9c965800d307a5bb8d70" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-arm64.tar.gz", - "hash": "c1419b713d5511835ffe6e61effe1782af5a8429fabd517d3d840d219752265681cb1a7a15a1f06b6c5a890dd50e7461b3b0eeea0a24d5c2066bfaf3d52eec42" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-musl-x64.tar.gz", - "hash": "789876535ef56669dbfe6391378fcf40dc2b8f4adf137bddb8b358a23403ecafe5bdbcbb0c7715cfb0d26ed061adb20520ad1ab12505f964dc808b2b102f6594" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-linux-x64.tar.gz", - "hash": "664e5618827c4f9e5d5150cd7ed7f8c4044f85ae7be8dc779a8d8634dcc962b59e7317a9533e57b2683334b1304f7b66e59b5e68e1a501147ac14e1f22f46bc4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-arm64.pkg", - "hash": "f65538d7b650de4670cef8ab0f7fa3c7775782686ee174589f98e78296bb1c0adfac7ba3cbf700a75db36af8143bf250c21e9cbdeb9968ff0ccc7f894e4b6a73" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-arm64.tar.gz", - "hash": "55ec928ac50b0b34783871a7d8662aadbf9443cb9217b905fc447e6b46de179a6222bfdfc25a6bdd3e80bb8227bcddf088b41e61d5a5d1e6ab931fc8237d5a8d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-x64.pkg", - "hash": "2f516e1dda0cd9f4ebb90fe0f3b2f30751d130252b6927a1178275a81008b00c870c6f48d978886d82fcfb1246f8e2184672669f4a93db18061037f3493c8b08" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-osx-x64.tar.gz", - "hash": "cc573dc0f9d84620f0c90dd74f0538e797a597daed2365c2f311a162b0fbd92d031a697c89c806adba8ac223c3e3f3719de6d2243ea044646c62cbb8ba182873" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-arm64.exe", - "hash": "ecbf9153c56c8bbdccad88a86a8de578ba0a12a17b28c1e40c0b13a5ef673dae292629b98625dc8ffa8c1856829525437b8972b3be4414e3115335b36c3c937c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-arm64.zip", - "hash": "bec80096e4d0d2fbc6e97317eddb9ce84582056b77767bf9cb771cec76039547141100bde33e7fccceb88fda56a32e810041f84ee7a17e7bc4cd92d215001bbb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x64.exe", - "hash": "e70b3967716954ddb6cd766d72604039465dbf9693fcafd260e6dcf5fddcdda0ec97a499c9450953861814340445b3f24c7ded879a869c1b7be61c8b69852c1c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x64.zip", - "hash": "a8aa6371149103c3fda2cb29972aa9343b2d6a3e3ecdbbb7e8b123c1aab1c9ed25f12408a59db3d7661316bb0f13261b1a353140f420e366bc61c5b7aaaabc1d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x86.exe", - "hash": "25fbc7a782ec0f8927f8d2475a497f46a3b61f4873cdce43356b6a934351c0d0e7370b2064a607106ae3071f505345db45996feb2b34efed18446b56f7abc8bc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.2.25164.34/dotnet-sdk-10.0.100-preview.2.25164.34-win-x86.zip", - "hash": "70e416497327a7dcf478551d7fc12daa980750ff31f53770c4d89ca8efca086221c6dd441c31c14d0117f834750b6b15ed0c5380be4112597a645fa3d7a26a06" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.2.25164.1", - "version-display": "10.0.0-preview.2", - "version-aspnetcoremodule": ["20.0.25073.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-arm.tar.gz", - "hash": "ceebf19085159175e60004dba88e4698237c0708df5dd63b225177c70c91df6be110a46e9ee693001e27933050d8637cfc8b739d1e510d09dca562031c866ccc" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-arm64.tar.gz", - "hash": "2161e53f30413f27be9a81a7aedace12ad523d9e68b35d6a051e417701d238b1353569e227845aa76a9c889b7ecd1b5e7bafd3a678e2bf29438dae540e970d0a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-musl-arm.tar.gz", - "hash": "eb7ce0764cc88ba00bdc957b98b81105734da5964232996faeaa84e4f132b665c3177636a0a2794d2b7a01e37d963e92d59bbe6a6ee3717a01e8054d7440d48c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-musl-arm64.tar.gz", - "hash": "cdc179232b5688ef07993d7a78c5481f256f8cefe816fc913e38408fadec9b5f010a90628d6fd04d12e18ccc351b6252a566176154a111df6b6da14309aa0d41" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-musl-x64.tar.gz", - "hash": "793e3a3c49c221e8543850858b273f6f20dfd81cd831525f34d6be2a1cee5494bad210c73cc072d947c93fc820ff2ad709b0a22462bf3fe2c923319e00784d19" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-linux-x64.tar.gz", - "hash": "de14dab978133b9ec979d371c5fbd01e78b106cc330c168d6216ec8a97b0ccfeeb0d4f44386187499760db603483dc0016279dc4cb3f94bfb042cc63d25296fa" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-osx-arm64.tar.gz", - "hash": "9e4e6dc4aa1947fde24bd79f6e2d91c43dfe13307cc2037f83e8048dff795645db0439684e750dd6f9cec304899e5e7b2b5f4d961309345d0f6e32a84d00fb7e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-osx-x64.tar.gz", - "hash": "e8994167755eca3bb691f4314da6b702217d285ac58fa8740ecb657a9ae21478a341aae21174023910a784e2683e536df5458953c48cd881c651e22847be8b30" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-arm64.exe", - "hash": "e2fa4aa600bf718eb4eff165ada0496899314dbbfa89431e8390ee8fc6b2dc3b28dc6012e599f888aef8ec64a94603e9fc272890bbf7847d9d7cd530178b23aa" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-arm64.zip", - "hash": "76cf96e0604f211151cf28d432190e261e3d37b747c79ff7899a459016c6519aefca75545496ad0985e2b7ba796cf233eadb66e076c4f9b91e160fd153c6ec47" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-x64.exe", - "hash": "9868ad7ad3f9a9be4d0cf155c519be771001d79ce35afb2926657686e968ad9e81d06ef415f42fbdd48c593a282393eccf2bb56e60ebc8dc18d3e382b6208968" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-x64.zip", - "hash": "cc69e8227cbe6e231b0b30db1e236b3b559f267d5cbd3cdc7b68b670951ed5cd1f0957b8717c983e1eb2d5270c669e91abe5fcba787837828692737e0803ec17" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-x86.exe", - "hash": "9f3b6b5152733fdafd770a1c719c2a13de78963c24badafcc36c3fd9e742c46b79ed07fc0da8e6dc0cfa00e76b243545dd91521322a50236c3811075a1d7e866" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-10.0.0-preview.2.25164.1-win-x86.zip", - "hash": "3ea9d72807f9b8e4fff82f8fcb82ea508ad898a9b354ddedab4013f3d97cb9748dd2458540d043ebb4c181a66a4cf62aa9f8c73cf529cf8fe7e0a381d8e0cbc9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-arm.tar.gz", - "hash": "0bf0a4000ce39a0028243ee24edac150494762af0a9693d9d0c8d59fb9ae5a5112f64aa3a633cafed511ba8dd8a8ab14a46b1045fb32038014eb22637fd9c891" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-arm64.tar.gz", - "hash": "9ac02fe1e18d987abc7137fe061f76b852c47489705c4c57fd63e9245763d412ab243e724e090ae23d0a1e9cbc09ee92e97224ab73682c27e25538c470aa367e" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-musl-arm.tar.gz", - "hash": "1437e56479078514d0ad1b5b8459f19dd4f282939ebb546e0888f12fdba9a182c41b75e1a762377923edcefc968d315bec3c4201c34132348c895d1fabc2ce26" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-musl-arm64.tar.gz", - "hash": "c65448c47260671074782f6d4e4a9daf8db47233c9322647cbc1200f0d9167644e8d6a89a66333266010403537b45f7fc66ef9a7f61b9a4329fe8facea906d15" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-musl-x64.tar.gz", - "hash": "07d0cff245177cecd10c4548b0468589a2c45d27427bfe60a50772fb2766a51a322d383780cc7cf18e628e311a127fee49972fdcde5b6d65290bbf4e8a317046" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/aspnetcore-runtime-composite-10.0.0-preview.2.25164.1-linux-x64.tar.gz", - "hash": "d67bc54f97d832ad06fd18269ddad48126cc0eee66b7f924158289e23983a01f9f1e48e09bbbe54ebef9499feafccd4116daa27621f7a3df0021c80de99fd2b8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.2.25164.1/dotnet-hosting-10.0.0-preview.2.25164.1-win.exe", - "hash": "32c3ff68d5fd6e6f850ffe846edb16d94f15ecbe015ddcc76175b4907eef4982fc613744dda63e1365e93352fedc57372297228caa829cb75e5de7d5c6c368bf", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.2.25163.3", - "version-display": "10.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-arm64.exe", - "hash": "d9d635d79b5dcd7bb6deeec3b1b37d1b846b3f2d774479100b112a1458efbd6311466962851d10935cf085f6bad70da9bdf2a99efe4a59ef2eafd8f0fd4e16a8" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-arm64.zip", - "hash": "c037eb951cb2e5fdd49164bd2b53e574c5e2aa73654ce26b7c456e8b824f56be4003112197104f9092dd25d4b31a13af8d56855d3d7140e70b645edc735bae08" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-x64.exe", - "hash": "9300bb03f852c1a152cc01066331b3ec85da91eb1d7cd4cf326f5c30f13d4b94bec68bfc1e1f003478815dbac9837be0cc23fa78b471ae79e9ab318dbb39e4db" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-x64.zip", - "hash": "85a44e2dcfaad52582666e6e198aea68856a3c2f2982c0df008e457ce80f4abd1f34c3bfac9c6476e126247bd6a8f6a5085a9dd43db600b6c97bc9630f9cb432" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-x86.exe", - "hash": "797b3ced6cab54f5c52e5f610b9becaeebfb514821f4d2bfca01498790c9df9601a50fde0532f16dba3fcbb0f262a612e6c5a57a843e613c33b46b3b9a5f7b7a" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.2.25163.3/windowsdesktop-runtime-10.0.0-preview.2.25163.3-win-x86.zip", - "hash": "b0b795119c9a9ff1ff82651eba9e118d72adce2aea5ed7b39365b789ae4dcd97173fb52eb2df3e8917a3cf2fb0277581868d8f6e4776ea2f84c0a2f56c6aec5a" - } - ] - } - }, - { - "release-date": "2025-02-25", - "release-version": "10.0.0-preview.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/10.0/preview/preview1/10.0.0-preview.1.md", - "runtime": { - "version": "10.0.0-preview.1.25080.5", - "version-display": "10.0.0-preview.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-arm.tar.gz", - "hash": "8e91e965eace3ac1b472f8d9d2cba51537606cb0ae9b2245dde7f2f9d95f8660800cb609a7152b3efeb1e01663070c80454e6180890ccb81d6533fcc891d124e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-arm64.tar.gz", - "hash": "840d229fc19322093ed5a18c123b5a322e92cad26926bdb709ee382076864a9e89a4dd0ecc13e5e48542b1732ebd19ba65cad1c1b63b94268d38e78bbe6b6b75" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-musl-arm.tar.gz", - "hash": "b907d97484966266c26732fbb6141ebb914be822589fedad26add9680ad6e0dc7d0068507241c0fbae124a9f4a9571838080387e21de81833fc7399be1bdd688" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-musl-arm64.tar.gz", - "hash": "2cc3f7715ef6d9986db73376bcbe7c6cdbb9f7a58b43e7be051c2ed457f7efc248a3c4dc87738467ad99a82ca385eea53ebc8af11c18900f5f980c8b76d9a475" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-musl-x64.tar.gz", - "hash": "93638a5e766b5859ae58ec3ba5dd81a60a0e6e2e4265d09b1bd71e42987216def1e94aa1c398e33d20baf6b7c021818cee111173b5771ff0ce2bcf56cc964c01" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-linux-x64.tar.gz", - "hash": "b704dfed083d3623024ee96ea6cb8ff6d5d7e1d6f43a27b1b4750a89193f64a966a3211b71f9e77bc7601532db992df38c34d1d1542f060082ae010d532437aa" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-osx-arm64.pkg", - "hash": "240c3edb434f3dc4472922306b4f840f45f2730d6fa2e06c1a5b9371f3f2e5d8800efc98a78170ac628b42a2f12af15f903c4543fec834d7c7b174f1eeee7c5e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-osx-arm64.tar.gz", - "hash": "74ea61c16a06f86c6788d46c4d75726f6dd57fbe4c4593eff52a8b1472fdf805abe61830873fd3ef4178a75238f7dcfdf787b71e39a8415ed0f6ce04c4ba1e40" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-osx-x64.pkg", - "hash": "8a80455efde8ef4c0dc1c7f0ec5ba5062daacf91a43b575ab8e5fc2585245212e4f9c178e1702de21f6d9bf66e3181171552e960ab59cdb2e474d207036ef86c" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-osx-x64.tar.gz", - "hash": "6ea1da47b60e5361964fff79b9fa3dccc087c9773d342c34def7ee898eaf6de9f46da66644847d981615dedf39698610f850dd64f209bd4410e055f50b3b7e09" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-arm64.exe", - "hash": "638af12d1f69479bf47751c6127d2e599ae5d305b83c6c892c4e7fe9d7e1a50b91272898a425280f9c7f2237234cd9d13d014310bea5c05ca7621119db34ee97" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-arm64.zip", - "hash": "a9431c593af26ba07bca7cbfee79959e0103aae5ef2918e57890a5674416d8244e6a7c31a7d8b2da7c6224d1e2abc8d1cbd49255767aaa9edfc44f2b2c6d5a6e" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-x64.exe", - "hash": "51b3ae834a5498f5eaf508bc6f7de02460d43737baa3ef494367946875516adb1a08d74a7d8f353249c1e92a6f86be4dc09da2acf3777d2975157cf20d4da4b6" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-x64.zip", - "hash": "70067ab2024b104502393066b7f321a580ba99d95608ea67945b5705b487bd614bc0f1ea0653d23e257763fdbdf2fa5351ddc8734a60c6400ca15ad806ba07e7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-x86.exe", - "hash": "8398d338f02981bc79f6dc8ffe834d7bd6a922862ab2d7e74094a4372d189419503040879f696db14ebc19ba2f06dcfbd215164b4538947477ee2b7b5dc0d6fa" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.0-preview.1.25080.5/dotnet-runtime-10.0.0-preview.1.25080.5-win-x86.zip", - "hash": "2764e0d40d5bf5cdab623d6ec1fcabc3f065f6e44a06f9fa464f0d761638497a8cf455f52feb145588abb8b1b83898453b14afff9e20e7a3518574e69bb63cf2" - } - ] - }, - "sdk": { - "version": "10.0.100-preview.1.25120.13", - "version-display": "10.0.100-preview.1", - "runtime-version": "10.0.0-preview.1.25080.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-arm.tar.gz", - "hash": "d3a76713855026bcb131b97596750e26a43180be9f875811208a3b1b7d88c81e96cc769e97df4c7397a3baace3098f848a8345df6560703ace765db8b21092d8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-arm64.tar.gz", - "hash": "645b618ab7fbcce38f82b2ca9a5fab6b11742dc9ca53f4bb65654dbe8385e1789aed034162436af998c59e418b5031607e71856dc38848717a74f8f3292e0c4b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-arm.tar.gz", - "hash": "361c46feb05350d07c969c88cc1a821152cb21535d544817c7bac54914b84d526e3e5aa642fb9cc5dc331ef008bb205138841ad222ec3b9a06b8d08741fae95d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-arm64.tar.gz", - "hash": "916807107cdee561f530d393d80c1fc3be55099436f324ef03d2a92792b3cab7df9fc3ccc87c58aad5520232f807de2c4258af4a24eb13715c360cdcf54efa3e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-x64.tar.gz", - "hash": "35a2ce93ba7f39a08fd177118aa0ccfe8c90055b8df98d3e1340644a91c3ea90afc0201bffb0ceb54882313fdd9d3ab01ac23d6f8ccb3ef0670a1af825cd3257" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-x64.tar.gz", - "hash": "98687cb89859fe1847a0cae6c752ce2309231e5ef26ee5285893a5b5794fbfd51ddf8510deb5f700ea298ceffd9cbc0f9f26c9c7b4d90044a82bdd2b98abfcc4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-arm64.pkg", - "hash": "14f83d81cbafcc572a70100037c677911368970e4b20dd471d69595813b688615577b393cb4f8579b284493341b7642ad2f2d00171dd9d1d40d35e886e2ed2dc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-arm64.tar.gz", - "hash": "5e98db2acaacfb3e91ab56fd369a422587060cd4cdf3b6411bc5214d59b985142c459f650ea6b63b6af8f1fffd2f5e39d685b17950814a8b131e57b30e1c2f48" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-x64.pkg", - "hash": "29900a2b93424661ba0300671be017629ca5c5183cdddbeaecae2666f8a5ea6c26e415b7f2286a6644efa27523ebb0f61080b9fad82f85dc9c648344af36268d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-x64.tar.gz", - "hash": "5f60bd5a013e59cfb674b7d2e9333b4e88d8bc8645e8d18cca751e356286986f371d9f217675f703c85c515159e0f74ef54d60e5c7f717c1ee469a7684a57f5d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-arm64.exe", - "hash": "0a676d984d6b67e4cf8b7bc540c777fd50a0b70a3cfc66cdc22719f2b6d9802e66d9fc7bba7388745e8340a92c9a990b00576bcf008bf04f1848f380f563ad5b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-arm64.zip", - "hash": "42bc6fa5fb394801925eff1f296f33deebcbb9e0d506c2a7cbd345b38bbc0f26244df16fc999be62c6ea3b10ec50910650a548d500de3ce87cfcbc9d269a5794" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x64.exe", - "hash": "cf6f4f097b15488bc027171f16a15a11eca65b0aba4630e998026ebdd8501757f8b68f6be6cde16b333c35392394f8f8c0dc5b4aac4b0df7609376cc6ba151c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x64.zip", - "hash": "f574e68dbb4214679a123f2527fe0478c7a7d2ca6900c81e2cfec03984421a894d8e1304a5683f077185b71b4491ed12d449636620f96b640156aa251f4a6a53" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x86.exe", - "hash": "ae9f4b1b82c5be882e6c112e146e20d50f8fcd6e700263088be2ede90638a62ccd2dbb3c72407abaab636c0478b7a77fe85e60671463dd31e1aa864f33820a6f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x86.zip", - "hash": "5cb4fbc77bcce3cb6ab158e24d6f10697baedaf236b55fc1b80691ba094820ac4c0b57d8c66af33fa68076f06aa3a679a3383fd095775521a6d13fd0faa59cc4" - } - ] - }, - "sdks": [ - { - "version": "10.0.100-preview.1.25120.13", - "version-display": "10.0.100-preview.1", - "runtime-version": "10.0.0-preview.1.25080.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-arm.tar.gz", - "hash": "d3a76713855026bcb131b97596750e26a43180be9f875811208a3b1b7d88c81e96cc769e97df4c7397a3baace3098f848a8345df6560703ace765db8b21092d8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-arm64.tar.gz", - "hash": "645b618ab7fbcce38f82b2ca9a5fab6b11742dc9ca53f4bb65654dbe8385e1789aed034162436af998c59e418b5031607e71856dc38848717a74f8f3292e0c4b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-arm.tar.gz", - "hash": "361c46feb05350d07c969c88cc1a821152cb21535d544817c7bac54914b84d526e3e5aa642fb9cc5dc331ef008bb205138841ad222ec3b9a06b8d08741fae95d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-arm64.tar.gz", - "hash": "916807107cdee561f530d393d80c1fc3be55099436f324ef03d2a92792b3cab7df9fc3ccc87c58aad5520232f807de2c4258af4a24eb13715c360cdcf54efa3e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-musl-x64.tar.gz", - "hash": "35a2ce93ba7f39a08fd177118aa0ccfe8c90055b8df98d3e1340644a91c3ea90afc0201bffb0ceb54882313fdd9d3ab01ac23d6f8ccb3ef0670a1af825cd3257" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-linux-x64.tar.gz", - "hash": "98687cb89859fe1847a0cae6c752ce2309231e5ef26ee5285893a5b5794fbfd51ddf8510deb5f700ea298ceffd9cbc0f9f26c9c7b4d90044a82bdd2b98abfcc4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-arm64.pkg", - "hash": "14f83d81cbafcc572a70100037c677911368970e4b20dd471d69595813b688615577b393cb4f8579b284493341b7642ad2f2d00171dd9d1d40d35e886e2ed2dc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-arm64.tar.gz", - "hash": "5e98db2acaacfb3e91ab56fd369a422587060cd4cdf3b6411bc5214d59b985142c459f650ea6b63b6af8f1fffd2f5e39d685b17950814a8b131e57b30e1c2f48" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-x64.pkg", - "hash": "29900a2b93424661ba0300671be017629ca5c5183cdddbeaecae2666f8a5ea6c26e415b7f2286a6644efa27523ebb0f61080b9fad82f85dc9c648344af36268d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-osx-x64.tar.gz", - "hash": "5f60bd5a013e59cfb674b7d2e9333b4e88d8bc8645e8d18cca751e356286986f371d9f217675f703c85c515159e0f74ef54d60e5c7f717c1ee469a7684a57f5d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-arm64.exe", - "hash": "0a676d984d6b67e4cf8b7bc540c777fd50a0b70a3cfc66cdc22719f2b6d9802e66d9fc7bba7388745e8340a92c9a990b00576bcf008bf04f1848f380f563ad5b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-arm64.zip", - "hash": "42bc6fa5fb394801925eff1f296f33deebcbb9e0d506c2a7cbd345b38bbc0f26244df16fc999be62c6ea3b10ec50910650a548d500de3ce87cfcbc9d269a5794" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x64.exe", - "hash": "cf6f4f097b15488bc027171f16a15a11eca65b0aba4630e998026ebdd8501757f8b68f6be6cde16b333c35392394f8f8c0dc5b4aac4b0df7609376cc6ba151c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x64.zip", - "hash": "f574e68dbb4214679a123f2527fe0478c7a7d2ca6900c81e2cfec03984421a894d8e1304a5683f077185b71b4491ed12d449636620f96b640156aa251f4a6a53" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x86.exe", - "hash": "ae9f4b1b82c5be882e6c112e146e20d50f8fcd6e700263088be2ede90638a62ccd2dbb3c72407abaab636c0478b7a77fe85e60671463dd31e1aa864f33820a6f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100-preview.1.25120.13/dotnet-sdk-10.0.100-preview.1.25120.13-win-x86.zip", - "hash": "5cb4fbc77bcce3cb6ab158e24d6f10697baedaf236b55fc1b80691ba094820ac4c0b57d8c66af33fa68076f06aa3a679a3383fd095775521a6d13fd0faa59cc4" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "10.0.0-preview.1.25120.3", - "version-display": "10.0.0-preview.1", - "version-aspnetcoremodule": ["20.0.25051.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-arm.tar.gz", - "hash": "253c3e18705954121c843d367e3b2cbb8ffc46649f2e0db255b35833163e5dec6b5df41c4970102281af68cf8d912222db168de39e2171af39b0cc163bc17eb7" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-arm64.tar.gz", - "hash": "4f996f48fd215b63b84daf24a4ab08dd5b6877dab6bef0e6c35ec945152b6e5b22dcba9d50ac1198d5876313f0bcd0c800aa5a8cc83ec7647e77466f74dac22e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-musl-arm.tar.gz", - "hash": "465797b3b8d1552e9a46092481f1c816827bf01c532cb8b7aae110870a4ec9f12500adb91edafbcbbf1ae46338a4851845d56de21274d5c6c2b6ccb395d9514f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-musl-arm64.tar.gz", - "hash": "7709a4a05a0e56a4a585089051159db840c0a8d3072bb936076b1c70c89c2f1a0b54783e64d762a2d0dd61b6bb5144dbacad567ba46992196c41014a51badccf" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-musl-x64.tar.gz", - "hash": "015564ad968b0916f122aaebcc71bd6800ac480179cb7423dca45450b9e61d271207a86be5a7cc0c1628b1e7fa4906133819d47beaa180ca75c04101afcee9b8" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-linux-x64.tar.gz", - "hash": "bf5d4f5c1dfa63e937f4d0e6b800283437a3df5c55b2e426c3efb0b8dc9794ba704f5d4468acc130f0f3b81ace3e3d46ee11945bbc5f34bbd29d7b54c36630fc" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-osx-arm64.tar.gz", - "hash": "43b24242a57da6735bef26f4a039aa1c9bc7971f4d2d8ba28a8c019da133207f180d672144e4e122e274a7da11c65ef8932e9544d673d506b9e25ec1de740616" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-osx-x64.tar.gz", - "hash": "5833bd67f1c7e2b16a3bacab66c94c20a3cee2ed9619c7954e6be164b802438eef602d4adaf057a13c729b6e357ff29e923c4be16b852836132848b90c22ed62" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-arm64.exe", - "hash": "3b9c557b748b0cc8f0a9b73e0d19a3300049f4adb01e859ffe4d45c7aee81800dfbe43b779755fb51c16c1b1d005e9ef26f0f63226a241567ac5b552bcc8e5c3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-arm64.zip", - "hash": "388de23c5d88946f343ea885510faf6ab629dfccbf8fc3db13d516df154d876b55c2b6faf31cbca50910c6ab2802cdc633d92ec57f33d5bb9cba97ca9ef7d95b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-x64.exe", - "hash": "836b26c38e372af0d89b54c449874f56f253a36185c77ee1cd7d81225d0bbab3e842949268b047f8b73563bcbee84e1ec386c754b271ded9f090f8445e332cf5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-x64.zip", - "hash": "a5e5c941ad8b831c31fe623d0d3675bb9e1b4c1a442a5890061b83ff874e0c106e87fa18394873798c193de8ce0146c90d5903e98c0926929614b15ffdde2f12" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-x86.exe", - "hash": "243fb5db98556388120a7213c2950cd9a3a6e87d2c64df29a415f2d6b5f0f76fefbbf032b8f06edc932073503b792d396c36471bed676de2e48da975abff9942" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-10.0.0-preview.1.25120.3-win-x86.zip", - "hash": "12ba1b42491c7327358671429bed97ecd1483ad248c2a60c0402e9c29946ca5b38746c8fe006ec683ec7a33efdf8870e4955b122ce39d7bb62febaf5baa93fb3" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-arm.tar.gz", - "hash": "35b67d2a31281e8ed8a6194d661e78410b5b2c8c552b0568fd24133e108978f5e31f6f7bdd21424cc0b324d1750b0f0b56a066c78694f446749048a6a10aea1e" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-arm64.tar.gz", - "hash": "c6dd0af60294bfc9a0de1cf39b859a5cae2c9c54a5ef7182fc4d140bf1b9ab2aee0f117865792dff98fb892a7e9006b6cdc299e0b4c531a7188a9b04d23787fa" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-musl-arm.tar.gz", - "hash": "31ced448fa58247f0653e178e1205afadf4ee85ea8bc6db59a5d71db7d60ebb0ef9b771ca39ac7e3c7faeba37eb4995c23446550d4f5aed2441ce1508ed3a36b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-musl-arm64.tar.gz", - "hash": "631cab0c707240409314e515f65ea7cc67e4be5234fd5d2042f119bcd54ebfa582e4e4bca77501f12f66b7efda5f66cd5dcc390a6561ae85005b6849f5c61afb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-musl-x64.tar.gz", - "hash": "ce56388e2cf567bbae78be9e63b7bac5a5f00202357f60c3b68d98d09b5fcc2ae281811cf163192e51a3bce0f3e655927438346a5648b9dfcf85c360993d71d7" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/aspnetcore-runtime-composite-10.0.0-preview.1.25120.3-linux-x64.tar.gz", - "hash": "a9771a74c99e5c4e878e9371e00ed84b243c057ece276209d51d32538fe8db621e4af4245d92a4015b6f071f7b4f8c15a78593f8f8cf089d94012e2def4d10f7" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/10.0.0-preview.1.25120.3/dotnet-hosting-10.0.0-preview.1.25120.3-win.exe", - "hash": "a417fde9b7e1d143408d74b8a92999337221b2042c558e83e0fba34f8706ed024b3208ffd4b4125ea4e1821d8fffc46b47425a016b272e18fe415c724831f525", - "akams": "https://aka.ms/dotnetcore-10-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "10.0.0-preview.1.25080.4", - "version-display": "10.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-arm64.exe", - "hash": "f052ba22d9737c5cc00035ec6484bd0210e53837b2bc07e6bac08627d00213a8aad225912fd163425961d8fdc4ee5ddce0e7cab577e81ba5c79b546ded58eb9f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-arm64.zip", - "hash": "e47be4dee94ac62bcc43389c6e7542002c280c694bb3780b9e67d0255f8701f238ff76f81bb5604b4df3ade478dedcf53a8ef56d9a2f1547e2c23b862a17cb4f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-x64.exe", - "hash": "796ac79ed66d15cb4f0151645f2e424a60d41d034f6ac647515a93390a9c7d814fe6691c6a209957a14a296f499f0912f744a3fde7e7cc47855f624b8801439b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-x64.zip", - "hash": "0b89790cda0d425771d2a8159bf4db768e5931892392af163ffd34fa494dce1dc22f025efb799a513b77e7a2172a5012bf9211b35d2a9e755bc39c326f487c15" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-x86.exe", - "hash": "985a3919b9a31cc74e8a8f448800406ae008b6b512b08b081bc88eb595f3c1a0caff4c65e316023a4cb538d52d4daea440326cbdbc9004d99e2b4b602a78d684" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.0-preview.1.25080.4/windowsdesktop-runtime-10.0.0-preview.1.25080.4-win-x86.zip", - "hash": "608b95683025ca023714ef07c5c6006f34eb01f161517a51039e08210be9d36fcaa1508c03fa63758ffabc1f13de55b902ff0c5032a3753a0e555b84c9e1ad6e" - } - ] - } - } - ] -} diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/5.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/5.0.releases.json deleted file mode 100644 index 46867c86fb..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/5.0.releases.json +++ /dev/null @@ -1,12934 +0,0 @@ -{ - "channel-version": "5.0", - "latest-release": "5.0.17", - "latest-release-date": "2022-05-10", - "latest-runtime": "5.0.17", - "latest-sdk": "5.0.408", - "release-type": "sts", - "support-phase": "eol", - "eol-date": "2022-05-10", - "lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/", - "releases": [ - { - "release-date": "2022-05-10", - "release-version": "5.0.17", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-29117", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29117" - }, - { - "cve-id": "CVE-2022-23267", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23267" - }, - { - "cve-id": "CVE-2022-29145", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29145" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.17/5.0.17.md", - "runtime": { - "version": "5.0.17", - "version-display": "5.0.17", - "vs-version": "16.9.21, 16.11.14", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-arm.tar.gz", - "hash": "b91bec9749838f31f0aa04d8f9c3ebbbb4dcce4ee4ceb30cfd1b901534bbe2c187ae9ed7bd0de64405c4fae99df839836fe68b9d9a2493d52301d7b16d6f3ba6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-arm64.tar.gz", - "hash": "99cb11871924d3abedcc9c8079c54bc0c550203c7cbe4e349ed70d4355f40e4620b68d90b797e6461d898c06bed6953580e2cd4ad01483e5de107ca5a3409610" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-musl-arm.tar.gz", - "hash": "ce5a53f465d91d7c1d0fb29bca2e17aeadd31b493dc94233f3807d41df939e739f6339a94719561ec40d2cfcbafba01e64e125b91ecd7c32afc9cebb4a3bcc29" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-musl-arm64.tar.gz", - "hash": "1c1495bf4a53a6d9b2be4c4b181946c3c5abd57ae6e10964924e3d650afba5e2986e555371b8134d0315a4054fc7d473ab4c8cc137f9e0569e8c67e46c4f559b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-musl-x64.tar.gz", - "hash": "e40ef40ebc7394cc7ef9eb9ce26b16a73bf99d597d98df009a06fff5d4fcec307e094ef6e780e8a2169351d9a93c92c18f20975fd1c6d75669218a29257fb6df" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-linux-x64.tar.gz", - "hash": "a9c4784930a977abbc42aff1337dda06ec588c1ec4769a59f9fcab4d5df4fc9efe65f8e61e5433db078f67a94ea2dfe870c32c482a50d4c16283ffacacff4261" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-osx-x64.pkg", - "hash": "986a95d6828b5edf1b5e5d83cf73d098021ec2448c0d6e9a9993013e9886834e2abd06615357638eab9795ac70e4576e0aa8dfe78d59a15a6d9199629282b772" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-osx-x64.tar.gz", - "hash": "31add512418640f98bc9511509db2049a2674c7725169d26be89218a02ac7972e03e5d6be5a3d45a0dfa764e6eade503a8f4957b7b198ec6ad412e423d95f1b9" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-arm64.exe", - "hash": "91da9338c61a40f235240c5d1adc46bd939cd6ea6ddb6ac87e94fa210a457b7108fcfefa21dff1017d34171257c2b906f59ef1c2187d5887df74bd124a43fb2c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-arm64.zip", - "hash": "31614b5d75c5bf41d78390746980aa280176158c06bdf2db6f51fa323316807d1636d59a5999689d37ad6d5addc6dec4051709dbf3c229dce35346300acc06a9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-x64.exe", - "hash": "717ec8056cf6e0f9f7cb8851929b598e860f3962575a34e625e3bcf9a9ff1366965ed9cb0d4e93e7330c31afea9c8a727a18fb10f666dd5f43126da439be2ec5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-x64.zip", - "hash": "424df2b535f73c40aea164623a8a8f549bd18f89406eb2cb84289cb4cfceb3450db7762c5582756263d79ed628a574730e708d87dc906fd2c00d29f64942c782" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-x86.exe", - "hash": "fb615e36ac159b860b2a22b21570653137ee7ceaa3844204ad468b8a94e31f7ea70232cea3ab3f77a53d56c35d2a3e33e5d20049ef3a31bcad4bbfb3e8798f44" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.17/dotnet-runtime-5.0.17-win-x86.zip", - "hash": "8983fcdbc302f5e04cc76ce02f2e6c1f011d88534e85f461264e35ed303a072cfa05ca81a794a9aac396c0393d08d55567a7a9c3f7e50e05940e618b0064b9bd" - } - ] - }, - "sdk": { - "version": "5.0.408", - "version-display": "5.0.408", - "runtime-version": "5.0.17", - "vs-version": "16.11.14", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-arm.tar.gz", - "hash": "4f12b2c6cc242666450eb5f892430a956ff34b2ab30aa63ee444565327fbad569152506e153a550b4a45cad6d8346f37ca7bcca68e9d46540c7f170e24b26296" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-arm64.tar.gz", - "hash": "50f23d7aca91051d8b7c37f1a76b1eb51e6fe73e017d98558d757a6b9699e4237d401ce81515c1601b8c21eb62fee4e0b4f0bbed8967eefa3ceba75fc242f01b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-arm.tar.gz", - "hash": "9ee91254b1d828b9047249e57b08b94b5dd307b6e197faeffab2fbe78403a0604832a0a09f7af21c44045b70b0cf79322ea1825852298a43174b4455a4dc52eb" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-arm64.tar.gz", - "hash": "4c7c47e887727aa072fa762e289a7c3135120acd2af1ebd591060476606058a387060d732aeece701b3e0795e0d73ef423284738094e6fe654d87641da1ee347" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-x64.tar.gz", - "hash": "40514b07e90fff4911633d807a7eab4139c3755a6e2ddf92999f011445f0cfa99014b8953cdc249d62ea2f8a3b9e93708c3a6ff598f38b106c340b0955615c52" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-x64.tar.gz", - "hash": "abbf22c420df2d8398d1616efa3d31e1b8f96130697746c45ad68668676d12e65ec3b4dd75f28a5dc7607da58b6e369693c0e658def15ce2431303c28e99db55" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-x64.zip", - "hash": "a316f2daf9774a79d4505c096674f52202c639774d80dc93aa326534730af6d3430187101e7efb713a90b2381ca4672d1a33d295996d4cbce2c13f37c413e9a8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-osx-x64.pkg", - "hash": "f47eec03d2b6777e78e2a993306727fa6871cf7f6e295ed70f684745a9f9fc960f0068750007519733426db52afa10e0bcd1c58879019d5d8f1f5f295868e4f3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-osx-x64.tar.gz", - "hash": "3fdd4deac2809b00c0f669d5488000ac1b9a47dee6ab7b31167d7cec4759a10ee347fd4f52090a40684e5ecc1e1f57eb99c558e561edfd1436a2f77fc1c1a0b2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-arm64.exe", - "hash": "da1db302ff5707c5a35bb1ccd4668ddf09cc4412b955e9a3a2c52c549bc56c630ec96bc13d275be29cb11a63582702680652caf115ce1855737858e2ccef92d7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-arm64.zip", - "hash": "08ebadde7adf730ad35f0c6e4f5db3aa6b339208bbf2912aeaa32c651d5d801daeaaf72f7b6beea558cc251d8affbfb6cb8a1de82cbef995dc8f801f31b6130b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x64.exe", - "hash": "09721d707779168484579d07fc76e5c29ada8c32b9533689f9f066da3aa98d4a615d825b7212aedf4744d017e9cf3ba86d6a570d00826b732bbc5dd6976a8774" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x64.zip", - "hash": "3845485401695b325d9afee67e33c6b3a45902476e408dd74ebc8815ad2c4f4b5d70a6b993e87ff587d0d9b0e5a3d66eaf3dd6bf715b0012ffee70501a716485" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x86.exe", - "hash": "0dcc610af9f0f9791b093eea3af9a4bb58c795f16f5085a046621b5511bbb9ab9578418530a2e2622097a939a9e6777b558f51164d772a8ba9971a6a0f008336" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x86.zip", - "hash": "a942c354eabed62a4ceb8aaea48664235c9627e818c18504ea482a6a9eb8400b1744f7c40e24bae8e50a665aff20f66a7e378dfa4018c08fb76fa883ce85a8f7" - } - ] - }, - "sdks": [ - { - "version": "5.0.408", - "version-display": "5.0.408", - "runtime-version": "5.0.17", - "vs-version": "16.11.14", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-arm.tar.gz", - "hash": "4f12b2c6cc242666450eb5f892430a956ff34b2ab30aa63ee444565327fbad569152506e153a550b4a45cad6d8346f37ca7bcca68e9d46540c7f170e24b26296" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-arm64.tar.gz", - "hash": "50f23d7aca91051d8b7c37f1a76b1eb51e6fe73e017d98558d757a6b9699e4237d401ce81515c1601b8c21eb62fee4e0b4f0bbed8967eefa3ceba75fc242f01b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-arm.tar.gz", - "hash": "9ee91254b1d828b9047249e57b08b94b5dd307b6e197faeffab2fbe78403a0604832a0a09f7af21c44045b70b0cf79322ea1825852298a43174b4455a4dc52eb" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-arm64.tar.gz", - "hash": "4c7c47e887727aa072fa762e289a7c3135120acd2af1ebd591060476606058a387060d732aeece701b3e0795e0d73ef423284738094e6fe654d87641da1ee347" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-musl-x64.tar.gz", - "hash": "40514b07e90fff4911633d807a7eab4139c3755a6e2ddf92999f011445f0cfa99014b8953cdc249d62ea2f8a3b9e93708c3a6ff598f38b106c340b0955615c52" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-x64.tar.gz", - "hash": "abbf22c420df2d8398d1616efa3d31e1b8f96130697746c45ad68668676d12e65ec3b4dd75f28a5dc7607da58b6e369693c0e658def15ce2431303c28e99db55" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-linux-x64.zip", - "hash": "a316f2daf9774a79d4505c096674f52202c639774d80dc93aa326534730af6d3430187101e7efb713a90b2381ca4672d1a33d295996d4cbce2c13f37c413e9a8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-osx-x64.pkg", - "hash": "f47eec03d2b6777e78e2a993306727fa6871cf7f6e295ed70f684745a9f9fc960f0068750007519733426db52afa10e0bcd1c58879019d5d8f1f5f295868e4f3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-osx-x64.tar.gz", - "hash": "3fdd4deac2809b00c0f669d5488000ac1b9a47dee6ab7b31167d7cec4759a10ee347fd4f52090a40684e5ecc1e1f57eb99c558e561edfd1436a2f77fc1c1a0b2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-arm64.exe", - "hash": "da1db302ff5707c5a35bb1ccd4668ddf09cc4412b955e9a3a2c52c549bc56c630ec96bc13d275be29cb11a63582702680652caf115ce1855737858e2ccef92d7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-arm64.zip", - "hash": "08ebadde7adf730ad35f0c6e4f5db3aa6b339208bbf2912aeaa32c651d5d801daeaaf72f7b6beea558cc251d8affbfb6cb8a1de82cbef995dc8f801f31b6130b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x64.exe", - "hash": "09721d707779168484579d07fc76e5c29ada8c32b9533689f9f066da3aa98d4a615d825b7212aedf4744d017e9cf3ba86d6a570d00826b732bbc5dd6976a8774" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x64.zip", - "hash": "3845485401695b325d9afee67e33c6b3a45902476e408dd74ebc8815ad2c4f4b5d70a6b993e87ff587d0d9b0e5a3d66eaf3dd6bf715b0012ffee70501a716485" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x86.exe", - "hash": "0dcc610af9f0f9791b093eea3af9a4bb58c795f16f5085a046621b5511bbb9ab9578418530a2e2622097a939a9e6777b558f51164d772a8ba9971a6a0f008336" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.408/dotnet-sdk-5.0.408-win-x86.zip", - "hash": "a942c354eabed62a4ceb8aaea48664235c9627e818c18504ea482a6a9eb8400b1744f7c40e24bae8e50a665aff20f66a7e378dfa4018c08fb76fa883ce85a8f7" - } - ] - }, - { - "version": "5.0.214", - "version-display": "5.0.214", - "runtime-version": "5.0.17", - "vs-version": "16.9.21", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-arm.tar.gz", - "hash": "a338dad95c4935fb756b7dc24d1b8c06448233e1e9fa1a6bf3365999520f0ceb90fde1acb47d544edda77fb8168ed8e202c48f04bb34b65b91cb8eb4f4d1aa1d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-arm64.tar.gz", - "hash": "78cc0c412bb63030682c10acb236b8f9ed08e217cd365fcd1136c342a548a90070ef9b27add70e3ca2ce1faaa6579ecb01d77d1239f93744e520e30141fd1ae9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-musl-arm.tar.gz", - "hash": "bac49be66a5d5899b60fd5555ac7db509d332c30078731b9ae60d91fe040c4b1a60d4cf938247994ed54bf810c50a63b4f7e2a9163e993862b7f34cd893d37ff" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-musl-arm64.tar.gz", - "hash": "92ce80320a73f742672c99318e66cfaf375876fb8320d053cd64d6b53a9c365bb2774fecbed3714646abf6f3eba72286246013cb8d80fc087b5908fcdfbfeffb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-musl-x64.tar.gz", - "hash": "39261405f6c05216da2fbd6b3aaff1ac1ed4681bb017f0127edbf62935329acf4334ff889fce1273b65fe02d82efe4679dec050c74353717c16e7bbc10c3de24" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-x64.tar.gz", - "hash": "86ae4d859577b24dc80dc3f9b477e8f808bdd6e0309235e6b681f8332ccc60b25eb302e3b74cf33eceeacff6bc711551cb763ab54880d68dd9b30f31ac7ff758" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-linux-x64.zip", - "hash": "62c27a2844bff2b7a82f083320a41c55bbcb1858e40f023cb91fa8b543e5a7f9c9e45cc26649b9009c7ce9a4f861bf7a0159b8a11530e82c2d1e09564adb03e5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-osx-x64.pkg", - "hash": "34be3b64850ed731a73791775855619fb7cd1a4ea4023efd59d938f996966d86bb3036bb58599328d1b3c8534ead45a5a165091e2502df6f03dcdb4ea3933b59" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-osx-x64.tar.gz", - "hash": "f5cfe8ca90a658b0fd3af9166ba633e373cbef368af321767657c1304154c36841a78a975d3b4cc29b9733ce9ed6990171a77e07ba6f1f52cc17c761377a31d4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-arm64.exe", - "hash": "4147c3ed3d09f75529935ee506258a5ebaa9c38364cd1f78eed5e91c37d36189e9260e9afad69713a288e6a40c8f011a5d680b46809f865ff5191bcb2d5dfdb9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-arm64.zip", - "hash": "f0e89ff3ea1e20685f3df2d482791f1c9bdfc4620bf6e55c314ebbffa1924adfa25d56b5310a09a03e6bd2b444175f6c0a5da9845fe92464894d7a364efa264e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-x64.exe", - "hash": "52d40f848dc0513c476d33c8523035daa16ab0c5e4f526d7c3f7b733f2e62598c46995e73d2bc0e0131169309071bfd2918312fcbfbccb02b8bc22bc1c058a1a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-x64.zip", - "hash": "0363766758248a5014e485bea3ecaef5d01fa4faab6ae25812aeac7b3264e6f848030da39ccf47d9e3cc7c09a405c27dc0836f3e44067923d5c0c08b59b15ead" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-x86.exe", - "hash": "4f453c7a2c295926dc214869ca11419087723c12cf46a606aea215328d8521b5705cfdc80dfbdac3a4042bd2c9e2879cb5db766aaa2b3b4b58719fccc2daaf7a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.214/dotnet-sdk-5.0.214-win-x86.zip", - "hash": "7efcf1ffe9e3fbe06f124ef3bba890462d4b59452d03f7dadded60624932b1c13bc9c7f78875d2af8d6efa2d73472153d47b57980387b51c0c9160342ecdfbb8" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.17", - "version-display": "5.0.17", - "version-aspnetcoremodule": [ - "15.0.22105.17" - ], - "vs-version": "16.9.21, 16.11.14", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-arm.tar.gz", - "hash": "466e5600e52551e31ef30b326a6a98e569edaca4d5fd7772a5d1f02a847e6192dc3f9aab4632aa27e63d85e4c53081139ecab4ffca65e9820a72a84916fd5065" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-arm64.tar.gz", - "hash": "ac1a9d89f1b730dfdca9c2e48373ef21f8f9316014eefbe6b11516f8195d3b3efc4e482883774b74ea2ff1cb77174a2cb471bd1157ab5b7d71621e3026c38e9b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-musl-arm.tar.gz", - "hash": "80223218db8d272d67f7627da7c3f7a9b06518a2e44f9c6d12f2438b9ea024ec91fb42426b3b5672204c643c122b786f0f0f8682c671eca6635d9644811e0ff7" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-musl-arm64.tar.gz", - "hash": "26f8a30e246c5527f03023e203e44dea1842e23ac587bc9872e6e60bd5ac98f57f7962d7d46c816690cb42263e9deedd896d0d3ad538a2d9dd17a06ba6f47fbb" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-musl-x64.tar.gz", - "hash": "7df763553f6438c51f23542412830686fef82b56f1e3330fa2dfd86b894eff7d830b5ff51468cfe6e88d2eceebc0a0a2352c8762f65a0ffc6ca9f5b02863b7a6" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-linux-x64.tar.gz", - "hash": "d8e87804e9e86273c6512785bd5a6f0e834ff3f4bbebc11c4fcdf16ab4fdfabd0d981a756955267c1aa9bbeec596de3728ce9b2e6415d2d80daef0d999a5df6d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-osx-x64.tar.gz", - "hash": "bb0c43c723090fa2d8a0255e6fc8c004ebe7baf2d5d56e22ad2e6336a67fe415333d451e459c8857c0ccb5819d998232c9617bf45f222559d4b8891b0af41f20" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-win-arm64.zip", - "hash": "1efae414f2044689336979241501ad2e180ca2a5a4153f8c4a2f5da234cf8472931eb6e5bbb2f03790d8e0c14a1da76275e6454a21ede59e1bb3a7c20cba56e0" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-win-x64.exe", - "hash": "85a4b4efa51d20fed86aa87576c1679a8123187116323cf8708ee904208960862bdb834d21ac2b1565b26afd7ce92c360e2f52f5067d20db3be76247f888b8e0" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-win-x64.zip", - "hash": "ffa1ac15c489acde822981b4c9fdf69eb0e55dcb3e1bd3d9c23cceafba88388a4420f6b9ac01e5758c6162993ffa3a76350f0b50afffe9ad10eae74adffcbe0a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-win-x86.exe", - "hash": "04f9f5760d7fe08cbccc3a9274956129c634debcd2a51c2b7349a25a104528f49aad01bb66cdf790e793c5b03dcf1ec7c742656360dfb85b95f1ab9f15debc35" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/aspnetcore-runtime-5.0.17-win-x86.zip", - "hash": "c2ac25719b822ddec3cfd6f741c8f0d92fe696739cddb1c5515e28b4d858d4cca07f469d432fdf13fdab74da282078b7d74624bd0aa2ac3208976823ae3f8c31" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.17/dotnet-hosting-5.0.17-win.exe", - "hash": "e92f71edd6b594c76f8be81fa50d35b00c2d464c31cd10fa184685a1855147d3b28adf71096945768d3828ec18754500df5cdebf68a4744feca28c07dbaee180", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.17", - "version-display": "5.0.17", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.17/windowsdesktop-runtime-5.0.17-win-arm64.exe", - "hash": "f98015fa55565ec9bf9cf797e7762257c6178f8888c0f9d4a09df25530ded6dd9c39f43052f95316a0e8ae9cd6ce9523efe36e9794daf8dfb75fffcded5fa6f5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.17/windowsdesktop-runtime-5.0.17-win-x64.exe", - "hash": "f7eb69a953ff6346a180e5200075120b4b47cb89a75bc36c76a9e468c037bb2376f497dbf8e0bada152bc3ec35dceaad55d0a811586569575bf5b201d1e32baf" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.17/windowsdesktop-runtime-5.0.17-win-x86.exe", - "hash": "74a379323e52172f563cd996880f58d58a19303ae59b3f55ff52625dfe8a4a602609785b1174b38f2da97282f90f1ade53194354f48773512943eae249926ee8" - } - ] - } - }, - { - "release-date": "2022-04-12", - "release-version": "5.0.16", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.16/5.0.16.md", - "runtime": { - "version": "5.0.16", - "version-display": "5.0.16", - "vs-version": "16.9.19, 16.11.12", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-arm.tar.gz", - "hash": "2c4662a38a4ff5994ff5cddc4625208062f400c145228ede9a1608e136444cb0534dac614d1d551f9565524165c3dcd54097e278e1d272baa5501feb93176bec" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-arm64.tar.gz", - "hash": "d38a9a78052a29a8645558d60e621498d10abd11cd072bab9c66f98483ba55eec298fca830e186bdacea103e5f3ad10fa4f2663f1595e3be4fcfca4d1886c78f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-musl-arm.tar.gz", - "hash": "8cad41ed0ea493a6c0359dac4a0a20b5c7e52688d8172795935b91c5b9f5b05d46e6a0d61222cf1c6b56310b4862b246cc612f94cfb7b8294c4bbe62df52732a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-musl-arm64.tar.gz", - "hash": "6c7b5d83c6f443254a343d04fbd18a1197efece15c9b306fd26a4830ddfe16f8ba24e54e695ab1af25024b77668ed078884c0e5c7e4e579f0706d74146312a02" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-musl-x64.tar.gz", - "hash": "49310a377cb112375519477fe9a668fd45dabf560ed55659b56e557afc3e33e030ec683bc046314d86424f699c0987c55630a5155874351feffa91deefdf53f2" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-linux-x64.tar.gz", - "hash": "42178cd448fc4d8fdb740bd0b03ff786966ccddfb582488a20d80f53d117e4b10485197125f5649e342bfb539581c66537697f8ae58b9acb48920859746e0851" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-osx-x64.pkg", - "hash": "b012f334426a61512b3edda8a6253f5d565cf41a9b7bec3a4091243838827655dd3ce576138313646d82958bba27d4fa040246df5f299ae7428ee308b4f8e8df" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-osx-x64.tar.gz", - "hash": "de47e74eaa7cc4acd34ba2ebc2f09beb5f7b7141c2c21482ec68c77a1c762861aeaae58b1f00c1dce3b7f2d019a7e862a0bace5241aac9fe1c503f5c4f24fcdf" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-arm64.exe", - "hash": "b14f87bdbaadbabb25f1b8eadf5d7e9f8223dbfa40af9a13608547244681a7778f8493cbd8854697b2716374450f301b9c08f84e4bd082d170e7a77b53405f3c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-arm64.zip", - "hash": "f3aa539b42bf8853906a918cf54fedc6f8b27518fc0eaa80258d0665f66e7231ce73c8313b08ca46a6fb19d7b736e7e9cb732361fae48b8ab180d3189b2e6708" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-x64.exe", - "hash": "1fc4076ae60beb081aaf6fc1d99b52ae0acceb9d831ab97b1ae6348d4633decf6a91e15c5c7f29dcec1d7e0fd3f214799c63a2e97f049652bc455c98053a90dc" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-x64.zip", - "hash": "b73976bc171421aa542221165c118b11cd0af5d6330515397e4a00058d2187337e194f7167168b1917a51185734920a9a4bd7187b8d1ce87f64ea5b04fd9a354" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-x86.exe", - "hash": "9ad6baeea2fd9a7f58a20d67634240637b229e3e4318a6decb04d3d7dcb735c2068e2d2a81a71a0c2c1a74aec240d49f51aa29f89577379b0e5acdd13fa4f960" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.16/dotnet-runtime-5.0.16-win-x86.zip", - "hash": "fc60799d3e79981d8331b803ab4e299a5f866ebb4ec50cfb8187bb13500ea609812c2f3561ffe4fa41c2d50091e98fefcfc0162869aa65af5896a1e530ab953e" - } - ] - }, - "sdk": { - "version": "5.0.407", - "version-display": "5.0.407", - "runtime-version": "5.0.16", - "vs-version": "16.11.12", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-arm.tar.gz", - "hash": "37db60df90f9f43a5399c1b7929c545e3815d7a91fdea82c96a136dcef993b0f8c67568759ae24321dee818fd1501cea8e541a159e10ed1a08fa96dddf2ffb9e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-arm64.tar.gz", - "hash": "500428a6a99d3825400be5cc1a723283f21a98c15ef68914e9252fc872b625fd10c220afd9787b7db6b226a04e83d30658234d464ccdf838639920d1768025e0" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-arm.tar.gz", - "hash": "adc94a98cd71f6d11349e797be7a42cb32c484b95e75682f31bcddbe71158b11080538c3becd75d3c2bb54cb312e667991a35b2a4d803b9012cf2abe31e52aa0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-arm64.tar.gz", - "hash": "92f493919acd6d6210ba0cfe1bc5889b500f058f6371f840a7b81011fc0a97923f761aa81b4ba6b7083079a198541089602f471bdf47d32780d956a83da031e1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-x64.tar.gz", - "hash": "0eab1963bf9a670ea51224d9c56c56bd3cccd32666130e41c70fe84087321d3d0ac9f7fb3eea4019a386af7544740e92ba85076a56408dff652f81dc8607be4f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-x64.tar.gz", - "hash": "b45f1bf086bfb5e0701c5e14534524ffc87d0195358ac4fa2cf36dac74537ca4c21c7177cfbfa7e121e77aa4106bb1e7039c9739ad73b942e2437bc5e39e6dce" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-x64.zip", - "hash": "40a4d014ae2dd0a51e072ae5bf758f26492331f53673ab3079b66bd7de720bea333896f0d007da4a1cece71289a67b8b748046568f580c21d273561cfa86830b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-osx-x64.pkg", - "hash": "79d9958fd6d3438667be1900eea64d282652f3fe3c95d4e8ae956c587677b849c262edb840e1c5f39ff36c916857ebbea2fa71b5b1ab0825c7e4487292f72b10" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-osx-x64.tar.gz", - "hash": "476cfe9bce986d23f74317e1661e5e85fde144923bd0659623bce5fb8d09bc6c966299a133fef83ec65697f71b98bcfb4a11cc423e0b2653f4b5c2e78a60aac8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-arm64.exe", - "hash": "7e2bcfc4a9f2e56a723129136d3cce9ed47bc38307362627140d187684fcb76fcc6ac1df481a2f1f3f56111c79ce4ccd1124fcc58ee7423239461565a362906d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-arm64.zip", - "hash": "e95d4c93dfb38c8f17efc44930d3f1b20c62cd24cdf5a692d977affb678d5084698dad4ab04beb705e58b2586628104787484b011f2072cb8e973a138aa40fc5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x64.exe", - "hash": "3f38a5dd76d50ee60c52b0e0beb9c074b77d157f73bfebff89af65143c84eb318a110351377a63ebe971681b3157c683e4fc75208b904a21efd400d4de81dd33" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x64.zip", - "hash": "13ae5ecad3633844da8ad224445e2be9bc604c3adb80ccaf433c30fc0cce955492f0fa80a394831b41e30b7dbba3992b92500e10ba55a19ba1b8f95758610aa8" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x86.exe", - "hash": "6a765aacf5dcdeed8ca6d28e31dacf3fa60ba7727a97aaa525538301689035a8703aa599525e2cdd041299a25ccb003550a79175c413d203a88961267fbb8890" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x86.zip", - "hash": "caa091439a238e8172253ad43c7d63676d49796aaee83377005c9f3626344c5a2fcb9289285c621041103c4f2b854d8fe78e95e700dfd5d913a5da2feb04d4c9" - } - ] - }, - "sdks": [ - { - "version": "5.0.407", - "version-display": "5.0.407", - "runtime-version": "5.0.16", - "vs-version": "16.11.12", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-arm.tar.gz", - "hash": "37db60df90f9f43a5399c1b7929c545e3815d7a91fdea82c96a136dcef993b0f8c67568759ae24321dee818fd1501cea8e541a159e10ed1a08fa96dddf2ffb9e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-arm64.tar.gz", - "hash": "500428a6a99d3825400be5cc1a723283f21a98c15ef68914e9252fc872b625fd10c220afd9787b7db6b226a04e83d30658234d464ccdf838639920d1768025e0" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-arm.tar.gz", - "hash": "adc94a98cd71f6d11349e797be7a42cb32c484b95e75682f31bcddbe71158b11080538c3becd75d3c2bb54cb312e667991a35b2a4d803b9012cf2abe31e52aa0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-arm64.tar.gz", - "hash": "92f493919acd6d6210ba0cfe1bc5889b500f058f6371f840a7b81011fc0a97923f761aa81b4ba6b7083079a198541089602f471bdf47d32780d956a83da031e1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-musl-x64.tar.gz", - "hash": "0eab1963bf9a670ea51224d9c56c56bd3cccd32666130e41c70fe84087321d3d0ac9f7fb3eea4019a386af7544740e92ba85076a56408dff652f81dc8607be4f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-x64.tar.gz", - "hash": "b45f1bf086bfb5e0701c5e14534524ffc87d0195358ac4fa2cf36dac74537ca4c21c7177cfbfa7e121e77aa4106bb1e7039c9739ad73b942e2437bc5e39e6dce" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-linux-x64.zip", - "hash": "40a4d014ae2dd0a51e072ae5bf758f26492331f53673ab3079b66bd7de720bea333896f0d007da4a1cece71289a67b8b748046568f580c21d273561cfa86830b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-osx-x64.pkg", - "hash": "79d9958fd6d3438667be1900eea64d282652f3fe3c95d4e8ae956c587677b849c262edb840e1c5f39ff36c916857ebbea2fa71b5b1ab0825c7e4487292f72b10" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-osx-x64.tar.gz", - "hash": "476cfe9bce986d23f74317e1661e5e85fde144923bd0659623bce5fb8d09bc6c966299a133fef83ec65697f71b98bcfb4a11cc423e0b2653f4b5c2e78a60aac8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-arm64.exe", - "hash": "7e2bcfc4a9f2e56a723129136d3cce9ed47bc38307362627140d187684fcb76fcc6ac1df481a2f1f3f56111c79ce4ccd1124fcc58ee7423239461565a362906d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-arm64.zip", - "hash": "e95d4c93dfb38c8f17efc44930d3f1b20c62cd24cdf5a692d977affb678d5084698dad4ab04beb705e58b2586628104787484b011f2072cb8e973a138aa40fc5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x64.exe", - "hash": "3f38a5dd76d50ee60c52b0e0beb9c074b77d157f73bfebff89af65143c84eb318a110351377a63ebe971681b3157c683e4fc75208b904a21efd400d4de81dd33" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x64.zip", - "hash": "13ae5ecad3633844da8ad224445e2be9bc604c3adb80ccaf433c30fc0cce955492f0fa80a394831b41e30b7dbba3992b92500e10ba55a19ba1b8f95758610aa8" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x86.exe", - "hash": "6a765aacf5dcdeed8ca6d28e31dacf3fa60ba7727a97aaa525538301689035a8703aa599525e2cdd041299a25ccb003550a79175c413d203a88961267fbb8890" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.407/dotnet-sdk-5.0.407-win-x86.zip", - "hash": "caa091439a238e8172253ad43c7d63676d49796aaee83377005c9f3626344c5a2fcb9289285c621041103c4f2b854d8fe78e95e700dfd5d913a5da2feb04d4c9" - } - ] - }, - { - "version": "5.0.213", - "version-display": "5.0.213", - "runtime-version": "5.0.16", - "vs-version": "16.9.18", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-arm.tar.gz", - "hash": "e999caefe4df776df49cb3f4bd671ea55ade03ca0d2b7e95370aa87fed2dd50af8e3146c6bdafd25bfb8ad3804f8ea54cb55e2c0b8836d962ed5a31d43e38d87" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-arm64.tar.gz", - "hash": "550d9337abe83589d16af1fa9e6e5ca782a235dec3a23e6fcd98fddd5e46ee159086b1e18e41e4cfb3349fead3bcd0d2cc4525ed2e90a51f01c12dbd1fb7b550" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-musl-arm.tar.gz", - "hash": "c5bc577928410a281e5c33ae7dcf44da3ea1d12567d49c25df0d96f2a20e3e0cf33ebb2d6d62a352a069e1104e42b532adda3c34d1ef4146a8cb5e7d99cfdb5f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-musl-arm64.tar.gz", - "hash": "eeb7459b8e14dedf7a796da289f12a13e587bd22d488000e87b96a8c57c78b6aa19fd1002cd216598bb1dd73a753736e382025a94487ea00978fea2c64b291cd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-musl-x64.tar.gz", - "hash": "7f51b2e9bbb36a3b226e5c0025c5f84f8db6687e0b288545202858288d2f58e72d2fbb3bb7c4c2aa7637ed8e5a1272febfcf99ab930a36c76b7129b663e4f252" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-x64.tar.gz", - "hash": "7b22a359e435de4f6b8712c30e3b45ddde9e1b62d087ba1429d6a7d89a2e4e52dc10500d81e20ef6e54d9c13480b169ca33290e8aa1100b54c4399f10d4e0367" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-linux-x64.zip", - "hash": "5f5f1ba995063b7fe3248cf4d6109e034c7f18ca84629d99d08e5380bd27267e2b5c71a9545f7d5dabccc337d8f08b52d7f61471d6cba736e593f029e2959550" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-osx-x64.pkg", - "hash": "9508370e9b5eb6c324b378e7923182ddfd97a9b912ef13977555f1858f373c6c43f1a4890790449ed8e405969d8b563d32d16b435200c4578f2f2ca8eb7e359d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-osx-x64.tar.gz", - "hash": "b07ecae6d2e3caf4da02da5957d3c07063b0045ce8ecdcf719d38723c9770f43418d463535964d3188bb46b371dbce8c4c54e39b5c01fcf702a2ae845b0d8d84" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-arm64.exe", - "hash": "2b9075f2b23ade0516e384f1d0838827ff397ae924542b18fabfbe38e0c29172fb9e08211e0496ae6948550c6b37d836813cd46f9ac3d451bf71664f5b117da1" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-arm64.zip", - "hash": "81747f914a73059fae7799221b7626c0b1156c5e9bd9c0857ab3a22c7aea57406aaf145f70afe3e8cbc744acf8f0b9a22570ffff54443e6bfd58da15e74cd89f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-x64.exe", - "hash": "108ceaf44e2dcff0cf3d972977c7f45cabc9b01b550bb5e5db60cf0f0ee2b57b99f18a0872f8a426d688e68b402a1ce4631f85f6475b7dcbed2911e73f7d0443" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-x64.zip", - "hash": "8e3f9d1a14c603aef3712f9358c8d3e97fa21f00c3f66192b9905906d2bd8061e1d34ad9a932cce099cf4a224766c29317d945671953a4804b0f69cfacc1d27c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-x86.exe", - "hash": "9cbf137de388cba6e3376c3f1b8a62fddccd9f981be9d948e8539c90ad689cc19362d598ef19fae6248dbc9ed831849b82d77119f04b690a65eefd67cb29276c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.213/dotnet-sdk-5.0.213-win-x86.zip", - "hash": "ff35adfa54a5f618f516cd10de889560ad014930277ae10a9fc217bc83762de6a66bd0a2d7f8a8772e27599ad08aa320cebdec9b6a28a75f36686707d9043e85" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.16", - "version-display": "5.0.16", - "version-aspnetcoremodule": [ - "15.0.22077.16" - ], - "vs-version": "16.9.19, 16.11.12", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-arm.tar.gz", - "hash": "d1572dc30ff345a43858a78676e33645f6b7a262e840aae6f4b996c6c26c1d2d59575c9d1da4b829d71b60b20edecd426352ab7cfac51935e41f2c8dbcc79b55" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-arm64.tar.gz", - "hash": "624737bd29475b923ba7e3c161df4dcffb0463c1b1308442f4a88aa59940d9c943624d3bfc19ed3dad39347f093c82d269f94ce547cb59b138863d510cc2bba1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-musl-arm.tar.gz", - "hash": "b8546ede8ee4625ac237062b41c18ed3cbba440c99bd3083eae45aaf01efa822bbbedc68e96135556a1b4bec6ec5fe1cc62a0fcd4dba800779690a4c5db69bac" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-musl-arm64.tar.gz", - "hash": "72a82d95dfd5210653253c5d3d8ba4eedf67530f11d0680b547f31d77bde0d13a957a5af59ca71e86f70960facc7119a270ca55c050cf985e7e56b6b331d1490" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-musl-x64.tar.gz", - "hash": "d7aa3a3753505448cc3ba38bc17bf767503e328fade8e8bbc6ac5da8e12ec29737159ec75d327ee71e7f628282a272df0fb4b20e296edbb5f282d2db859a1457" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-linux-x64.tar.gz", - "hash": "051bcc3f801ab713eb8d883a1176e45e5842f56ef42ff66b643dcb233205ec377a8c66a58c9c1cbc2927eb35b611a8825af7d08f8432785d9b42f8423ee65d25" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-osx-x64.tar.gz", - "hash": "fa80ceb8cd45c4fd66022b163aafe638169de7f82e01a25dc309936e995b9f3eb725d799ca86c73f9893ecc62cdf53757283c439ea388ae4210e0c742798d639" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-win-arm64.zip", - "hash": "2ab87ce18fa970d7a5e85a3318d165069c0a1d86f56a62c213872e3962d489efeb4a70962a0dfad7662a686167fb85a125e36a0f7bd7e7c15aae34c471761b0d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-win-x64.exe", - "hash": "d54dacfa4dda13bed5f405b08741e0edb265dd03c502c9532919242acf5986140dcf804f7918e2dcb907371e20bd45dd702f91759b9ea9685e8f26eb129b7508" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-win-x64.zip", - "hash": "a9d4c34c8e734375f04be1c5e5241eacf323c807485460bbd7eaa2d65a385e2f6b37f6b0544eda952cede3f481b1797de182c2c4ac5e7fabe645b4ae5b6f2e93" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-win-x86.exe", - "hash": "e188fc07a8e2f46318cc5d2ecdfa45115cefd9f868c2e99f5f65800c6a854959c0c42f9539ed081315d4aac3f9840aea495bc0ee195d184bab943009655556b1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/aspnetcore-runtime-5.0.16-win-x86.zip", - "hash": "1798ed5f2f703a6f40395a03cada0722e55086a3b84c35e258ddf00663d90d20cf4436888f490d761429e4dd5cd60b8956aefd86c9038cc1acfdaf7bf275e2da" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.16/dotnet-hosting-5.0.16-win.exe", - "hash": "898fef7e35880c08febeb7438ded21913367881cc208aa232e80e307f968d73df9d5d1f8dac086c08619f813e7802a3054f0ddf6c19582148f37be10c71fd1d3", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.16", - "version-display": "5.0.16", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.16/windowsdesktop-runtime-5.0.16-win-arm64.exe", - "hash": "868b608bcc75b544ac0e377a16eef4edda94165a4f900de51c8336edc72082c9d3d78cdb4f7eb0fdd0334d68508a77c6e90062e3b7a76d5227b86a22dc59edb5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.16/windowsdesktop-runtime-5.0.16-win-x64.exe", - "hash": "87a80b3ddf837476300faad0d36c491f05d9343bc553ad76fa0c4b7c753fa3b435caba6ba1a920e732c0fc14f22fe1942bc6f59bfed834cf3b4d0c8f125353d8" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.16/windowsdesktop-runtime-5.0.16-win-x86.exe", - "hash": "bc99476c311172864a4081269d1016eae306a120311fb3842ae8d726f553d7b987f2fac97e968f74a04a213e62ce324971b02d02aa5c8a828096625bf3a469a2" - } - ] - } - }, - { - "release-date": "2022-03-08", - "release-version": "5.0.15", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-24464", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24464" - }, - { - "cve-id": "CVE-2022-24512", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24512" - }, - { - "cve-id": "CVE-2020-8927", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8927" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.15/5.0.15.md", - "runtime": { - "version": "5.0.15", - "version-display": "5.0.15", - "vs-version": "16.9.18, 16.11.11", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-arm.tar.gz", - "hash": "90942a75a13c508189780b5378830344c8bea43118c4a1ee72c30791cb84803be1327e6a19dd672b60f262abd0e880f4e7ede5c88e5a717a7ef4261719ff9f69" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-arm64.tar.gz", - "hash": "2e53cda13100dd7b2f39b62e09d052770f3444025f379741ae7898c3e16a787d000dcec282d495dccfc0e6c0fef23db03d8982140a3447769e9a7034c41b59bb" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-musl-arm.tar.gz", - "hash": "eb2575bc9c45908653145bf1e5ca3b14c2f2a91b3a5e6856478779db6b538ee42f8cb81188a665feb047cd730a45238aaf80fd10e50c7120a0c4200639a0a982" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-musl-arm64.tar.gz", - "hash": "0c7ded4e35f267c2c3866532b40c4af2b047ff85c0e9f3aed5c022a1232d15dfc5b2703966f14f0c5a9662ddacf78f604627603b416c1e5e910821ea2c263eed" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-musl-x64.tar.gz", - "hash": "9ac891ea130e0cc6a718adf0c4f1e3da327e2fe8c69d7df9625ebbf6f91c6351a20e669ff47bb527c057d4a91a29c818c183ab026a0b50fa94d148b25d7065f1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-linux-x64.tar.gz", - "hash": "4c652a02d35bc8bafbcf15555ea319aba7c9077ddb55786cb27a11b5b16e70ef026d1d561268185e398afd16f6db1f02b4846cc83a7e0f1b0b1a07a12f84c7ee" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://download.visualstudio.microsoft.com/download/pr/aae7783c-c033-4308-ab45-7edf78d8945b/bef03269b50362c36a56a6f21693dd26/dotnet-runtime-5.0.15-osx-x64.pkg", - "hash": "d31493b7727a755e695f0a7079c0a326cedd97c99c2b138202458e3279b80568e5ed859e1564c3d09bc3289ae7a51220c2794c66cd7207f10e349a94d2922489" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-osx-x64.tar.gz", - "hash": "8d5ae1f8af960577215e6e96a30fdb886c7f4b0ae0292263d46bdfa0bd67083d2480e03c4acd1b451a65b64dd9bd55c947c7e6367b936fe720c2cd7ddde75f78" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-arm64.exe", - "hash": "c0746f17770f52a9da71e1a3f30176cc0289ea68a1d453d1cee62950df8b8cb575eeae3f2038a11663becaac94ebf83e7a49ffea255c143deb053e0a5852e803" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-arm64.zip", - "hash": "3a99e9305250a8e490a140ae62b3e18b1f2972251b6efc984555572317fd194bb262a72d3ed5f292529581840b35897eb939bb46fb5ab9a784eb55d6c817a3cc" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-x64.exe", - "hash": "f4f0961565af9d2b93cf12dc7e2e0489965837996abfca82f64fd76a079d50e26254ee1a33f9e8b320f254feb48a5b6536ff812b634773c9392993eb37743482" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-x64.zip", - "hash": "8aa6c6864fb9c4fa024f9af678284010fc4b9788f33a91bf2d0e4479c745f7f40bcc91cffd569e5d971fc99cfaf09c8a05ffca5ed1c70cf4a4b0ce0fe4bbad99" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-x86.exe", - "hash": "01546937e77709d8158c1c61e03218b1d347744a666d7353117b469ef7d65abf99fdcfa9b22e5c169fd1e455960080c8a1ad752c8fae2db84804fff830593dee" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.15/dotnet-runtime-5.0.15-win-x86.zip", - "hash": "d099b9ebeababcd7d1c7292c6b5d0b63ec46cb8a43439051aa4b07858dea2f6d1b5b49c5f7cff072e60e657254ca1ae23649989d72af34f6d6984f99e9c3a083" - } - ] - }, - "sdk": { - "version": "5.0.406", - "version-display": "5.0.406", - "runtime-version": "5.0.15", - "vs-version": "16.11.11", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-arm.tar.gz", - "hash": "7ac3e2532de5a6b41f379fee445d85040bd033799d525d021b8d582e97c22cc24b3ddfac90e222944a36e6f01538b9906b58cb0bd3c09a8cc56fb82fed8f6a79" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-arm64.tar.gz", - "hash": "df52611b3135650322030d18c685fa6d0fc0adabae976ea9509ab3e4daa306098b3e4dca31f1950c573dbadf7cfcffacc6ad609c893ec31bbb4df897548651cf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-arm.tar.gz", - "hash": "288721b334953ed275e48c62213fe806a7332a3a130ffabdd5e334352192dafac81d1a83a82d68d2218785fb2dfe620136988bc1772275d243e9a057d08f1c87" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-arm64.tar.gz", - "hash": "1920265743214d4870ea1af1239868e1f55d63222c1d8c89405dcff49c8b98d9ac02491b08fccb489b623757ff25b8f5449d91357108289d61975c5f583ec2fb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-x64.tar.gz", - "hash": "04b9fda51cf3bd648101bc3eb7aded745da203fdbb801fb1a58013c32f7d5ff19392ee4bf68e7abc2a1ca4da1bc7bff888da124fbdeb9d874c718e8aec736f9f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-x64.tar.gz", - "hash": "21f0617d359d5c333a8925af71b359c0e9e371eaa6e4b20faf0f699296cebaacc56cb9660fa310b2ed99ca636f241f2df999698a883cf7899dd670bdf92bdd29" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-x64.zip", - "hash": "86d00f48d9b920bc97dd9215cc80ec3ee5a00a303cf0048333331aa9c6ddb9a4bd5faf241cf82a74d762f89995f72d41916cc76a0be39411345b6b320c5c693b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-osx-x64.pkg", - "hash": "83e3a2d403ad6ba90a0ab6b2d6920023917c68416835651d885f026b8f3fa4afc16ee20d0ec0e88471a4f4e93b107625db3c02d722de245234fcae37b6c1a59e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-osx-x64.tar.gz", - "hash": "56bb978949d446c3f0cc7255897ebdf42573793fbd4f8ceb544fc0343dc8375a5c0eb68e7527ad8e5e9fb00406529b06048795f1ee398740ce0356d393046989" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-arm64.exe", - "hash": "208537c41817223ffbdd3d9d7fd189dea42ef367e59d83db639f98c482c85be8c4bad0841a91f2599db6e9893302cbf72f65245ab4a294a94cc4c32777249d85" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-arm64.zip", - "hash": "3648c4fc479490c55b93d88edc4c69c1b06d45643a09db3ff1d1b0d59b26a64621d844fe14ebbc914652ca8f64a7f44757fce155d2abb7bdc7e10ff8da2dd576" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x64.exe", - "hash": "181e14cf01213ae333911e7fc781cc86b5ed61a0fc14e2001c3cd0186b32a023ca4ca23d18eaffe450c35c7f0f2ce5ca3f787f46daff17e2ebed8a352d3e9fc7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x64.zip", - "hash": "e63dd1c32e2bcd3e26bd5fa5c776b65df1f533eafa9a9d53287530eef62dbebad2411c82ea1f6b0b2c0e4db5cdce8222f9473529fd14649a6b26c9ec1b603793" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x86.exe", - "hash": "20b7f06832f5bf0dc960043f75826f381dab2eb1fe77b7eb0abf8b86e2fe3cdbf0780fa93b2ab23c2f524b657260f86efbf0d88e042085c9a6fffa96060b3d29" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x86.zip", - "hash": "c6b4e356922e1295e11e219308a9df900024a59bbf9f6dc86514d5d6d916c7b84a87558819f76704c4eb37b127c7cbdd3ddf918805537cc4a63075f7ba408540" - } - ] - }, - "sdks": [ - { - "version": "5.0.406", - "version-display": "5.0.406", - "runtime-version": "5.0.15", - "vs-version": "16.11.11", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-arm.tar.gz", - "hash": "7ac3e2532de5a6b41f379fee445d85040bd033799d525d021b8d582e97c22cc24b3ddfac90e222944a36e6f01538b9906b58cb0bd3c09a8cc56fb82fed8f6a79" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-arm64.tar.gz", - "hash": "df52611b3135650322030d18c685fa6d0fc0adabae976ea9509ab3e4daa306098b3e4dca31f1950c573dbadf7cfcffacc6ad609c893ec31bbb4df897548651cf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-arm.tar.gz", - "hash": "288721b334953ed275e48c62213fe806a7332a3a130ffabdd5e334352192dafac81d1a83a82d68d2218785fb2dfe620136988bc1772275d243e9a057d08f1c87" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-arm64.tar.gz", - "hash": "1920265743214d4870ea1af1239868e1f55d63222c1d8c89405dcff49c8b98d9ac02491b08fccb489b623757ff25b8f5449d91357108289d61975c5f583ec2fb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-musl-x64.tar.gz", - "hash": "04b9fda51cf3bd648101bc3eb7aded745da203fdbb801fb1a58013c32f7d5ff19392ee4bf68e7abc2a1ca4da1bc7bff888da124fbdeb9d874c718e8aec736f9f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-x64.tar.gz", - "hash": "21f0617d359d5c333a8925af71b359c0e9e371eaa6e4b20faf0f699296cebaacc56cb9660fa310b2ed99ca636f241f2df999698a883cf7899dd670bdf92bdd29" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-linux-x64.zip", - "hash": "86d00f48d9b920bc97dd9215cc80ec3ee5a00a303cf0048333331aa9c6ddb9a4bd5faf241cf82a74d762f89995f72d41916cc76a0be39411345b6b320c5c693b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-osx-x64.pkg", - "hash": "83e3a2d403ad6ba90a0ab6b2d6920023917c68416835651d885f026b8f3fa4afc16ee20d0ec0e88471a4f4e93b107625db3c02d722de245234fcae37b6c1a59e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-osx-x64.tar.gz", - "hash": "56bb978949d446c3f0cc7255897ebdf42573793fbd4f8ceb544fc0343dc8375a5c0eb68e7527ad8e5e9fb00406529b06048795f1ee398740ce0356d393046989" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-arm64.exe", - "hash": "208537c41817223ffbdd3d9d7fd189dea42ef367e59d83db639f98c482c85be8c4bad0841a91f2599db6e9893302cbf72f65245ab4a294a94cc4c32777249d85" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-arm64.zip", - "hash": "3648c4fc479490c55b93d88edc4c69c1b06d45643a09db3ff1d1b0d59b26a64621d844fe14ebbc914652ca8f64a7f44757fce155d2abb7bdc7e10ff8da2dd576" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x64.exe", - "hash": "181e14cf01213ae333911e7fc781cc86b5ed61a0fc14e2001c3cd0186b32a023ca4ca23d18eaffe450c35c7f0f2ce5ca3f787f46daff17e2ebed8a352d3e9fc7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x64.zip", - "hash": "e63dd1c32e2bcd3e26bd5fa5c776b65df1f533eafa9a9d53287530eef62dbebad2411c82ea1f6b0b2c0e4db5cdce8222f9473529fd14649a6b26c9ec1b603793" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x86.exe", - "hash": "20b7f06832f5bf0dc960043f75826f381dab2eb1fe77b7eb0abf8b86e2fe3cdbf0780fa93b2ab23c2f524b657260f86efbf0d88e042085c9a6fffa96060b3d29" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.406/dotnet-sdk-5.0.406-win-x86.zip", - "hash": "c6b4e356922e1295e11e219308a9df900024a59bbf9f6dc86514d5d6d916c7b84a87558819f76704c4eb37b127c7cbdd3ddf918805537cc4a63075f7ba408540" - } - ] - }, - { - "version": "5.0.212", - "version-display": "5.0.212", - "runtime-version": "5.0.15", - "vs-version": "16.9.18", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-arm.tar.gz", - "hash": "5c29669aed5303e417af8d6d67023e01dea4be6499bc1b570de486e61d827bc5981a8fb6e8b83e220c137d2d42e9d8d3cb46c1a85ca99b1c75b52e81265e4241" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-arm64.tar.gz", - "hash": "5abdcda5a647d742664bfffe018d027bd3bc9dc5b3730472a86667a841aa5763b4c3b4f8f654912d170984b3a2d2d2074ba784a0795bad1174674e5e0ce624b9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-musl-arm.tar.gz", - "hash": "fda40f6b4e6012789f137d71a5d1813a429faa4c9dbcab5ffd27bf932a2e4d560b48ff2cf0a7438f646b547d19832bbeca7acaa7ad3d24fdfb049cef5fe97c96" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-musl-arm64.tar.gz", - "hash": "a84ff994602532a76f9494a8c408a8f6b4623b2f750d72e366bf130a0f2b7cd5e33fa46a56c02dd832e01ec90cba70f5dd0452f73d71922879bef358f79274d9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-musl-x64.tar.gz", - "hash": "341282d1187f118ca00c2e908c053d8722cb880671bb5d01b5616a525872b34bf23d024e786e1cc00418aba0fb13558da4080b74deeb8cefc6a1b465ab9a44d4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-x64.tar.gz", - "hash": "c13eb20d2356374c266b983ec15c5b12e06d3c39b04839916affe758f757c64ce3854701cdb2c25b6e8ad3f2914f67e9dec3993e85e575d3085b32a6b9dd7f12" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-linux-x64.zip", - "hash": "1cb7d9d1481d46a94842ee490aa10ef85d6bcf025ce02624a4e62549fe883c9494e83b050591b9363b244f8166f466e9ace3491058657a7041f24c9f1c60b4cf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-osx-x64.pkg", - "hash": "9a80c09924307e56dfdea430701be4640999f838359c8254d68991b8b1615f83b0b9fc70b0819b17ef1e04b645979c2bd89a87847130978afbfab875a0826610" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-osx-x64.tar.gz", - "hash": "8dc0d3a5760beafc45080d33ef618cd866ab57d0aa32b9b0e1c58c90743d9075e7d19e440a17e57e5bee4a1f503a0482ecc2a12a530f54936056658efb3eaf69" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-arm64.exe", - "hash": "913b8c781066cd264fe0b4c2cf0302dab7156cf6b214ef6d94b163092c95a0b7e689a9631f7ca99b02a5557427a261f16cd6f7a6f4ea5d55cf8802fb3dd7803d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-arm64.zip", - "hash": "601ecbbe2d2a03861eb76051228f5668517def3e17551842f87379e47245f8caaf14bcf63b886f9fde2defc8ba94504b784ae65d6281b8d2be3be6c6a15d49ab" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-x64.exe", - "hash": "ff6360fbbc1b6696866c5271cd558ed607662080df4ad0470054af3d3ffd1cfbd4b05576279aa886f99ae9b836241fbbb5bf7c8a235570702a054d4e61c5c7e7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-x64.zip", - "hash": "f7cc04dfae884fbfd715ac73c16888b230b8cac128aa8a8949116f5ce0b439f264b4b402a5e10f0f8ecc726d085c4b3ac4deca1283d8a22bdfaf4552ee749f41" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-x86.exe", - "hash": "7befcedbfc23985bca7276c074b0ecf45a9f7a0f521e4b54b650a3a2217e159fae61c11515fa06570a7a2d8b5ceeb2a9ea110f281f555913b1a4e7bb21710dd6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.212/dotnet-sdk-5.0.212-win-x86.zip", - "hash": "0dd6ec6716eae5f6a56223b79dcde7c4f36d75aaeb2ea5f2bd5439274e6ca7e23c7b2ab0c1caacc6f263a9b4e267c9ee01c6b29cc181a63c3f81a4c94f485108" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.15", - "version-display": "5.0.15", - "version-aspnetcoremodule": [ - "15.0.22048.15" - ], - "vs-version": "16.9.18, 16.11.11", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-arm.tar.gz", - "hash": "15185d0a58e69db258ace42022076184815c8838ba195b405bdc3b4187e311f2d0f2f6876f752d5ba16c5e87ddb75299bfbf5a438d27df02d1cfe02463cbf5d7" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-arm64.tar.gz", - "hash": "df1037918f652b68d84639718ece0a726a6caeb977e125a3a57fe8fe146af43a892335ccf193efc1926962e4b1d8e05b8b7514303ede574478fe3e1c2f8f0d68" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-musl-arm.tar.gz", - "hash": "33ee1577c68a41aa9a0595e52a97e76bb389a5bbc573afd70d25244c8f908b3d0080dde5151fd7f29d4560c84355bcaeb1c83523bf80cbc8fc099e5d51683519" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-musl-arm64.tar.gz", - "hash": "4f47cb78509b3ef72d4000fe37d9ab54bae548db2d3458cbded4acb4e6170ee04888f55e96bb0bd3ffcc5415f7e66be64fbaf6b888a5b785de9a5eac4968394d" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-musl-x64.tar.gz", - "hash": "efb8489cd56e8ea4b5a8c844193f68986dd5438c567157481b2fd6489540f3d67daab6656b335a72fea3220feb1d81009167db08ccd615c1c203a698019acebd" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-linux-x64.tar.gz", - "hash": "e0d0f5150bac6234dda07da91983eb1a4cb13320d9e06fe83dfe4155abbb4125ce8053638aced998cd9d040a5a595c97773004d16123a9bff6da43a9c0e266eb" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-osx-x64.tar.gz", - "hash": "443684e1672013824457c4dfd965cd88a9817466334b28ff2fa5d9150a0f7d281820158f1872faf68a1661c0092c32a553acd88405bb4d7e55d65e92bc52cee2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-win-arm64.zip", - "hash": "719cbc4652d1be4060782b48a0f785a3bf53398e53ed5cd40cdc4e070c9dde488eb4a4c1396cef6949b9570543b3098e804fd6011a8bbd427ad29864b958d240" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-win-x64.exe", - "hash": "9d796d21d2c79dcea3827eab27dae7709e80f1a9ae39b9500a9143610b876f5283ff4221255492371dd2726b4668af5b00f86758a020a56a11c888c62f5094a4" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-win-x64.zip", - "hash": "5b483550fdb4fe3e056524a60411ccf1f36068ca89d252fb996ac8eea008292538916ba95b54c4a3789c9257167a79050c4b97cadc97d6de944457d510522d11" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-win-x86.exe", - "hash": "3ccffc9b26fb5b875cd5ce5fec83028b745b9b90751a6d5614cf808b5598e9f14ee4c508b18e5b811705e5cdb3c1e7b79deb2d4bbd3e8f83aaee7bd59530672c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/aspnetcore-runtime-5.0.15-win-x86.zip", - "hash": "b98e8d5b160ce04798e72e3931bd42839ffdfd99d24fd662c80693f5e60d7cb3599a92fd31b17f3c0d076f6da53a33e5fc1fb888083631e6f8f04133b2503059" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.15/dotnet-hosting-5.0.15-win.exe", - "hash": "cef2f406f336ac5d736278f09b8a6d232927215eb1f03a1430bf555770ba4febff53eac8100873d9025bb8467fd27afd6a54b180cba6a987fdc88ad6ab49328c", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.15", - "version-display": "5.0.15", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.15/windowsdesktop-runtime-5.0.15-win-arm64.exe", - "hash": "76a8d3b2bffb49886bf25b20522ec5ae3d272a85fbde3861db8e344328c738a1d16ca1c9b90e4516cacb13dfb9af137e3f47e0fcacd7c89f7e7af5d46b7abe60" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.15/windowsdesktop-runtime-5.0.15-win-x64.exe", - "hash": "99f5002ce96895c1562f3c4461ab9710e9585ff3b2a4f25a783bd0e27595cc709c5c1fcaf1d9fa04c7dcab51d05de7ffe1bf3e4b3af2e684ee62a3ff993defd0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.15/windowsdesktop-runtime-5.0.15-win-x86.exe", - "hash": "853b4a0210469b54e85d3d34df0985e91f2c660c7d5a6b2f830ec931631e7a9b6d7e7d70b2487f6f40fcf38f2dac404dc7ca04fec397183a53cc373be97b3607" - } - ] - } - }, - { - "release-date": "2022-02-08", - "release-version": "5.0.14", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-21986", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21986" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.14/5.0.14.md", - "runtime": { - "version": "5.0.14", - "version-display": "5.0.14", - "vs-version": "17.0.6, 16.11.10, 16.9.17", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-arm.tar.gz", - "hash": "c6fa8c0218cdd98fee31cc24374f161c85a49415f21e227dfa24944e45fdff4087f6d865d21f0e2105618d76e95d2153d16a9521315a21e854ee3b0522c366a6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-arm64.tar.gz", - "hash": "4de448bfe995042aec23a280ea1c5df53b5ebd2702da32885d5d9fd06fd64d06a0eee53fabfe4d21a40e2bdd9c01b69e8defe7697b0cb12fc052e2d1e7d3d822" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-musl-arm.tar.gz", - "hash": "485a4513a92aa98c7b62b7381fad9454ba778f90df4704fd27f70c2386d51aca306187b06b95cb13c745505e0589cdb837253783194884277c752e9f2f02e629" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-musl-arm64.tar.gz", - "hash": "e45f6f1442503cf8ec1d0647be1ab444dec81884f0ba2d45046eb5b3ee9095f35fda8e9f6efff2d8813bf6d4b22b87b9298c6f3af7d6618c984d55835f636288" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-musl-x64.tar.gz", - "hash": "1136ac2a2686a6a16406899b118adcde0aea0341c7d4e781b256543fc1517bb116128497103d7456dfac632c3e75a7ad9d00b570bfd77ed9fbc7ef239f67940c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-linux-x64.tar.gz", - "hash": "49d9046ecbe5881f8e29f0de787926b69ba2e2bd687b40b840da4139d42858b4ab1f93913dfa2cb28c835f81ab0eec0077e4652f1e0040be78c42d43e0ce6d6d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-osx-x64.pkg", - "hash": "0d6d05ebedd5beb7431d43e6b2a2e356624d6e685a878fddd6a48d3c1d33a4980646e57e6fdb8f6ad2af8798e48fd0f86feb8ea5c3009adf6f2c758503151199" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-osx-x64.tar.gz", - "hash": "a61731b0cc663e055947d90b3cfcb101c49898e06749e3745846a0778f650dd0af934638b4511455f56077fdd127fb47bbf298b55665cf7b915f6a61a5630a2f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-arm64.exe", - "hash": "7af6e14f7ac5e94ce7b714ce46d5a2dcf164ea59475dafa79369e7aa12be9a19fed527fff59e54dd44dd1dc6bd380a540f73560138582b6cae542d8e7e768f10" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-arm64.zip", - "hash": "1ebd6bc62e89c36abb4757006c18b97010b46a93c1e9caaece0d3edcc69da84f7491160f248358e03f4d1a892cad3913426fe7bd6b46e74702e3014de928db81" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-x64.exe", - "hash": "6050c14fac546805fcc8252469dfa5c1e6c0b2ed10942b012396ac68fe56f27609b485aacc9510a04ec1c500c7d416e52d20ddfe4dfd896d1caf760df79217c0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-x64.zip", - "hash": "1e6fd270b462a312ebba8411149046b5e4b0a6e7618f6d595ce7d563d9f0a6ddf378f1f6d89152b3b5a64091af5d7b06f4949317e28e806cfd9c145b3d0ff711" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-x86.exe", - "hash": "08f6aacd43d7405a9840fe467a2aece3c0256f6ac24e7133be468f8dca58243d976a573ca9303ec10dac14cca654cd76a80a6717880385962e00ad5d2377316d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.14/dotnet-runtime-5.0.14-win-x86.zip", - "hash": "a2ed9fbb06494dff3f086767d0cb65c7e8a4d27adb7a6408ef4b5955fd32c1928782f9fa599ceecbd3cd387f49701eb3b4ec1e52604a9731bfc09eb4b1413009" - } - ] - }, - "sdk": { - "version": "5.0.405", - "version-display": "5.0.405", - "runtime-version": "5.0.14", - "vs-version": "16.11.10", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-arm.tar.gz", - "hash": "a84eaa3ae75377bf9c6853c58187888324ca412a51bf7f3f96b1fdefb4dbbc02d4d0e71e5e6cbd07b4124684cda054ec14910cbc220d1120845ec6219d7e0636" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-arm64.tar.gz", - "hash": "f53ee4bc1b5f79300072f4e8f71eccad5f9bd72cef7c792540309f98dd4fc175647422d16f2f48d0645474aae4a10e33646f0d4b74461656a49d34d765e71451" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-arm.tar.gz", - "hash": "f9296088d1283135c874d0efb0bf6c4cd90c6e2dc1005377b08a75df819bb480c9cafca22e83393bfe1c45e9a2fbbf85ae3b7d5a26b4b84f17edc69ecf6f3aa0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-arm64.tar.gz", - "hash": "a519d0455e3a786cb5018c75f1705d975118b5eccba15eba158c815ba05cef15bc1703c12e8d479e544136f6c5a7e260831159cdbd8b6e06c300ad770ce3433a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-x64.tar.gz", - "hash": "b37393cbb6cb1cab4efe88741b29a70d9a519a21f9a0ba870a2be58e7fee30d6b9e7da57aa572df5d4f0c876dd43a1ad11517d4988b5ec26511215f6c362debd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-x64.tar.gz", - "hash": "be1b3b2c213937d5d17ed18c6bd3f8fab2d66593642caf14229d12f68ddfa304edb4d88ce735ee0347969dc79a9e3d7d8cddfb5ff2044177cda0f2072ed8bd47" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-x64.zip", - "hash": "cd0ae1ffd9540bea085f2a9bfd961a476c04e160721882172660c4f491dea4902d8999a95c468b0fb60456b1dabe871c8906697789bc9e261efcd2cc5cad8e12" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-osx-x64.pkg", - "hash": "9495c6c177ab066c9369c66490f53e97b3a80c1e61b333d6054bd0f4da76393c36dcdf74eb453f74b69b6305ca69241caad4a9335280b37073d8b625aa5d2102" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-osx-x64.tar.gz", - "hash": "125847bc5d66a7e1bad8a6c1ee6b897f7279d3aa772f746c2d9479813a07e4b0d444f05f1a4001f2aa8ec72679d653efac37dd0367729edc50fd34ba324c2103" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-arm64.exe", - "hash": "754c4df00611f4add5ead44f4459c45eeeff6b884368f4983b307bc8b885fe13d0b4fe4be75a85f0f68cb90a46cc86fcb96fcf1fea4e29d3fa49a2e1aee52dd6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-arm64.zip", - "hash": "39e98f4c8be7d4436079c783e3f5ad8812de533aa7756ca5d3c37d8362802e477170115df26ff80c61398cb21e3204be37eba7979a5a3cd4163cef6ed0555d61" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x64.exe", - "hash": "a0f2d81ae353eb8af4592300f2b8a58c8e442f17244d76dff8f4d0bd7b7ccc845b1a74925bf000a1375ba9905601fa480e4e3ccd719448513ab09ee88894f7d2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x64.zip", - "hash": "73b5e17fa86965d720cb73d39a97975dd7f5f26190606567b373c19642e92ebd1a85c3fa5306bb9fc6d510abc2dcd9d070b0e22f551e414136c9e2de2bcfc92a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x86.exe", - "hash": "5c9852299acf5bc688f903a5a2ec73a12199cdadacae384d13c337f21431fcf57143d2ab9e8ad930126ef9f84a19748bdf9cabc06ff66c63231247edfb46c28a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x86.zip", - "hash": "15ef053fb824584db3dab95ea51d2008808c4c425e7e67af77c9ce97470c500b070afd581f4668ff4dd127565dad2dae49c25195d8dcf27d862f2ce4b8751ed1" - } - ] - }, - "sdks": [ - { - "version": "5.0.405", - "version-display": "5.0.405", - "runtime-version": "5.0.14", - "vs-version": "16.11.10", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-arm.tar.gz", - "hash": "a84eaa3ae75377bf9c6853c58187888324ca412a51bf7f3f96b1fdefb4dbbc02d4d0e71e5e6cbd07b4124684cda054ec14910cbc220d1120845ec6219d7e0636" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-arm64.tar.gz", - "hash": "f53ee4bc1b5f79300072f4e8f71eccad5f9bd72cef7c792540309f98dd4fc175647422d16f2f48d0645474aae4a10e33646f0d4b74461656a49d34d765e71451" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-arm.tar.gz", - "hash": "f9296088d1283135c874d0efb0bf6c4cd90c6e2dc1005377b08a75df819bb480c9cafca22e83393bfe1c45e9a2fbbf85ae3b7d5a26b4b84f17edc69ecf6f3aa0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-arm64.tar.gz", - "hash": "a519d0455e3a786cb5018c75f1705d975118b5eccba15eba158c815ba05cef15bc1703c12e8d479e544136f6c5a7e260831159cdbd8b6e06c300ad770ce3433a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-musl-x64.tar.gz", - "hash": "b37393cbb6cb1cab4efe88741b29a70d9a519a21f9a0ba870a2be58e7fee30d6b9e7da57aa572df5d4f0c876dd43a1ad11517d4988b5ec26511215f6c362debd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-x64.tar.gz", - "hash": "be1b3b2c213937d5d17ed18c6bd3f8fab2d66593642caf14229d12f68ddfa304edb4d88ce735ee0347969dc79a9e3d7d8cddfb5ff2044177cda0f2072ed8bd47" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-linux-x64.zip", - "hash": "cd0ae1ffd9540bea085f2a9bfd961a476c04e160721882172660c4f491dea4902d8999a95c468b0fb60456b1dabe871c8906697789bc9e261efcd2cc5cad8e12" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-osx-x64.pkg", - "hash": "9495c6c177ab066c9369c66490f53e97b3a80c1e61b333d6054bd0f4da76393c36dcdf74eb453f74b69b6305ca69241caad4a9335280b37073d8b625aa5d2102" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-osx-x64.tar.gz", - "hash": "125847bc5d66a7e1bad8a6c1ee6b897f7279d3aa772f746c2d9479813a07e4b0d444f05f1a4001f2aa8ec72679d653efac37dd0367729edc50fd34ba324c2103" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-arm64.exe", - "hash": "754c4df00611f4add5ead44f4459c45eeeff6b884368f4983b307bc8b885fe13d0b4fe4be75a85f0f68cb90a46cc86fcb96fcf1fea4e29d3fa49a2e1aee52dd6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-arm64.zip", - "hash": "39e98f4c8be7d4436079c783e3f5ad8812de533aa7756ca5d3c37d8362802e477170115df26ff80c61398cb21e3204be37eba7979a5a3cd4163cef6ed0555d61" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x64.exe", - "hash": "a0f2d81ae353eb8af4592300f2b8a58c8e442f17244d76dff8f4d0bd7b7ccc845b1a74925bf000a1375ba9905601fa480e4e3ccd719448513ab09ee88894f7d2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x64.zip", - "hash": "73b5e17fa86965d720cb73d39a97975dd7f5f26190606567b373c19642e92ebd1a85c3fa5306bb9fc6d510abc2dcd9d070b0e22f551e414136c9e2de2bcfc92a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x86.exe", - "hash": "5c9852299acf5bc688f903a5a2ec73a12199cdadacae384d13c337f21431fcf57143d2ab9e8ad930126ef9f84a19748bdf9cabc06ff66c63231247edfb46c28a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.405/dotnet-sdk-5.0.405-win-x86.zip", - "hash": "15ef053fb824584db3dab95ea51d2008808c4c425e7e67af77c9ce97470c500b070afd581f4668ff4dd127565dad2dae49c25195d8dcf27d862f2ce4b8751ed1" - } - ] - }, - { - "version": "5.0.211", - "version-display": "5.0.211", - "runtime-version": "5.0.14", - "vs-version": "16.9.17", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-arm.tar.gz", - "hash": "909fd8b76e3e2a7673717b375942863ea1dc88a11fa120f5e7313369addfab8305eb449d6768a87d994b5e30a4348d74def3832c6d04d26c0cee1e2364cc95d7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-arm64.tar.gz", - "hash": "4261bf7325eab90b9c1470e5e7e142a088c681d60071ce5786d94668511bb4e422737372eb650e7f52e9ba318bf7a45a86818c59250ac7c4660c22e76003ef29" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-musl-arm.tar.gz", - "hash": "71518da22067b741a72c0d88c7254be29691b4eebbe8aee293e354319f6dce30588a9ead2572832a363a495655336eac7121942481a3089d1002f1df1d22f587" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-musl-arm64.tar.gz", - "hash": "6d6a9459b1f7578b8ab889b16010408f025672bbfe0d1d6930faeafee6a8e8cf350ea119211b73079cd1754884488e02f4ed54893de06fd2dfe9b1625e2e8b2d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-musl-x64.tar.gz", - "hash": "fa11ced281b85bf38ea63462f7296a8acd198a19979551c4966044a6e7380d42b183856f4492952af0a1b47426a8c35ade91cf87e3ce2a8ba848a12c0bc26812" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-x64.tar.gz", - "hash": "ad73a3bc0c0aed37168194e94c0e09e1664a3693d09b270a4792e79bea0f2b46727113dd23558849e94fe817ab5abd6f430afdb9710cd21d9885aa1474c43084" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-linux-x64.zip", - "hash": "f1f94efd68e9b04cd68ea4bf4526fc7972a9b666554c14b50456a873b574af1f5d8c658fc938893a10067bcaa16956b9cc2d22d161688763b4ca3869036e3c7b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-osx-x64.pkg", - "hash": "12e5290a108bf4843c0e059d1c2cb614205ddebb249f27d7b15cd2a1c232ea61d0f44d5af6e90dae32540cbfb77a4e2296fd31ffccf6bf1f02a92b8836334e9e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-osx-x64.tar.gz", - "hash": "4032772469fb4fcf0babf241e210dbd1b36503203f2d7f27635cd4415b79a3e83637f240d2a9fb1d24ef6872a27870bdff7672e355359f0b1316a7543d94af55" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-arm64.exe", - "hash": "9914617686b64399657b141a1d4000f6476deb6c2334df7a8ee46536a2260626c2e96d2daf6986a29fc74d907a01fd9ce0d4ccb3dee0a1f5ca79ac74d6a3504e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-arm64.zip", - "hash": "2c90db0ff799fa101a0711efde95f9758aef9a5d6b135c1045a7d16a7b908b3f8fd9344abd36c5d29d033566a8d21be25aa9957a629954c54fa466289bf3db6f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-x64.exe", - "hash": "892ee62667c2154b5d745ebd9b6b99ce2b7b7b3aa3d7af7655107b257166be6e1ba61f65fd0e944a40493fb82b370dbcc837dbe1dd06b4b44467d394569a9909" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-x64.zip", - "hash": "6cbed9e26bb610be9c348ccc7e21e70adf059e768af9f72a159fb343dfc4e1055c7ed4da56d6e856e03a038631b37177e7d58ae02f8da633122a79313f3118ad" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-x86.exe", - "hash": "169a6ff243ff5814d4e343f6bf88210c90b687e717856865a698dad736e77f9d221ed2833cb5f9c2571b56a4c7f6a46194caefbc323cbcb928a127f0f95c5332" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.211/dotnet-sdk-5.0.211-win-x86.zip", - "hash": "cee105fdd3bec786159a39a8e08f90c5a05ff97e0a8d003c4d73245170467cc09ee041719978886c328338949665b328829cd5a19e9bd2ced735f29a82203660" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.14", - "version-display": "5.0.14", - "version-aspnetcoremodule": [ - "15.0.22014.14" - ], - "vs-version": "17.0.6, 16.11.10, 16.9.17", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-arm.tar.gz", - "hash": "e6ca71e905d96d0812ad980429dde96d5363e5f5cd7bfb32990719d9bfb82f1517c404adf55f719c01703377b5db8e3252967969127a023f0761e3b72a564b5f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-arm64.tar.gz", - "hash": "a7f2e3525226d87ecd52c7ee0e702523cd148c7d619d4d3ffab3d4b14bcfa94909016008791aee9b2d6c84adc25d22acefa2a1a6fb7ac60ef0951ff4aa018a66" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-musl-arm.tar.gz", - "hash": "353f6e4f29a9f1cd3b2e124494fdd17eefff27298bbd30db52789e39d9609a23cde850eed4f514ebc1dfa9c28524a6d9dccf64fe1500979c35ef1a60f39735e2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-musl-arm64.tar.gz", - "hash": "7be064ecc76dbb2c39b8821c6525d7726424ed5ebff9dc2352b13720bac4617511164e4308d0d6292748d77de03df7dc3f8e573de4f740ceb47c3fd8868a7319" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-musl-x64.tar.gz", - "hash": "fbde931a95063b3ca2bb264af8c3b19ef85ea4f5e2e09b6669a39f3c08c4eba43a89dd2c64bc9f4ffb49d41f678c6654d1b5c1dcc35430091773983f8bd97473" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-linux-x64.tar.gz", - "hash": "5f12f290e7800da808a2bd7deb654f56dfc0d9ed0f6a7f7f065a8f4816f3d334e145f909f016745d9d9c30438c0f69fe4e11c2fce253228a8cdf609c97d26eb6" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-osx-x64.tar.gz", - "hash": "3d2953aac5c49e99d11aa870358864287344a88b70e17e4ec678843cdafc5e02786b81587fb67f7ea7280825e3c005926e3ff4fc1e4017651cd272ef987ef272" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-win-arm64.zip", - "hash": "9eac38a7a366b9c9246d79eedc4cb4fa15dca01c3860058b978d4045bfa67c70c44b7cc53bdef68c1b2674fc7d6f909db137370289c8e432ce531e82a6282976" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-win-x64.exe", - "hash": "98c68dd411b4157cf07d78edb79131edd647fa2c897a140e6cf362ab83c8624979e69732b86663476333d31fe2c5c9a02af73aa1edf3ff9782c0f3c01417a098" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-win-x64.zip", - "hash": "ec64366954b2f2a03080c88c7ddd0480e60f4083182df4d2b5ab7e5555d70af949acd9cc9aa4f150ae6da38fc0b0f1d5b38365d97a593cbf7cb156906c1eae26" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-win-x86.exe", - "hash": "7db7d1015d4ff83a956eb01e5a271db2f9d8128c199b91b91099eec5800cb3ddb027a4ae24d233774de50ed96bc93239135f892f5e77a52a344e29b82f2064c1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/aspnetcore-runtime-5.0.14-win-x86.zip", - "hash": "62b914fe0d66288e14a3b9cd7e80ebf53fe52a18cd6f5546e0fbe22dfbd8de41f78739bc5b60b667585fc2d2de9f690e787e5c470961b453faa8f105e55a38de" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.14/dotnet-hosting-5.0.14-win.exe", - "hash": "9af148ffb81cacab298798772f11882e9f107d7c40fbcd39e23311cb24541e951cc5640fed2e69e8e5eab3db126f5bf6011fec2b359c42982dda6e188fee6d92", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.14", - "version-display": "5.0.14", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.14/windowsdesktop-runtime-5.0.14-win-arm64.exe", - "hash": "a387c4e7cb75dbd156cae8b460711da6c50618a8a1086f617e1da500021712cb0da698d067d038fcf23a5466ccf0e77ebff7c15aa199e39a3ac0311589af44a5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.14/windowsdesktop-runtime-5.0.14-win-x64.exe", - "hash": "8a9f6e4d6e0ff7a6d5cac4bad1af2dc5421de39cbfeb5f88afe764aca5fe77be2102dc0a78806f9cb30f2b1b9e3b5418e6d68c2a8ca4ed52819a5a1d70cd442d" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.14/windowsdesktop-runtime-5.0.14-win-x86.exe", - "hash": "871b7884c66cef3a5a4567509f4c85c08729283016f43eae800cd15e425b5d7ce45139d1b4a1f2f16e2467ec65d4eb4d941afdbf2eeec6845512dff7d8db06bf" - } - ] - } - }, - { - "release-date": "2021-12-14", - "release-version": "5.0.13", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-43877", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43877" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.13/5.0.13.md", - "runtime": { - "version": "5.0.13", - "version-display": "5.0.13", - "vs-version": "16.9.14, 16.11.8", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-arm.tar.gz", - "hash": "3d0a10b51e89d5716ab284e499e0927835d7944d7a4c15a9294679a8c4af3ca99f51cad25c0d19fa4a91b8b76a832a9bb81afb67bcdc2385730b061d135644f6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-arm64.tar.gz", - "hash": "428adbb6cd564b919333cf18b7245784b6a2e93740e31fb85c4344690519eb88038b220621f199ba2524eef0f4d0fd2e17bbea0851de0d0ec7dec4c092311d10" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-musl-arm.tar.gz", - "hash": "1cd50bb756d17251f277005e3824cab36b3b6c3c5e62383fc05fbca4d0e346cd9ec7e93a528f413f47a11dc5c64a6d0689bc99fc1a25377fa79875023c93d03d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-musl-arm64.tar.gz", - "hash": "bc44e529db137a4df4f244de92bf6ff773be24ef1611a2648ed9119784fd77a202f64be21a269ddb2521c54797c217211271620fb7bf0ab62b51715ca1342371" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-musl-x64.tar.gz", - "hash": "86132e578da8f4a964ce10e9cf63e3acc982bdd3822d89225a938b915c441992e023803547f8bb852c70ea61b7a76e65733f64ae3e171bdd290d73f2705a0b71" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-linux-x64.tar.gz", - "hash": "32f574369975606da5e67ca7f8e709e73b67a98fa1a175f49c979f582be658132375663e6ad944a3a89d1186322a7a04cead043cf1d4526fdb7ff195ead6f317" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-osx-x64.pkg", - "hash": "66863a1741f9da807eb8cdec04fc71619cd63d0f7bd80357cbbc48a82b454a464bfe9b9078ba2b7f86b36aafdd82e4528ff0a6f504429d42844608488b3a619b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-osx-x64.tar.gz", - "hash": "4fbc6ccfb1532ea6545f3679fe7f4fd188c674a83772125d7ed2fa8b868b72e250c20529f8219e5cff7e4480a8b4df6fbf5f3607ef965c931da7a92391b2bb71" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-arm64.exe", - "hash": "5d97c5d4b53c56d2cdda4d832a16c4e0073e389b9416a1b2a692fe1929fe9b9e1e95814f98fec4e5ebae7c86f631ed7e2c2308aa3ced14e8aa65d56cadd72997" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-arm64.zip", - "hash": "ead18689c30471b35fbe673f759ff0ff63bfac126efeef3d33adb3b665e62c2b7017704d6af221a8ba1a0b1ae3190e7d312a604b5b6ff976e90b0152a2b4bce6" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-x64.exe", - "hash": "0a0c6b6069307ba3c39dd6bc3998b1ed25e25c792eef9a4e07cab27bf918d5a66130b2cad5b55ae6f525eb5252707670a509dd5d719b790b432bb7aafe51aecf" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-x64.zip", - "hash": "53dc994202801aca3b6f23b6489a10803224325ab723ecd47f560296f08e33813474708701115418c8b34239b53868a5a0e87fc3dccf86f4483598de98ea8981" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-x86.exe", - "hash": "c270d3d19cb91a4f0178a3698a7d46cda66242e7b0ab81de9063e556435bad072034e18af8a04e7ca9c638c7dc512a75fd102cd1b1208fbbf1f3498fe0ed04df" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.13/dotnet-runtime-5.0.13-win-x86.zip", - "hash": "14031244a1d673daff5a7d370a6cdf6f6454eef9b01320a16aa92216771a6e60c37878738a19b0bbf1cdb34831ad66237504582bb636bf9c1915c4a2072fff9c" - } - ] - }, - "sdk": { - "version": "5.0.404", - "version-display": "5.0.404", - "runtime-version": "5.0.13", - "vs-version": "16.11.8", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-arm.tar.gz", - "hash": "39e56d5966edfbb8e4e343c3bc97f71e809713f61d12afb0a6901a1dff6e29df8de0288c99246c638bb76582cd9523b529dacd981c37c2365e4d724738950851" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-arm64.tar.gz", - "hash": "d35abcfacb3da88eed82f9f7a0a9d3f8680d4c85839c8b348c247ddc9b3b99e7a3417d406976e3ac91d8d4bd31e0efb685ebaf4c33bb59586d00cdc731b59893" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-arm.tar.gz", - "hash": "f9e52a3d80459807b1519d6eb787e2ea4a7c67f47fe2289d29622f055dc9c0b5eb261a4be31abebe851d939f4df18d7c8680d5c2dbc4af6437fdf11b3748c0d7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-arm64.tar.gz", - "hash": "b07bac13180d6053e2199e020baed657d288a45fc1a9a171685432432c13271bbcd8a10cdf4b4fc56810062a1daf94d90033d153c685487002029e7f0282d698" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-x64.tar.gz", - "hash": "f165e381f9496af0368573db7f4559041c53c0a00cf6c1a9fb104ca62b4f079014c26b2d4787d206ae6594f3969a24f90d90f81c876c8b5ded4122b651d95587" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-x64.tar.gz", - "hash": "6f9b83b2b661ce3b033a04d4c50ff3a435efa288de1a48f58be1150e64c5dd9d6bd2a4bf40f697dcd7d64ffaac24f14cc4a874e738544c5d0e8113c474fd2ee0" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-x64.zip", - "hash": "295948aa817c924df8f8d4ad36c1fb7140618e49d29f65a10e005330c35170d9172032269918a75a18cb72fe4ef9fb71235f5569affe0793e77085fa5e86d8b4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-osx-x64.pkg", - "hash": "3ba0eddb48e9b6cc524a032c76f2b0324a52ca710bb3a477572882b4de4eebd477a58e4d05b28734f34c7a99611b4b3f574753d0950e327192bd5c1aa2e2a499" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-osx-x64.tar.gz", - "hash": "fa1c4686e491f6ba2b37c5497453a4955bafceb28e097c3d95175a78d6381201972e8231e315de0126480cb8917b784784125316ffbfe1470a62238211bb255b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-arm64.exe", - "hash": "c063205363e21ec6e9b0621933e3f3a9e43c9efbbd610aff6e819f800390a68c01c18b8c99e254d48c152db8d221a5f7fbdd69bd7dca478cd234df4200db7b6b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-arm64.zip", - "hash": "398cad80d2d98a2b0a8e2a97d9bfa3df87fabe115fe54936503dcf0395bedc19f7fed5ef6e3a7274aa0beb304d7bf524ce3369a02d47d790986229576ad50f0a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x64.exe", - "hash": "a2bdf552bb09a1f8315e383ca7d65b876c505de3c94dba4c5f530eddd7f03370bddd0832ef7f3cb876bb31b90cbeb8dc770ca1ce0a3a0cdf6c7bed48b30a7065" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x64.zip", - "hash": "a6d254a46e93a41bf41df34c941503cfc5f61af20ffc0abc571bbaf238fd66f0fcc879e7181e1e1af788e96912b31012e817bf1202e55b8f27c17352f3f5528d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x86.exe", - "hash": "0e9f9b4a7d759349625311cd2eb64cd61d84a384f3c2e966ff4e5fd65a00bca9d5b964cc43ef5aa8bc8a75182a39f60656681a5fc3015ffff90863a621fb5c01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x86.zip", - "hash": "ede2c8cdb8a5d164f1f5095867195abe09ddf369be50a1a32aa6d1aa97746073f0388f8b7ac2ac3234ecda24af8bed6fdc2df3106090908b70b0c53d90ba729b" - } - ] - }, - "sdks": [ - { - "version": "5.0.404", - "version-display": "5.0.404", - "runtime-version": "5.0.13", - "vs-version": "16.11.8", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-arm.tar.gz", - "hash": "39e56d5966edfbb8e4e343c3bc97f71e809713f61d12afb0a6901a1dff6e29df8de0288c99246c638bb76582cd9523b529dacd981c37c2365e4d724738950851" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-arm64.tar.gz", - "hash": "d35abcfacb3da88eed82f9f7a0a9d3f8680d4c85839c8b348c247ddc9b3b99e7a3417d406976e3ac91d8d4bd31e0efb685ebaf4c33bb59586d00cdc731b59893" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-arm.tar.gz", - "hash": "f9e52a3d80459807b1519d6eb787e2ea4a7c67f47fe2289d29622f055dc9c0b5eb261a4be31abebe851d939f4df18d7c8680d5c2dbc4af6437fdf11b3748c0d7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-arm64.tar.gz", - "hash": "b07bac13180d6053e2199e020baed657d288a45fc1a9a171685432432c13271bbcd8a10cdf4b4fc56810062a1daf94d90033d153c685487002029e7f0282d698" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-musl-x64.tar.gz", - "hash": "f165e381f9496af0368573db7f4559041c53c0a00cf6c1a9fb104ca62b4f079014c26b2d4787d206ae6594f3969a24f90d90f81c876c8b5ded4122b651d95587" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-x64.tar.gz", - "hash": "6f9b83b2b661ce3b033a04d4c50ff3a435efa288de1a48f58be1150e64c5dd9d6bd2a4bf40f697dcd7d64ffaac24f14cc4a874e738544c5d0e8113c474fd2ee0" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-linux-x64.zip", - "hash": "295948aa817c924df8f8d4ad36c1fb7140618e49d29f65a10e005330c35170d9172032269918a75a18cb72fe4ef9fb71235f5569affe0793e77085fa5e86d8b4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-osx-x64.pkg", - "hash": "3ba0eddb48e9b6cc524a032c76f2b0324a52ca710bb3a477572882b4de4eebd477a58e4d05b28734f34c7a99611b4b3f574753d0950e327192bd5c1aa2e2a499" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-osx-x64.tar.gz", - "hash": "fa1c4686e491f6ba2b37c5497453a4955bafceb28e097c3d95175a78d6381201972e8231e315de0126480cb8917b784784125316ffbfe1470a62238211bb255b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-arm64.exe", - "hash": "c063205363e21ec6e9b0621933e3f3a9e43c9efbbd610aff6e819f800390a68c01c18b8c99e254d48c152db8d221a5f7fbdd69bd7dca478cd234df4200db7b6b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-arm64.zip", - "hash": "398cad80d2d98a2b0a8e2a97d9bfa3df87fabe115fe54936503dcf0395bedc19f7fed5ef6e3a7274aa0beb304d7bf524ce3369a02d47d790986229576ad50f0a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x64.exe", - "hash": "a2bdf552bb09a1f8315e383ca7d65b876c505de3c94dba4c5f530eddd7f03370bddd0832ef7f3cb876bb31b90cbeb8dc770ca1ce0a3a0cdf6c7bed48b30a7065" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x64.zip", - "hash": "a6d254a46e93a41bf41df34c941503cfc5f61af20ffc0abc571bbaf238fd66f0fcc879e7181e1e1af788e96912b31012e817bf1202e55b8f27c17352f3f5528d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x86.exe", - "hash": "0e9f9b4a7d759349625311cd2eb64cd61d84a384f3c2e966ff4e5fd65a00bca9d5b964cc43ef5aa8bc8a75182a39f60656681a5fc3015ffff90863a621fb5c01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.404/dotnet-sdk-5.0.404-win-x86.zip", - "hash": "ede2c8cdb8a5d164f1f5095867195abe09ddf369be50a1a32aa6d1aa97746073f0388f8b7ac2ac3234ecda24af8bed6fdc2df3106090908b70b0c53d90ba729b" - } - ] - }, - { - "version": "5.0.210", - "version-display": "5.0.210", - "runtime-version": "5.0.13", - "vs-version": "16.9.14", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-arm.tar.gz", - "hash": "a637e2a759ef6d8cfa5406f2aca4fb67c23e82e28b1d692b0c5f363fc9339f022bcffd990a94d473f6b1233b60caf07792f8f0bf9a3e4b7ec7b6400fe2c501e9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-arm64.tar.gz", - "hash": "b15ec2d3fc68c2704d2418e7cff7ba75237205509b16c07d7fe4ee512949a913268713d6ca895f9b40335df92f0c3d17f0055eaa7f390ab790d8227e9d439553" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-musl-arm.tar.gz", - "hash": "967b0d0738fb36da78ff48a7956ce99abb7bd75cea5a43f979355566ce36d4ca98a0842b60a9394fb56790baa73c2d62506dd0f75ed7c93c52029bd835ce8369" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-musl-arm64.tar.gz", - "hash": "89c652903ceae5374f298411f4211703f9a401c7475bb5a3e4598ffb80bf7eafa549475007e6d5816cd5213f0630c51f2eabfce2adc6d07debbf8d36fa51454c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-musl-x64.tar.gz", - "hash": "42b91267a2f0c38c8e3b8ef5c3932ae89371c1b47fde86a9a098c826666cf5fe10805fe6879ffdba0c17d78ff6bae4e894718476db847ad6adda53060cd3c020" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-x64.tar.gz", - "hash": "6f201dc0e0756ab82520ee7578478c82d56f96e8192e1e3c76bfb4276c8263d1ed64a85ba04aec2cab7c391ae3f55be83ee96e74267c243400166559c34aa115" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-linux-x64.zip", - "hash": "19598d3e3009bf6ef351b98563b8723693708bd2d48fea499590fa41d2a7e8ffa4dfefb70e6129aec62fc5241bbc45b11c75ede354b8e9fff0d74639f9d88b0a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-osx-x64.pkg", - "hash": "4173fb52fffd5c0dd7871e5dea3a281aa7f012c4f75d2c2d8b2fbbd566bac1270914d117ee0fdb49bf991055a4bfc5990aadc2020fabcc7ae092c76bf8419eb9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-osx-x64.tar.gz", - "hash": "36193fa95ae7fa6bc537ecca044fc641e854d2511cad893b7c180077c542fdb6aa289cecbd6803b18fb513f1dc60bc57896a409bbac2cd779cfff553723bbff2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-arm64.exe", - "hash": "bc1f893eecea3a225f88c708cdb67a3f2d6ac03e86433682e40c4d01fdc35cc3eaf7b4383f701ff86db26c57c79e24479633b7b7f4b8b99f8d794f08c57b1aeb" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-arm64.zip", - "hash": "58b5b24f25134b1ea4c659253ec37823b38a2362550adc151f14dfc602702eb22764d43016649a09e548fe79a819b378bcc32dc35ca64edcfc206668e35c009b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-x64.exe", - "hash": "abf4f5c94061fa4ce329287609de863e685fa69d880d9b2028c2c77773dfd8d06dbb537545451e36fabbfd4bc820756820cf59ccc8f92ceb6f02d852859279be" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-x64.zip", - "hash": "b7a2627868e661e1047e148131f5e55f2929ae22ea85b56c7fb53e0bc8ae8b2ed99bec5c9563a0876c361a8086499f02180ef11c4f018e3a99d7bf6f85945f3e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-x86.exe", - "hash": "35ea226dc54fa148a078c0862d0c9b0dd3f021f6077a01d22f9de65244a7c7b1bc078102e442faca8bcb607bf3e5153e476e27d5a45a5366d943dc1edf474750" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.210/dotnet-sdk-5.0.210-win-x86.zip", - "hash": "fee268210e5aca18df2285fc68e0944a0ef0a76a3ab198a82cc4fee4d60d63b0b48ce9eaed1cf0c70aef6b5c40316444524f64002358cc886da1da7552dd7dbb" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.13", - "version-display": "5.0.13", - "version-aspnetcoremodule": [ - "15.0.21326.13" - ], - "vs-version": "16.9.14, 16.11.8", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-arm.tar.gz", - "hash": "4b92e7a686c852149e228c777f899d2426d81691b2cbc0a2a8708b9c8ab5b504dd544c1c291c848339c7c59d139d9e91e8914059326b0e84e662bcf32d3fb472" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-arm64.tar.gz", - "hash": "757ccf8a453d8cc9075a438d02bf95bb6d3738651100de8d4ae842a97dc10d8d7507597ec9d2806a3140d8000faec602748b4585b0a644816c74ebbf7ab98719" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-musl-arm.tar.gz", - "hash": "f081b9f59119508d21e5dff3e6adc7f69f037620b90614b8ac71fc6c7fa7293d6092a727789d6f6fc26b54c7dc543d427ee044d7b1909c0d13c3d3fe495609a4" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-musl-arm64.tar.gz", - "hash": "2c45e5b4c6d4cbaaf95e616ee04662ec87f4fcc81d5710cb94063447fb2b3de1a120beea6c6e2784a83a6d2703f2ad2a3c3cad7dfdb28bde1f7d3761d3216e89" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-musl-x64.tar.gz", - "hash": "0ea8a945bb1b663b8bf65708d6cfd6411aaf6ac8cc2ade34dfda160c331230694620b8b0abf80c4266fc9a2444300bf9b58906e40c30e7aff7a27291240ca583" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-linux-x64.tar.gz", - "hash": "d3014d473b3bef0a9645908c768f1c458c53ebfd3ed6f2fd259b2921a6d7401f3c0403e99c0d80a6457ecc229dcf828a4031e17868538d831ae1394bb8aa0ad4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-osx-x64.tar.gz", - "hash": "9514eb76eebbfe00528bb1cc009647c34c75e38ae10f389a3a5e6b58ede625c0fbf6ec7e9fa2be0452910da467aab1936a76d906518833b77fc6f92eb545faf7" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-win-arm64.zip", - "hash": "8b20dad41b0a6f2a603cedac1d5d95c9f2aae1b6f0397cd5f42204a3a1853efffb7fb2cde4c99085c63d85a437cfbce00aa3ccadd1a241ed6743d9509e792e02" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-win-x64.exe", - "hash": "e2bdd39a828cfe6246b72e8a4a45b63ae9a6c1e40e71ec3afbc3428525fa99b3e81f618f8f973093192c79f281d6bbde0a04466fbc5f81f95db7632b4aa2f56b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-win-x64.zip", - "hash": "480baa6a03e1b6a2d25afdd8da9cb0387a9be91a0d7c4ddda6cd7725a6d5805dcb35b65cd872871140da3442efae1ae53a0bf7b39c133049082ee6a3dffe627d" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-win-x86.exe", - "hash": "59c5aa1d8b6124483e518bd67cd46ba54b3bfe4818b9a4d93bfb1d8a25907d3ab987b6f6d5e5b65b70aa931449bb97b3d3b3702bb1b7c0bd6b2cd41f55050bad" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/aspnetcore-runtime-5.0.13-win-x86.zip", - "hash": "e3a9132a5d05e47f2d1c59a7fc7c879aa39ba183900f770bd402c6b91c45c2e6315553cbd8050fe6d9feb400e5da1c0f52f753a28e95225977921c2c06bc5d4d" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.13/dotnet-hosting-5.0.13-win.exe", - "hash": "53bafd8ecb57210fbd84046e4aab9f14e739b25e05b8a61f52e4ed646d792e15db2e2c31985594a2fed9cda85c0cac27dcd3f286ca1e54ad512b2fc3c07693f9", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.13", - "version-display": "5.0.13", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.13/windowsdesktop-runtime-5.0.13-win-arm64.exe", - "hash": "07f56996940de408851c34f1f0fb5f8387c07c3265d2f90bc91f2ed2fb46ea36a1459c5421a1006c73f983685e045f735076b31acaa91dc9d9ee8300f33d4d47" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.13/windowsdesktop-runtime-5.0.13-win-x64.exe", - "hash": "0a6ede4133e52fce974a97690024f7a2188fef9330d87d07b2e1a4a2c44bb4ee309e2302ba685214b4f3cd5dc0276b786dee14bd1615d6f3e3622299ec13cbf6" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.13/windowsdesktop-runtime-5.0.13-win-x86.exe", - "hash": "a38ecb193722f709a8aa39ca8135e3b37a2c0080c67a4617284b0093bb403f55213208d1d448a45fb161c7da2064afc7a19c723f7c6eadda3baa024dea8413bd" - } - ] - } - }, - { - "release-date": "2021-11-08", - "release-version": "5.0.12", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.12/5.0.12.md", - "runtime": { - "version": "5.0.12", - "version-display": "5.0.12", - "vs-version": "16.9.13, 16.11.6", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-arm.tar.gz", - "hash": "333d96c05e5c242407cc6ef9c003d796a61694980747b03266502d593d3e1c66d5e6147bfb41796df76ff0144617ee33c56afba740dd3eb4ea090a742b1c73d4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-arm64.tar.gz", - "hash": "a8089fad8d21a4b582aa6c3d7162d56a21fee697fd400f050a772f67c2ace5e4196d1c4261d3e861d6dc2e5439666f112c406104d6271e5ab60cda80ef2ffc64" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-musl-arm.tar.gz", - "hash": "ae831066550aa4fd3396177188e5c5e20b9144ad1e7fcf5ac5a185e74e7e3087992f7ad061810fe1a7c4eb6fe032e184e7770444eb2233ba89956046c963cd1d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-musl-arm64.tar.gz", - "hash": "34b9117ca195968dfe4f648079f82bb97b6111c8f62f968176834ba886b474dcaa9e46679b0db3661b393842ec29c1626d5055028d016e390164b0588fe7f149" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-musl-x64.tar.gz", - "hash": "ce33b8b5ccb35ac636e37777a084881bf66ba67c32febc06c4829e37f86512eece0e6a689ce3184e0a70b23e0cf43110facfa39931a13e9e44899c1c5e296fe5" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-linux-x64.tar.gz", - "hash": "32b5f86db3b1d4c21e3cf616d22f0e4a7374385dac0cf03cdebf3520dcf846460d9677ec1829a180920740a0237d64f6eaa2421d036a67f4fe9fb15d4f6b1db9" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-osx-x64.pkg", - "hash": "93fe60362fee0e1d3e1685d16a12cc050bd7e5ff51944a2bb970782bf9b90356e5d18eb9ad107150ca05dcadf2495ebb45c1d34a5ce933ce110acb60db509f31" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-osx-x64.tar.gz", - "hash": "a3160eaec15d0e2b62a4a2cdbb6663ef2e817fd26a3a3b8b3d75c5e3538b2947ff66eaddafb39cc297b9f087794d5fbd5a0e097ec8522ab6fea562f230055264" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-arm64.exe", - "hash": "0fdbee88285da33bb3f38482d368a9128d2f9d0b8cf2f13c05696f5135c2520f08a95834e36a203da86d75d588bc63167c9d274095cac321d6c28a2f3f14d24c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-arm64.zip", - "hash": "f610e5cf07bf1e1ef71d5c995b5ca993c4b897976b37fd9af4efb8c00b4ae9abbfc67692177ea8d617e1fc9b44855325b9d8a98b95519108bca2fef2cdc0a2fc" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-x64.exe", - "hash": "428d8a01666045b9b2d802fccdc6552a6d2eb575224cffa40c52ab854dfb9868309c5600127835cd10cfb6f8a36bcbd8a90eb94bd36794afa64ca2eb979c2b09" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-x64.zip", - "hash": "636f22bfbfd98c80c96f2fc3815beb42ee2699cf2a410eeba24ddcc9304bc39594260eca4061b012d4b02b9c4592fa6927343077df053343a9c344a9289658e1" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-x86.exe", - "hash": "05926b28668c7d681934eea1f5331c401a87fc34ec6ae2002feb4e1a80aa1f03dddaf850567e53823ad8b159320658a92a02abae76a5580595cee9d7e24d4740" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.12/dotnet-runtime-5.0.12-win-x86.zip", - "hash": "405e725c746d6b2499970abd8bddfdeb14f49f572cae167cf552378500782b82d819ca9ea8a6cbae7aca5c4e77dd1bfa061966a970671692500e2bf0aaf02c70" - } - ] - }, - "sdk": { - "version": "5.0.403", - "version-display": "5.0.403", - "runtime-version": "5.0.12", - "vs-version": "16.11.6", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-arm.tar.gz", - "hash": "1b7b4a8aea62a7fd1e1919710b2b35b41ae31a64f79b4cc056a3e5f4778bb6cc0b92999321e1632f29a1eb88d734e44fc42eea52ddfb8aa0424cafd9796a503c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-arm64.tar.gz", - "hash": "6cc705fe45c0d8df6a493eb2923539ef5b62d048d5218859bf3af06fb3934c9c716c16f98ee1a28c818d77adff8430bf39a2ae54a59a1468b704b4ba192234ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-arm.tar.gz", - "hash": "2ad841acdf3e109b52b681c2b29fa387cc126fd69ae030943e5b4ef524b64b099be876f4b8838b3e366b4dd08c4b7df16afb30a33cadb2b3a6bf06a3d990d9df" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-arm64.tar.gz", - "hash": "b5b12d827b745b63d712bf61a07577fe8c70ccfa19e0c5119101c7cf73e0b4fed36a6e94fc03951c9353f4e115f7b5142ff0f552d0b263a0c34b9213ff069c12" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-x64.tar.gz", - "hash": "464eccae0e296cff3728bcf7e0dad98058d15c4972a5be71906355174918ed49e78ef28e7b24af3227b09a3fae05e86022499fd126131be6a008a86b1dbf16f3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-x64.tar.gz", - "hash": "7ba5f7f898dba64ea7027dc66184d60ac5ac35fabe750bd509711628442e098413878789fad5766be163fd2867cf22ef482a951e187cf629bbc6f54dd9293a4a" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-x64.zip", - "hash": "d323093772a5e2824bd90f656b48f525464b56183999ecf26632eaeb300b9df94e5a2ce057b3faf2e73579861f4c74f9edf50f2f87d4a9d028e14a49d60aa770" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-osx-x64.pkg", - "hash": "2bdc783066ea09fca4ac47f4a28f728ce9b0cebfa9546304ddec92471761f0cfd7d789367008d49adec66ea9e080f276145d6abaf282ba94fcd033db0f48f1ad" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-osx-x64.tar.gz", - "hash": "70beea069db182cca211cf04d7a80f3d6a3987d76cbd2bb60590ee76b93a4041b1b86ad91057cddbbaddd501c72327c1bc0a5fec630f38063f84bd60ba2b4792" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-arm64.exe", - "hash": "eb23ddb4c4f53d7f139deb6767118fd90f3013b22cb41c3450c28a5508cfa7b22d628fae3a16290144b64c0d0083286979e50a039955c94efc81f2d1a12d682f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-arm64.zip", - "hash": "74c6a28eef6cfb54e100fdcf617ff831d2305848729feef404e1c043b580a8fc73a1788b091a90443be1a6d11dfe678ce3fb49a5247b275c4141733dc5b19eab" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x64.exe", - "hash": "761feebbc9a2d762f5451b1abb8a305a33352a6a902a6dcc7ca15b9cb888fb63c83d31b312375ee13304c8f0b39b9793393bba8c1d37e8fd3dc4a0a3809fafef" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x64.zip", - "hash": "4dae65d935d9a9cd022a38537f7678786517b82845dd010075fa2a1346d549cae80a1087f09668284e4aabc080673fe19b1607127e7ba29d0c40f037049eb101" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x86.exe", - "hash": "e7c62522857bfcdd32b6b372f460c5cfc04e499df38e0d5bd1b0e50f61406bb6be3cc6275f12ad777479e50b91ba7a78746f5e4c7f1db06e35eeabb0c9b52642" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x86.zip", - "hash": "32b78ce9615be079411507c46884479cfc5a8f3b8b95ab9a7753325249de020366686cb86259e3a6e468bd5d4d46e8aef3c5ad2e34d2194329e33e777ec4f263" - } - ] - }, - "sdks": [ - { - "version": "5.0.403", - "version-display": "5.0.403", - "runtime-version": "5.0.12", - "vs-version": "16.11.6", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-arm.tar.gz", - "hash": "1b7b4a8aea62a7fd1e1919710b2b35b41ae31a64f79b4cc056a3e5f4778bb6cc0b92999321e1632f29a1eb88d734e44fc42eea52ddfb8aa0424cafd9796a503c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-arm64.tar.gz", - "hash": "6cc705fe45c0d8df6a493eb2923539ef5b62d048d5218859bf3af06fb3934c9c716c16f98ee1a28c818d77adff8430bf39a2ae54a59a1468b704b4ba192234ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-arm.tar.gz", - "hash": "2ad841acdf3e109b52b681c2b29fa387cc126fd69ae030943e5b4ef524b64b099be876f4b8838b3e366b4dd08c4b7df16afb30a33cadb2b3a6bf06a3d990d9df" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-arm64.tar.gz", - "hash": "b5b12d827b745b63d712bf61a07577fe8c70ccfa19e0c5119101c7cf73e0b4fed36a6e94fc03951c9353f4e115f7b5142ff0f552d0b263a0c34b9213ff069c12" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-musl-x64.tar.gz", - "hash": "464eccae0e296cff3728bcf7e0dad98058d15c4972a5be71906355174918ed49e78ef28e7b24af3227b09a3fae05e86022499fd126131be6a008a86b1dbf16f3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-x64.tar.gz", - "hash": "7ba5f7f898dba64ea7027dc66184d60ac5ac35fabe750bd509711628442e098413878789fad5766be163fd2867cf22ef482a951e187cf629bbc6f54dd9293a4a" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-linux-x64.zip", - "hash": "d323093772a5e2824bd90f656b48f525464b56183999ecf26632eaeb300b9df94e5a2ce057b3faf2e73579861f4c74f9edf50f2f87d4a9d028e14a49d60aa770" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-osx-x64.pkg", - "hash": "2bdc783066ea09fca4ac47f4a28f728ce9b0cebfa9546304ddec92471761f0cfd7d789367008d49adec66ea9e080f276145d6abaf282ba94fcd033db0f48f1ad" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-osx-x64.tar.gz", - "hash": "70beea069db182cca211cf04d7a80f3d6a3987d76cbd2bb60590ee76b93a4041b1b86ad91057cddbbaddd501c72327c1bc0a5fec630f38063f84bd60ba2b4792" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-arm64.exe", - "hash": "eb23ddb4c4f53d7f139deb6767118fd90f3013b22cb41c3450c28a5508cfa7b22d628fae3a16290144b64c0d0083286979e50a039955c94efc81f2d1a12d682f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-arm64.zip", - "hash": "74c6a28eef6cfb54e100fdcf617ff831d2305848729feef404e1c043b580a8fc73a1788b091a90443be1a6d11dfe678ce3fb49a5247b275c4141733dc5b19eab" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x64.exe", - "hash": "761feebbc9a2d762f5451b1abb8a305a33352a6a902a6dcc7ca15b9cb888fb63c83d31b312375ee13304c8f0b39b9793393bba8c1d37e8fd3dc4a0a3809fafef" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x64.zip", - "hash": "4dae65d935d9a9cd022a38537f7678786517b82845dd010075fa2a1346d549cae80a1087f09668284e4aabc080673fe19b1607127e7ba29d0c40f037049eb101" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x86.exe", - "hash": "e7c62522857bfcdd32b6b372f460c5cfc04e499df38e0d5bd1b0e50f61406bb6be3cc6275f12ad777479e50b91ba7a78746f5e4c7f1db06e35eeabb0c9b52642" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.403/dotnet-sdk-5.0.403-win-x86.zip", - "hash": "32b78ce9615be079411507c46884479cfc5a8f3b8b95ab9a7753325249de020366686cb86259e3a6e468bd5d4d46e8aef3c5ad2e34d2194329e33e777ec4f263" - } - ] - }, - { - "version": "5.0.209", - "version-display": "5.0.209", - "runtime-version": "5.0.12", - "vs-version": "16.9.13", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-arm.tar.gz", - "hash": "ba153f8669b7fad45be7c133ebe557f03dec72158158920f5ac865aa897e22ca31a4268a896b4a745b7161f29bbd658644127cca48da163f1d619f75269f228a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-arm64.tar.gz", - "hash": "5724e71c9e50bc142f355e1137fe067343b76abeed5876181b0e1e0e5451217c0196e2cbe63ffd8a83f78f972682c43ff4685d04506886b0a9afdde2ece9b260" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-musl-arm.tar.gz", - "hash": "70eb819e43c9873329faa4f80f3a8629501257fdaa5574c53328733ba18eb1498b594aaaa364449ae6c943fcd447ab3b609aa50bc8653f3a1a57253e9be8602f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-musl-arm64.tar.gz", - "hash": "39b54416070b68a3d3fcfdae792cc666c65bcac2cd2b53a545bab08e3440c66ed37dbf2d85095ec4a909a7047259e774ffbcfdbc5f6b904054217633c46b63db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-musl-x64.tar.gz", - "hash": "129ad36d92a58a1bf549add5b2c9400858d31f4ae74d5d2b1f37831464a16a98dbaa1445a3179fffb3a8020a137b8302355e4a076522ca4a8217443f1b67d29d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-x64.tar.gz", - "hash": "728947596c5831950da1a0be2e05d3a755662f775f472e6027eaa07eb296e0fa7373dfface4bca033c0ab71790f0f2e7cfc6f31b894d2a4f2f9ca9f8ec02bc7f" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-linux-x64.zip", - "hash": "131ec76ce2fb4ecaed489d784d71558b2e9e8b4e26de893c671350771209d7955a3ec6bc40be683dfb54a4d5206271e199187fd3a7cc4e60acb15540c038441d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-osx-x64.pkg", - "hash": "19b68be189e2d2b3fe79afb9f2147a351e6c59dfafb59cd828f9924a07de719f61d2d5e1eb224c1069a67040fe8eaee712f3642af83b3d34030a90ab8232ed1b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-osx-x64.tar.gz", - "hash": "bc7fa44653caaf6301ce54549b20d99a28ea8a42964f3df90106b95f821213a8f246982453bfd8ee9789dc25a1605918c08a2509ca282e7501f796ba85c9f077" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-arm64.exe", - "hash": "1be4d1fe606257c06214928172e9d7e018f2e27277830833f607d2b214cd9746fac15f5f446d5fcb482d971a0ae44ad83ba4b1be62e6e91fbe7d22a479f0f6d6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-arm64.zip", - "hash": "78d3a259371cfddd63018ee6b2c6f2527a1f35c755a2cb7e56e060764a8ee035f2fb5ac11b3505b4fc0e2a31a755bfe17ad9be7bdc5c26a5bc61a069cd52097f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-x64.exe", - "hash": "7de9e9586e819c8cefc990e5a15ac7eb6a180352b132668497007ad2de3ab28794d2f52adf27b6aba1481c8f91ac7475a5700d010155c235dea0351b0ab82a28" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-x64.zip", - "hash": "b595edb4f4a7a51c9ef8599d9b76e8202ba6ba910ff0d2f0023952de6a8c110039603fd192e4d0fdf1703099854a715ec673be7c0347ed51434f28656ed7bf91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-x86.exe", - "hash": "edcb5331279ab6136142601423e2e08b831f568b1effc3c453fae7b16652b2935d27879ae572510366cd6fbf0409b611be608bba3d8fb9cc3591261aa531e3f4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.209/dotnet-sdk-5.0.209-win-x86.zip", - "hash": "9f2bc73c2e22158454ac8527a3d516eb62174c514705ea80fac34703e9b539621cd2b099d420bb6f73b69f3fd47b37cddc20fed4e3831ddf9f7b46a53e98f41f" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.12", - "version-display": "5.0.12", - "version-aspnetcoremodule": [ - "15.0.21297.12" - ], - "vs-version": "16.9.13, 16.11.6", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-arm.tar.gz", - "hash": "7bb48192b97569fc198a03deb9330f32ff7ba14a4d903a31fa66e184df1055ed7419f7975ad9104582ee4edb767064437ab04117128a80cb4f310d5a22193b32" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-arm64.tar.gz", - "hash": "70570177896943613f0cddeb046ffccaafb1c8245c146383e45fbcfb27779c70dff1ab22c2b13a14bf096173c9279e0a386f61665106a3abb5f623b50281a652" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-musl-arm.tar.gz", - "hash": "16222fd605b91bd372e3b5f8dc7b8bfd2dc624a2d47b4032f93f5ac1c88da42e5011ee2387db392e889165a10f2ed55ed8f53c8e434638f8d2f04ca6d5c42b9a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-musl-arm64.tar.gz", - "hash": "f7a0d0462f9062e79a4dcafa9b3c4161cb7e44b137a515f93b98dee7cdfcf9e36d1dad6f4e6488c3aaaf0974cfa4b55f25571119f97324cb987d0eece1db83ae" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-musl-x64.tar.gz", - "hash": "f5f58aee8d497e39b931354357c14c654acf2025c71435273d1d3c086410366352c6814c39ce7d5752ae0bbf293d99fa351c30a56b95ebeb82dcc8eb5269f2bb" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-linux-x64.tar.gz", - "hash": "0529f23ffa651ac2c2807b70d6e5034f6ae4c88204afdaaa76965ef604d6533f9440d68d9f2cdd3a9f2ca37e9140e6c61a9f9207d430c71140094c7d5c33bf79" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-osx-x64.tar.gz", - "hash": "bd9e7dd7f48c220121dde85b3acc4ce7eb2a1944d472f9340276718ef72d033f05fd9a62ffb9de93b8e7633843e731ff1cb5e8c836315f7571f519fdb0a119e1" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-win-arm64.zip", - "hash": "c56f2681482130bfa8ffd9f057114ff155cde62b107c67e8313b3100fb9b6e04809dfc62a54e90bb2c029ac27da351f1cbf2ea1dd8b8fa76e2a998c4883c2949" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-win-x64.exe", - "hash": "92ef0f7bf0ec3e3fcfe23cdb21533f201784dacaa08ddcac99d9cb31b1eb876fa6002c362c6e8f78602b5c03823cab9864a1d489e054b4e0c42229512b8957f5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-win-x64.zip", - "hash": "c6b9938f029e4425ced6d9dd0612cfb0698045297eb257f0857bbf5b22481361fab3a19660e1063f41b6d13e9a367cb4d0d71fc23f84dd01c345b1f1aac647b8" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-win-x86.exe", - "hash": "c388dc4804242d0fe911141829b35e2bd05a75d9f9c8f91f5d3d23870dd2e1faaaf0259ccd0ee2393fa63801fa36251cc669df5985a4eb26bf1fc7e8596a8218" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/aspnetcore-runtime-5.0.12-win-x86.zip", - "hash": "3d8da89802c6997f6d2e2886f4040b7f989d653a761d248aa937355921f2b377cb9d9785c572b33812aca3f1860b5f948b4e2f3f060a66965ec27828e9c54c47" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.12/dotnet-hosting-5.0.12-win.exe", - "hash": "9dac56e77df02aab01614b687e293d0ed98cfdb54dbfb9783007c70b96981ce5045fa107fd4916b2c8303ab8a41bcd9c2587d24e7aabe55771433f1aa2b52b44", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.12", - "version-display": "5.0.12", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.12/windowsdesktop-runtime-5.0.12-win-arm64.exe", - "hash": "100de45e94ed191e59f5d126b5df7289c760502fd693347d0620e42055d5937a6bbf89ebe74cc6ffc2205e70a5a9e56718ceabeec0140f309699129edfdcc485" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.12/windowsdesktop-runtime-5.0.12-win-x64.exe", - "hash": "174d9894ec52f1df21161af01a8db9b778d9270bc7471153e475a091a24fafb56bb34cd6a73afc3842061b48d5d31b34ad05364f4cae2da4538cab4fc54cc21f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.12/windowsdesktop-runtime-5.0.12-win-x86.exe", - "hash": "54fb0c958ecd9f35d1c5bc96a628e9d2d97bf4edb04c18a89a1091264d7e11fee2fb77b5aabeaacc29322194462483e01ee50d11e63f34d0da57b325b728c809" - } - ] - } - }, - { - "release-date": "2021-10-12", - "release-version": "5.0.11", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-41355", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-41355" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.11/5.0.11.md", - "runtime": { - "version": "5.0.11", - "version-display": "5.0.11", - "vs-version": "16.9.12, 16.11.5", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-arm.tar.gz", - "hash": "2b1aa807657fb195e15af18b96ccd14789cabe7375782fb1d5b4834d64057a64474c735743b8a9b69c70d55882e66be9c17e858f3dfef2d4567e7287fcf47943" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-arm64.tar.gz", - "hash": "b296a79f655ad22db405f24c1549b6cd610c57dae917c89b91ddcb4b053a7613952261cca7d7c79e6fda72026fd4bbbcf74751cb6529a55504a67223cabc0451" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-musl-arm.tar.gz", - "hash": "ca7eae70ed71e02f1b109c5a920a436aa76eee8b240d1727ae1316991910e8d0235a99ce7ac49c7fa275de7fdaafa61e358c813ee14a76abf1d5fb1e06b2b074" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-musl-arm64.tar.gz", - "hash": "7e5345203679079c6875d0ede0198ab849a4b435afd58a6a13ed8f7e76a8be26d52c656f992bf928fbd541804a96757dc84738e8fc3fb036f3d0a1b2d503c501" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-musl-x64.tar.gz", - "hash": "86a149621e26a67ec72e8c7c11f8361d20a3a9043e5b66d8048317a43d8de834930fa4b6cf32804adbfb8a3c36875b8f69e0331a4133dc48ab3ac1c6409f2266" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-linux-x64.tar.gz", - "hash": "4eef891385288e5ab35beea79e2e6ca13615afe2e90da7a7a14417119bdbeb42980dda5f1cbe5b6d8e05a728d0db4256abb54cd00a63aa621a70090bddbe9f69" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-osx-x64.pkg", - "hash": "78858eb5f67d60fd123b5b16911b778aef035822f43a5cd56effbf8c627a4cdb9dd21cf5c7a54630879666f082f21b992984bfaf0b834342ffb6a3816c585f25" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-osx-x64.tar.gz", - "hash": "f1922031149c24f78fbe08c6dbf8a45b23e2c24e6a58797a8845bc124ea36d458b5c50fc2b4eac2b99cddf42129cb446dedd9b5cbf3cf8d9e05ded442b9c8956" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-arm64.exe", - "hash": "c17b0ac5bb854aa61e1a69c91f9eee7dbc69225c7d6b75fc2ac6b96bb17016edc7d75d08874b5e5c79abc4bcd65be5106364f0287c79912dfe3288b835d5e6e6" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-arm64.zip", - "hash": "97007e92ced1d363ee209d114258bfa103a8ef61c010de0b89691f57a4bed6626c940d89a93ae3ff61db0bab282f9120cc50a9a030ac7a0e2633cfb6b6298943" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-x64.exe", - "hash": "1c0d1c4c7eed663a3b6ecac929ba8e6daf88daed76ea88b9541b180ea9f926227ce688f8ae7e819c94cf21b317ff580db22e76bdf3a86642c163b0e2730b7965" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-x64.zip", - "hash": "efbb08cf889136d1585dc2259408ad52148194fff68f8435a68712fb267cd41b9c787574d1ddefbe5c3831d9319aaebc484d1b1aa6e1150117f0733c7643fc86" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-x86.exe", - "hash": "3d613bd5add3c9e7a7395504f31f69aff6c6cea22de2d54eb4888c3dce1969d4c78ba0fd08fa7ff9f84415732d175994ffecf875fad6935866276a01c0740709" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.11/dotnet-runtime-5.0.11-win-x86.zip", - "hash": "a088d791cefa9ce013b706094dcdb8aca723c21af2ee531c1988cc5538808ecbfa2c78cc84671fe5398ce794966114d7d7d7a7e2220c1270cd0d4d15efbedbee" - } - ] - }, - "sdk": { - "version": "5.0.402", - "version-display": "5.0.402", - "runtime-version": "5.0.11", - "vs-version": "16.11.5", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-arm.tar.gz", - "hash": "5de1f0efff7f1fab3492f638cbbd1302de99917b6dbba4bf3ebbc0190cc325ed914b6d4494ca6f8cf6c626c6c0fb78ba2b286965e0c03b0f5b298ff3c731f107" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-arm64.tar.gz", - "hash": "9681da343f72998590541e0ee454a3d68aa4caff761ecc727c837fdbe8645c11487d8e8c4f6f9d3cda35373cee046b4857289a2307aa4929878633d13443e5bf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-arm.tar.gz", - "hash": "82b5349dc2cd6c7f48125e639d3a76246b8c7560acd1e49dd8f8151e42e837bbd853f127a28e879b9663563349d36a690d3ff730c81b83d493e9ec51b8e87d87" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-arm64.tar.gz", - "hash": "1779ba9d6e3f6cf9fe2891113d370b8361e84c3178de3d640fe7d8d007c3428a3633e47e4dbfdc4172a530d0785bf0a8e81a6ca0ce86d1dcbbfd03e5845e3c08" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-x64.tar.gz", - "hash": "6144ef0922c0bb67a2a1692d296df328ee8eeebfc631cc3774c4e87b352128a95ebf36419ce874151fdcc5cfd7d083ce26de998aa7a02be1eda58880baf2b845" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-x64.tar.gz", - "hash": "6b2937ad1f026fd91d0c8e6101b0422a8d19ead022055021b55a722c34dcc3697b592592eacc6def8748981bd996bc2a511d7c3f05b0ae431c00ede0376deacc" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-x64.zip", - "hash": "0f90abec5bf542aa8988a36778ecf8e460ddc37c850e4c4feb9724cea83abcf0d07c6a7754ab8a983314fd106df3f3ba00cefdf27aa5db9b4e61a3b142c968d4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-osx-x64.pkg", - "hash": "017ddc732c43f862f454456091c640578bb4769686e403ca956ccf9b49c655c942021e5704db57dc1e3fa566069f6e2745ba23154b4356d8e96a0d9aad15b131" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-osx-x64.tar.gz", - "hash": "f51f9686f74331f625c2faf7e96d7f52ac3bc43a3a7fe7847870c4cda4db0a39963d9688884d91c3c52c172b20b2eb2b810594be6690751623fa229f7dfac759" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-arm64.exe", - "hash": "e6024057233eb82f85aa6a9dd4745d804201ef4166929389e827f10d1132bdb8ff43caa7a6a579bf139325af6520902d6ce6a1bbca6cac72994dd90530291c43" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-arm64.zip", - "hash": "a6c48966a8f1b9d5b21cd5e0d30a5373b728ce25ba2b111b7b4f41ac25dac63700d4b19622f4944475f4f1c75c216d1b39d98c79532e2261e47443e75d5e5b93" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x64.exe", - "hash": "41762fe83456a2f2259c3348b9627428a5ecc8297e0089522bf54e370832336c0a66851bbc7352d83291da317991c17a8492bab35f3c94124bd1ffd2cceb8f5a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x64.zip", - "hash": "bc6aacc194c10a1171a18ae2115887b6ffff2a501463a68a354390150afc3630cfb0c3606097c9f90c67709bcbc4dee27d94e045e79d1f046db5c25f8aa81ac8" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x86.exe", - "hash": "ead5aee59bdbc42a0626458413feb7ee5eb2034dca6fa868cc9eb58e6ec3b728a5759c601b07b43d3b68fcc84d607bcb3f54f00234ed582067dfe0012fe5e895" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x86.zip", - "hash": "362c56652fc3570903dcb04cbcbfefb29818e17a3e1e7dc0833e554aa75fe1668efc7bd66de3db2de479c21497bbe8a975d0def96629771238efca182563f2f3" - } - ] - }, - "sdks": [ - { - "version": "5.0.402", - "version-display": "5.0.402", - "runtime-version": "5.0.11", - "vs-version": "16.11.5", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-arm.tar.gz", - "hash": "5de1f0efff7f1fab3492f638cbbd1302de99917b6dbba4bf3ebbc0190cc325ed914b6d4494ca6f8cf6c626c6c0fb78ba2b286965e0c03b0f5b298ff3c731f107" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-arm64.tar.gz", - "hash": "9681da343f72998590541e0ee454a3d68aa4caff761ecc727c837fdbe8645c11487d8e8c4f6f9d3cda35373cee046b4857289a2307aa4929878633d13443e5bf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-arm.tar.gz", - "hash": "82b5349dc2cd6c7f48125e639d3a76246b8c7560acd1e49dd8f8151e42e837bbd853f127a28e879b9663563349d36a690d3ff730c81b83d493e9ec51b8e87d87" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-arm64.tar.gz", - "hash": "1779ba9d6e3f6cf9fe2891113d370b8361e84c3178de3d640fe7d8d007c3428a3633e47e4dbfdc4172a530d0785bf0a8e81a6ca0ce86d1dcbbfd03e5845e3c08" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-musl-x64.tar.gz", - "hash": "6144ef0922c0bb67a2a1692d296df328ee8eeebfc631cc3774c4e87b352128a95ebf36419ce874151fdcc5cfd7d083ce26de998aa7a02be1eda58880baf2b845" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-x64.tar.gz", - "hash": "6b2937ad1f026fd91d0c8e6101b0422a8d19ead022055021b55a722c34dcc3697b592592eacc6def8748981bd996bc2a511d7c3f05b0ae431c00ede0376deacc" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-linux-x64.zip", - "hash": "0f90abec5bf542aa8988a36778ecf8e460ddc37c850e4c4feb9724cea83abcf0d07c6a7754ab8a983314fd106df3f3ba00cefdf27aa5db9b4e61a3b142c968d4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-osx-x64.pkg", - "hash": "017ddc732c43f862f454456091c640578bb4769686e403ca956ccf9b49c655c942021e5704db57dc1e3fa566069f6e2745ba23154b4356d8e96a0d9aad15b131" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-osx-x64.tar.gz", - "hash": "f51f9686f74331f625c2faf7e96d7f52ac3bc43a3a7fe7847870c4cda4db0a39963d9688884d91c3c52c172b20b2eb2b810594be6690751623fa229f7dfac759" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-arm64.exe", - "hash": "e6024057233eb82f85aa6a9dd4745d804201ef4166929389e827f10d1132bdb8ff43caa7a6a579bf139325af6520902d6ce6a1bbca6cac72994dd90530291c43" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-arm64.zip", - "hash": "a6c48966a8f1b9d5b21cd5e0d30a5373b728ce25ba2b111b7b4f41ac25dac63700d4b19622f4944475f4f1c75c216d1b39d98c79532e2261e47443e75d5e5b93" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x64.exe", - "hash": "41762fe83456a2f2259c3348b9627428a5ecc8297e0089522bf54e370832336c0a66851bbc7352d83291da317991c17a8492bab35f3c94124bd1ffd2cceb8f5a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x64.zip", - "hash": "bc6aacc194c10a1171a18ae2115887b6ffff2a501463a68a354390150afc3630cfb0c3606097c9f90c67709bcbc4dee27d94e045e79d1f046db5c25f8aa81ac8" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x86.exe", - "hash": "ead5aee59bdbc42a0626458413feb7ee5eb2034dca6fa868cc9eb58e6ec3b728a5759c601b07b43d3b68fcc84d607bcb3f54f00234ed582067dfe0012fe5e895" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.402/dotnet-sdk-5.0.402-win-x86.zip", - "hash": "362c56652fc3570903dcb04cbcbfefb29818e17a3e1e7dc0833e554aa75fe1668efc7bd66de3db2de479c21497bbe8a975d0def96629771238efca182563f2f3" - } - ] - }, - { - "version": "5.0.208", - "version-display": "5.0.208", - "runtime-version": "5.0.11", - "vs-version": "16.9.12", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-arm.tar.gz", - "hash": "3307ed53f880bfd68f061c276c1021d9f43d251df60e6aebd46312a6c14a8ce497a4605ca81a43e250e876023044474d7ac7135e5a7d65b2e3cac37201ad51ac" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-arm64.tar.gz", - "hash": "06a53ec69e9e2b806076ed85afe7b1b6481c183a6a1332d00c8f52a48791f2ba67750e312d44918bc3662ac587e0f37cdfb74b5c1c4e769cd66c9978a7776035" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-musl-arm.tar.gz", - "hash": "3a16b27a192e5de89df20038ffbcaa4944de4451d716c86f5af4f6a8a636e99cc73360ca20c90d114b0b2bb94dcbc3044812e90e0529a5ffffa298b79776d9f8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-musl-arm64.tar.gz", - "hash": "e840de1ff47cb53fcb6dcbc69d57bec9a239688f39ca3f8f3d00c7f46b1e5af8ee1b19736720565c055ae4eca9ae43347f2bc030cb027ecde2a57351ce2ad451" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-musl-x64.tar.gz", - "hash": "48ff49d119701f0f414536d43bf521a6f1cdbe70db808a213ef51c6e93343a000374d6bba87ea2e45b794a394888b9ecdc1e9c954a8a98823ca427b77b7608f2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-x64.tar.gz", - "hash": "d9240fed9339bbd7b7e0d43d55e01865921443123f53447599af5e2c21ca5fe475c5fe0573f95eeb88be800fc689118bacd11b93f88309e3f014d18cbfcf8fa2" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-linux-x64.zip", - "hash": "add21e9a27810643e02d239ff1d629a3e9055915657dd01f1c1173a5de89f5d2857efe3a5eda617d4309dc642049420ad9304d5263144d734f15acc14d8beae5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-osx-x64.pkg", - "hash": "d98aa624f61ae7f545df5d4c48cecb04d931881226b4dab1146149f591ff68d2944e8645988a05ecf02afd9ae064b67832f2fc96b500fe31974f1c8178909e5b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-osx-x64.tar.gz", - "hash": "2dede73a57caf41dd4efd1838724aeeabc5b915008b5b5dd4d37984218fd05dc7cc4d17a1d64e3899d673e75283378810d09b4d9f82361fec28229d028698374" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-arm64.exe", - "hash": "651c6365b66c7ae74586811466c2533d35fb129ec181c658dd2e2ac85e106582fa7e89a3a3377a3ba4121746cb3e5dfac4c626d69b9fc0bf37856e03b464a6eb" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-arm64.zip", - "hash": "b43f104a8e88731290b176e3ef0c5c10f7c3c2dc19120c146b6cb5f0c28598e0aa9eeaa407e04ffdd3faacb1ae036ec429c7e92194e118f743ccad94bbeb3e7d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-x64.exe", - "hash": "8012e53d3ee902fc506afad84f311b04cccb2440926c0fb17a8adac356c2f9e1f2533bd6f2aa0fe6314f30d8ca281354b3cbec413b9d1df64c80603c445e10ec" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-x64.zip", - "hash": "c3858147d505860bd08f469792df8b4641714bb73a408bf05d759de2a95f286368a77eff6e31c299abdef03147aba7de4572ecaed3ebc676031ae295552d83ec" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-x86.exe", - "hash": "6f689a52d49373fe085af9a049c9db74baf1145249cd1fd70092aff6171cf2b49773b0d8bd010cebf42dd3f5559e07371e43bfca1f158bf9c2800448102c909d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.208/dotnet-sdk-5.0.208-win-x86.zip", - "hash": "ed2130b836dd5771982479d79e94b0f85c837caa99553e5abcbf1ecc493fef9b4475ece7be7bcf16f02aa6924a89524f19fe5fc393db3390d4d3b33f4fc8ec3e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.11", - "version-display": "5.0.11", - "version-aspnetcoremodule": [ - "15.0.21270.11" - ], - "vs-version": "16.9.12, 16.11.5", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-arm.tar.gz", - "hash": "3464ff4341e9e8642f3a204039974e5b959e4149c00137fa64452e9540a8132520e2d8ff19dab5fbdff40d22fbb94c006242d7602022fe94aaa5216cd4e3e438" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-arm64.tar.gz", - "hash": "70844c1c1ca12dbdef3c459ce9a27d5ac91c893891473efb7b2184596210008674078c9d9833d6a2d5114b680a182a3e83d135b3d175bb373b439fcf22f4fc02" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-musl-arm.tar.gz", - "hash": "ce42c7ca6f5fc3cc9169df710393a4a9b9919d1b7e20907b4e0028a7fbbb0baa70210d12f6bfc2d05505b0b8d7111ff323e5df2a71ea4892026bd0940f9ae671" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-musl-arm64.tar.gz", - "hash": "93e7db6f87eb7068726330567f277cc930ec3ff32d04b8ec3dd19167a58524d067dc78ef01614c0ba0d3421a2dd23bd497fdf01615f4a3884d5593298965eab2" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-musl-x64.tar.gz", - "hash": "0df3cd63230702520bc5678c4e7c7baed27a0525ead160d9bee509d7c42d0d2fa5cab79bf527727a6d9deb464953522e8b3d5de4a37b52ff9ac678dfdff2789a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-linux-x64.tar.gz", - "hash": "2843b60a599fcb269bf700ea6233653264529d6522808c1b6ae0dc119e52e2c3203f3050dfef441dcb44130031a9ae03adbf25f1a51605ddc6f696b91433a667" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-osx-x64.tar.gz", - "hash": "e2f7e8d873b8e39c15f4fa40d2df24a3d086b00b0c8fbecc6fa72ac1eccc0cf484f82a4ccb2e513084f652196c5e36eee9b36eedbe8769369748cc03e8f7b578" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-win-arm64.zip", - "hash": "cf2392b4737b3cd968e681b572e10060960e9b8ea3acf13af2a1585170cb94fff424a54ecaf8f826fee64cdd3605c921386ab063952badffa1f79d2dcba9630d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-win-x64.exe", - "hash": "5a47b0d4ce223875c801c6b2dfb35a9a07d07a8340606558f583063e49518a15b5a5f5a95225e8076030d6aaa2abee4afdc2f4e21bfd3011bdcf546b17506b18" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-win-x64.zip", - "hash": "ebfdab8c09fbb17d9e49971c0e4927cacaa164187dbfc4df8fd1ed52656d97681486ac148a2f2543d88da7a766287d5570fc8686deea12fdeef2b57afa0e084e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-win-x86.exe", - "hash": "6e0df8fd2cf36b8208264a6c8a62fb24ba98910d75832f3fa45c7856a5caf80b179f3f08a866bb8a9fa0871246934e5f1e5e0535c2c0a011e471a73f0d559f2b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/aspnetcore-runtime-5.0.11-win-x86.zip", - "hash": "f9051f795cf640a23b8f4d7ee5ec8369f50148b1b6f8fb179f76bb46bf7a9646955f18a7278fcb20f72d4b95c79af02eab2b8db51a53a3f93506f08d06594298" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.11/dotnet-hosting-5.0.11-win.exe", - "hash": "9ff63db62398baee4394f9db5c0a30d33e3e2ca5d69bef2a6ef85d7581e9f7b58a33217bc763279557773ef30709a7eebabc12a5d2ab86c3253408378865eb71", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.11", - "version-display": "5.0.11", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.11/windowsdesktop-runtime-5.0.11-win-arm64.exe", - "hash": "0c9066914d728e5bff4f675f0112585d3b0cd6a2d7cfef29a772bdd1e2d3054e44a336f8d662e7680d3dce00d46dd0e686fa64be373d82356d2b93c7b6e11109" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.11/windowsdesktop-runtime-5.0.11-win-x64.exe", - "hash": "b3e00c68e95d5aefaaf366aef51f17d6dab4415890580fa0bc6ed29e3dfd3b2e9d3af477ffdebd5bd363b5d585e61e59f6296a6165d8b09f847dd03c87725ce2" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.11/windowsdesktop-runtime-5.0.11-win-x86.exe", - "hash": "dd9a64f30c6e5b028a1070f538ec2c97ca8bc96d06834f1cfe07acc5db3ab0373f386ddc01eb1dd7bd8b4f52d1437a629ec5db962f7ca9c4237697b9fc7173a7" - } - ] - } - }, - { - "release-date": "2021-09-14", - "release-version": "5.0.10", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.10/5.0.10.md", - "runtime": { - "version": "5.0.10", - "version-display": "5.0.10", - "vs-version": "16.9.11, 16.11.3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-arm.tar.gz", - "hash": "3f0e86f14fe8a9b8773a6078fe236e746ca078cb1deab36f4b770170d6a4322b1c870328148934dd4bd5953d5962de4a32ef487c6142079759512b8281d8c7a1" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-arm64.tar.gz", - "hash": "30861f2bd41fcd7c1d657be1eafa09f22886af0c3e09d1854c626b675a469347ce9fb79b2ea92b5ed4e2fd3d3457766ac03fc5393a690099e1d2b9b15f3334b9" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-musl-arm.tar.gz", - "hash": "f72efa3397b6cdd0d4833ca228f4e7ff6eb1a874fde14737b68f39dddf4593ee859ad80210f9fa7e34c7e1ab0cbeaac5eaadc9aa5fe0a88e15064080b0f01c58" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-musl-arm64.tar.gz", - "hash": "c392afbee253e1bf98a83c543fb7416508ad3655add357fd03d2333f8e3b62321241374ba988a5cfacf4d0ff531bd7b15bd37f5d67b79a104d3b649b2f28c5f0" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-musl-x64.tar.gz", - "hash": "d0ca3aef030a575daf09fcfb8abc3056dcb6567da661c8c18162882a8ae9af3de013053ada82e0ee3042a806cb10dd234f59aa5bbdcd229d5ead582464ad4154" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-linux-x64.tar.gz", - "hash": "421b00d5751381e6bf829dcba8fa0d781f0efd065be492739d60a4bef2b7b362dbec77fa3289e2ee45cab40616f95318fc214699ffe2f33aa15e77c2d163841c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-osx-x64.pkg", - "hash": "6ae9465c89e8c316b61164bda48f7c4370ae2c3871e83929d0c0cf986d286ef13c26f4bc384c419e691043ea0ec0a23094bed6f4aaede2a9b955780a0c13f89c" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-osx-x64.tar.gz", - "hash": "2839f4fafa1f85a90b43a74a4898cbba915324f7363f1716e58cb9163d1415fa4d360703e27d0cadfe8495a370ccddbcfcc514076a880d6343a0bff76bb5ac2a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-arm64.exe", - "hash": "a047e073d2f1b17b47962690ad6ef7f3672dfcb8d2f1173b93fde0c9f67a6dcec7642a40f2b26135b23dfdafc6e7e45c55f055f1b46390838a4de1a5f1377ce7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-arm64.zip", - "hash": "4ab89368d46412fbf0d307dc3d57abc90c49bb07dd012d453c22166d2e6207f5fbdf7255a3157cf945df30cf88653a8e04112d51551f207e5787f9b312b553e0" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-x64.exe", - "hash": "3cf978c8fea2a1ae6fd8eefbd7b7d14d3ebfbda8053305bc8da0df3df96e30a100145d16cb7f3fc4f1596d5812a96defe76903ff93539913b6293eeec4c85000" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-x64.zip", - "hash": "5ff6720d17af64a2a98907824504c913cc90d6eb31497d293f7ca581792769ce5d735bf371a2ddee74241a6f2ad7da8bfc74ac23d83aa98d0b3f5a6dd770ec01" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-x86.exe", - "hash": "960d256419e84abeb1989b4be5f2f645adc19240ea6f549301677eb19d4a8296a867d35739df566c981f29db1417d65f5f7c64a5bf5488029e695b13d799e950" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.10/dotnet-runtime-5.0.10-win-x86.zip", - "hash": "1f0babf92960d598adddc79caf4357f89a7a76e296a59183ce637410e501046764ab73cc97de0f09239d57b8dff2b8a301593cb3c9bf8e97b207d40545b192b0" - } - ] - }, - "sdk": { - "version": "5.0.401", - "version-display": "5.0.401", - "runtime-version": "5.0.10", - "vs-version": "16.11.3", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-arm.tar.gz", - "hash": "53c76be404587cd1a6ccbd150522220452ac6e11b8d2f8ab87b8119d1871f7cd6a38ba89f2cc5b6ea953bd900ffcdf5bfe947f0b2df6b442ce61ff202ec0db6a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-arm64.tar.gz", - "hash": "770dcf18c08cd285934af61bedc06ffcc16a74115d15376f72376cdfbb4ab9cc9f53537ca1fe5d906b4b3c30b960ffe1404d6f7e01254091b4b9d288e9e972fa" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-arm.tar.gz", - "hash": "67cd0d333b3dba30a896e7077501be811e440c25fe860f5b077ded6765b02b84fe7444ebeab8e42039790aed46e11e006da9cd2e3b7435feb14495b86ffa165e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-arm64.tar.gz", - "hash": "fe0ab5925fa4d963c31b80d7f71a785773c021d2401bf3f61b19e63a1f9a722e551d95c601d44a1b7d3f562fdeeb969dcc24ddead8df948ef3b1ca58163e6919" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-x64.tar.gz", - "hash": "a2077f4d1c9da9c69453b771cd239bad27f62379402cc5e1c74a1f2a960fd55efc85cc15eafbac11f17ea975895ce107fab4bbfc49880a0a14791e8ac13ca2de" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-x64.tar.gz", - "hash": "a444d44007709ceb68d8f72dec0531e17f85f800efc0007ace4fa66ba27f095066930e6c6defcd2f85cdedea2fec25e163f5da461c1c2b8563e5cd7cb47091e0" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-x64.zip", - "hash": "b0370306838f93a13d144f0e34e34d021ece5639fd1438bc37df8d8f93d0b30d0d8a1510d08128c674e4ba8225afb6ecc487383e685cfe775b89faff0ba9ce25" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-osx-x64.pkg", - "hash": "d886a6cb4edec54b80902861eb42407e8c15418a1dada4ffa6d72adb97dbe46a164a05211a6e616d3bf259017f96fd2f5662ea0e9fd52072fd6a1ba2a12ba58f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-osx-x64.tar.gz", - "hash": "eca773f407314123fd5b2017f68520c0647651f53e546583c4145b596c230c42898b3e56355cd5ace76b793df4aca3cd7ff9142718c86eedeabbabb70b393d0e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-arm64.exe", - "hash": "fe96229218da7ceb3cb4749d424de01c502c75e37766c5be18fca2c7fc87b2ee4b7f49f3b39e350355b281b1448ae70786740eb007c670cc84336b2a86c8778a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-arm64.zip", - "hash": "baba61bd5309a4428b6b366d8ee95876a0566d8cf734e5fd3d657588462b1e978d7cecf592a1fecea3755a426fffe4263e1662bc1c4b770d9a9c0bcec50f09c8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x64.exe", - "hash": "68bed347233eed63efae7df7359d2af8d4c1eeeaf008de8f0979bc7ee9f7c21da427802feb96d9763a85270763c0fa1e2e4baba8b9550a8748435ee49fc68106" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x64.zip", - "hash": "9838f0286afe3724f490c6686564dae3ab27c9fe0e2c41a48d8aaeaabd07d9a219e207206d88311241c66dde8c79a9dae7ec1f8103303aeaf6943a3a9f6d34e5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x86.exe", - "hash": "bc5a90f2906cff26dd902b9149f83be62af9c372dd7bdd8fad770235ee82df0bf63b29c89690c51de386133d0f45d82d63be28839568da0f018884c3ba962d57" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x86.zip", - "hash": "a5c406b7f198f109f9c0fda8cf9ec7dc14ad53d557090b7ceb85e1afbd8123b39987643f3bbbe8558fe51a2a09f51034a6d6dd19fe6635aecee5c29e48a0fc05" - } - ] - }, - "sdks": [ - { - "version": "5.0.401", - "version-display": "5.0.401", - "runtime-version": "5.0.10", - "vs-version": "16.11.3", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-arm.tar.gz", - "hash": "53c76be404587cd1a6ccbd150522220452ac6e11b8d2f8ab87b8119d1871f7cd6a38ba89f2cc5b6ea953bd900ffcdf5bfe947f0b2df6b442ce61ff202ec0db6a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-arm64.tar.gz", - "hash": "770dcf18c08cd285934af61bedc06ffcc16a74115d15376f72376cdfbb4ab9cc9f53537ca1fe5d906b4b3c30b960ffe1404d6f7e01254091b4b9d288e9e972fa" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-arm.tar.gz", - "hash": "67cd0d333b3dba30a896e7077501be811e440c25fe860f5b077ded6765b02b84fe7444ebeab8e42039790aed46e11e006da9cd2e3b7435feb14495b86ffa165e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-arm64.tar.gz", - "hash": "fe0ab5925fa4d963c31b80d7f71a785773c021d2401bf3f61b19e63a1f9a722e551d95c601d44a1b7d3f562fdeeb969dcc24ddead8df948ef3b1ca58163e6919" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-musl-x64.tar.gz", - "hash": "a2077f4d1c9da9c69453b771cd239bad27f62379402cc5e1c74a1f2a960fd55efc85cc15eafbac11f17ea975895ce107fab4bbfc49880a0a14791e8ac13ca2de" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-x64.tar.gz", - "hash": "a444d44007709ceb68d8f72dec0531e17f85f800efc0007ace4fa66ba27f095066930e6c6defcd2f85cdedea2fec25e163f5da461c1c2b8563e5cd7cb47091e0" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-linux-x64.zip", - "hash": "b0370306838f93a13d144f0e34e34d021ece5639fd1438bc37df8d8f93d0b30d0d8a1510d08128c674e4ba8225afb6ecc487383e685cfe775b89faff0ba9ce25" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-osx-x64.pkg", - "hash": "d886a6cb4edec54b80902861eb42407e8c15418a1dada4ffa6d72adb97dbe46a164a05211a6e616d3bf259017f96fd2f5662ea0e9fd52072fd6a1ba2a12ba58f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-osx-x64.tar.gz", - "hash": "eca773f407314123fd5b2017f68520c0647651f53e546583c4145b596c230c42898b3e56355cd5ace76b793df4aca3cd7ff9142718c86eedeabbabb70b393d0e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-arm64.exe", - "hash": "fe96229218da7ceb3cb4749d424de01c502c75e37766c5be18fca2c7fc87b2ee4b7f49f3b39e350355b281b1448ae70786740eb007c670cc84336b2a86c8778a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-arm64.zip", - "hash": "baba61bd5309a4428b6b366d8ee95876a0566d8cf734e5fd3d657588462b1e978d7cecf592a1fecea3755a426fffe4263e1662bc1c4b770d9a9c0bcec50f09c8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x64.exe", - "hash": "68bed347233eed63efae7df7359d2af8d4c1eeeaf008de8f0979bc7ee9f7c21da427802feb96d9763a85270763c0fa1e2e4baba8b9550a8748435ee49fc68106" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x64.zip", - "hash": "9838f0286afe3724f490c6686564dae3ab27c9fe0e2c41a48d8aaeaabd07d9a219e207206d88311241c66dde8c79a9dae7ec1f8103303aeaf6943a3a9f6d34e5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x86.exe", - "hash": "bc5a90f2906cff26dd902b9149f83be62af9c372dd7bdd8fad770235ee82df0bf63b29c89690c51de386133d0f45d82d63be28839568da0f018884c3ba962d57" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.401/dotnet-sdk-5.0.401-win-x86.zip", - "hash": "a5c406b7f198f109f9c0fda8cf9ec7dc14ad53d557090b7ceb85e1afbd8123b39987643f3bbbe8558fe51a2a09f51034a6d6dd19fe6635aecee5c29e48a0fc05" - } - ] - }, - { - "version": "5.0.207", - "version-display": "5.0.207", - "runtime-version": "5.0.10", - "vs-version": "16.9.11", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-arm.tar.gz", - "hash": "9c9703426ad04142c3c874606220e2f2c2bc129e7b0e2924cf79dce9396545f824564047280c9b8ccabc67e2df145a60ce4a1cee7970814bd718d9e83230dca8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-arm64.tar.gz", - "hash": "8af1347bbff0cc35daa772efc5870951840c9ead3e85faf7f183f8194a68938d8d821a8fb23e006b262d5673566d2337e9320cdb38bfef6fc3a337b8d7a864f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-musl-arm.tar.gz", - "hash": "6d70ba692620f471b12ba293c08d3fd6a268c4851b794c23a6d5e9bc2d3d8d92887103e9a0cacc3a1e7bc4e637851afd9efc4731150ced6d179c1049dab272ab" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-musl-arm64.tar.gz", - "hash": "edd51db339c757ac8263c681d643a8d045cb45f4ab2882dac0b681cfb1201c041a1d47a28e81d3e11245918e1788177280466f1c6faa3fb2e628ea6bcf5e7218" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-musl-x64.tar.gz", - "hash": "62fc63abc3128b1a491a5b0751dc0f2d5aaf9c76a5465d54cb83360e59ea4d681cd9c99b7ba736569ef2fb95e14d7f8d61432029240196a4453c6a56daa32809" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-x64.tar.gz", - "hash": "57c3ec6e37144a6ce37bb5fb1521ca877f61a52693bf1f22940da166c4cf54701d9b96d8d584b7a4ed73fe896113c1cf3e328f25bee9228f9db461d1e961076a" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-linux-x64.zip", - "hash": "ee893a75bd86ea669193b42ef6e9153990ebcb5781aebfb2e3197148096b6b2707d41b73114c9dbc3312553cc7e2ef1525a00df852f26786a12e67e5e189abbb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-osx-x64.pkg", - "hash": "8ac6f7d6d9dbd4310568fa8cd4ba5b691f79f5c24562b0cd88611acd9bf1ec9eb89b48768acbf2be407fc12d42014937ad951c84e5694aee71c0cbac926fa629" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-osx-x64.tar.gz", - "hash": "7b2f66efc45ede30164ecd4004de95887ad3a33bc6efb062dc5ff596e8169c1692c626fdae36878c6fd0814ace779026c620ab6c4ad4dd0d4a95df8c10170125" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-arm64.exe", - "hash": "c9cfb0e4afdbe578746b9a7e6d63780d0ba61fd2f643a88f161ac40e2aa82cc940aa707402639f7d8b1814db028b8f574d765a9fa400f4912e48d03c387a01a0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-arm64.zip", - "hash": "bb443dcf1bcedfd3f6c7ec21c3397cfee93cdfeab232d5d8a39387549b30e50380395af9f500fdaeebdc555646cbbbce7a6e461873af6cdd2be2d4d5ab7541e5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-x64.exe", - "hash": "7ceced8c4dbe49160086de74a6496497012a1c04bdedab6ed07bf8db8ec6d4910911b50c03ccf87807d0766b856ab74a3dd46b10f52fd6127b3f580e519da7db" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-x64.zip", - "hash": "dc57ef0b056eec4eb657b78bb3edab44c76a940441fef1107286c2d27a1b7bfb9ad0ff659a4ea6f3dbe7f0134321e6c3d41932247213b0a0234a1b435b8c2dc4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-x86.exe", - "hash": "bf9d8be546eca5453393f352a9604d753ff05331f3d73b9fa3a5e84798f6309b08d2d46180ad5eb78a23d190cae0d14a2677e3153b6d86c4aba84c10bc228dd6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.207/dotnet-sdk-5.0.207-win-x86.zip", - "hash": "1b5b3dccbb4b7b6ffe1b351e144d51058ea240c1737e028d336ee913f95c6b164ea7ae0bba68c2d831bfefc5de3cf905466e3586c36982ed59d211e49715b0f7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.10", - "version-display": "5.0.10", - "version-aspnetcoremodule": [ - "15.0.21236.10" - ], - "vs-version": "16.9.11, 16.11.3", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-arm.tar.gz", - "hash": "8227fce474bb349e2897a16a8dd7ac935c55b12881a0fae9806c161a6ff59acba14a475f02795838a8b516d639bc1bc2d90a7492ebbfa86f81ae5386c60def05" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-arm64.tar.gz", - "hash": "e86dd5b26e5add2f35c3a029c78e3c447755a319c105d371da297f66db5eff260f3f55ccf23e508e9a33536876708ac2e358dc62a4a28518f88df3a9131adb01" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-musl-arm.tar.gz", - "hash": "3d1f46be14e7dd0881a736c30ca71ecdb80e843a5f8ccdc871d4d1fd4e091c09ebbb1baec820f88e4a68b351dc86d2b67fd5ad609c3209b5a218ccc07f557ee5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-musl-arm64.tar.gz", - "hash": "bdcd08174f9813b73d21c433cd6de76487167d3890953aea961c0275c16a70c1d871cfdfdd9cb4b46b446e638810c288ab3fc79fbdf4979367624dfdaf3f95ec" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-musl-x64.tar.gz", - "hash": "0e995f892eca8893e211e9965b2378da263233ad92c5f32624c4dfbdaec1ad7b8b3c5496a27a81891b321eb12d7a08445cd86832e219584a31cad4baef18b9d2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-linux-x64.tar.gz", - "hash": "60fd41e42e07a96416baf2dd7ea8112a7c7d510bc6f4656274981777d2cf5e824cd519924cdf06215338d74e78cdc7801e1b24c39b3d67cd2d1b3c6fee6474a9" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-osx-x64.tar.gz", - "hash": "124abacba27e26249d265d51fd7abc7ab0bed9859ce3a6a8e4f193031bff3f28dd81af639542b0cc043a3957e2a90a2f5b41c6ec6b4a50a4cb8fce12bc8654f9" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-win-arm64.zip", - "hash": "db1e19f09ca0c943c390ab348c344dd360b5d77aa1a648d294338904167b9a4a57a2e4b36995f306ba36eca7047e0d076be764d1e7e2c44ffab4ed895b574f2b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-win-x64.exe", - "hash": "ae3476f72ceaafcbc6414fa49790251f0f3a6b078951ff896ec00ca5fcc9d58ab89e3582d76d2135f5860e3842c41b390b771a07e9f5ef71b34679984c40ebe1" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-win-x64.zip", - "hash": "6fdb4960a670f0aee52bf40a68339762d9088ecaee29c5a379570eb910cb6fe0f0eadfe971e1820ac713beef61363980485eae96ac7e10cc83384674a2071e27" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-win-x86.exe", - "hash": "763f580d780ff9f7be70890f6cea275a463a5cfc8b90982a0d40d60e86630b472d0439f806eedbdc540d10ebf9f5ba3a1861c3f270e87462bb7dba14ba95bffb" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/aspnetcore-runtime-5.0.10-win-x86.zip", - "hash": "e8787c46873047046c5ebba498f4abdd64fd9ef9a8fc3cdc1ea55e4582f85bf1388b3f2581a18383f88c51d0cade80014765d49d32d9f38a0df1c17417381923" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.10/dotnet-hosting-5.0.10-win.exe", - "hash": "c97de7ca812b63c482e2ad5db1216db46e95a802487406b784a1756f3095d211f1903b16b9f908f388335855a509f6d49025160ae4e0767c194c4c2cb45080cb", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.10", - "version-display": "5.0.10", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.10/windowsdesktop-runtime-5.0.10-win-arm64.exe", - "hash": "240960f78db308e41e89cb2789aa4f699c5973fd0401abd8cf7209dfb5259e9a3229aeb951c9e17b6c3c1624b5e17c709fb03dbab196dd30e232cdfc161df3ab" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.10/windowsdesktop-runtime-5.0.10-win-x64.exe", - "hash": "71f5a21c44fb133a4778f72ec62fedd5b109b965303a466e67e615e075836f49573df4e32f9e6262f7fc2105a6e1a462f691fd92890df611cab49c338c81bb09" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.10/windowsdesktop-runtime-5.0.10-win-x86.exe", - "hash": "6ab85e0e2e034252abbe1a7642e679d22de44e3c5702519224378c6cdfcecacd2397b0c974ac83bccab6e632178dd001d4e2c3e1ea925c0d8f9b2cb40a9c17ec" - } - ] - } - }, - { - "release-date": "2021-08-10", - "release-version": "5.0.9", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-26423", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26423" - }, - { - "cve-id": "CVE-2021-34485", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34485" - }, - { - "cve-id": "CVE-2021-34532", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-34532" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.9/5.0.9.md", - "runtime": { - "version": "5.0.9", - "version-display": "5.0.9", - "vs-version": "16.9.10, 16.10.5, 16.11.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-arm.tar.gz", - "hash": "9019858e75f73b5fd6ce0e04aeb060f61221391b6a55dbf8ed2e43f1011198252f651fb0e07b2b8e7d8d558403f2c86f6ced147c2501e36a90411bd21e521a4f" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-arm64.tar.gz", - "hash": "00f33e9c7f6ab653872952a3bf97bd51f8c764abbcb472218d722f6d5593a80b94a15c1a6fdefd0a4f8ed64874754903c3ab40e1761cff93bcaff3b5da82c47b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-musl-arm.tar.gz", - "hash": "de0b844c41b8ce5749de7e5c7caad0e4ae7b47e760de513c6e9d003210fa3be4573199150cdafec4768f42ee35ab79bf509f59ebc184789a25c8abc2f27c956d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-musl-arm64.tar.gz", - "hash": "20c98d01415966476c3d8187625b9a44ab329dfa9d8b7db6540e62924c0e75ee610839a67efba3667f03e7f37962c08b2914561ec1c8d63b4b8d9e4245aad4c5" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-musl-x64.tar.gz", - "hash": "0b6e7ada8b07e09d2bbf2cae0d8667c0a0876e3d77876958dae3f95e2c98e74c078c663a1fdb326f9bc46abc3c2d86c518cce4a170ad1128e3f20702410eabca" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-linux-x64.tar.gz", - "hash": "454a11d87199be6fcd5f97f28b0f9c2f15c0288dd0759dc96ac2c730697b9e6514a19bbfc06185ccb4289dd11681ea5e9cfaf6f3676040e36d21e9b90282af8d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-osx-x64.pkg", - "hash": "91a46e708d62ef7939abe822fb01e0b6d711099634c271ca78088e40749c87bc24639ddcd08bc0622f8459becaff059b9819c32f76722989689102c85bc4e997" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-osx-x64.tar.gz", - "hash": "4c3749fa0c64bed3ce1db05af3c98b2769b0d144977283fb887e9fa836fb6a7ec97e34591192c2c1fee3215b29e0f8e198e34a1b177c4e19ecb42743881ad819" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-arm64.exe", - "hash": "81879297d270ea0853a24c22f79b266cb5bfba1d9cda57d7379eb9c6e6d78ef991c7ee2772e948d6a857df2ce4186b39647a798ca59a154621d5ffc6be949173" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-arm64.zip", - "hash": "01f7f96bfff6394a8be2da382bfbdbc3687d4199c5dbfee2771f6fa6f4608f8201f26549ef0ce47ec6c22b43a66ce1a1e2be36914643fbe327dd58a3aa73e573" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-x64.exe", - "hash": "4df0402bac9092e6c5ad6369196214ec99efd8dfc4c005da0b6aa025e529a8fd892f0fd57fdf8fe46940f4384128732ec2bf560b0e61c2b8351aaca38a8eef8f" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-x64.zip", - "hash": "3d0e3553d533725de7fc2a35ef9958f937683219ba8fa257213593ff31bd40beb8f5fdec8387603951a5b9679439ee0d94eea0bb399618802aeeaf332010640d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-x86.exe", - "hash": "732d82dcdfdb15a14b0d9c380708ca5ba9a6d2f46a46d92e316fb5cd77f4b1ff0bbcf56d462b6e9a55d4545561632b2b003a989a92931660f54cdfa915dc5f41" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.9/dotnet-runtime-5.0.9-win-x86.zip", - "hash": "d96ac9d430b4b530b81b481aceefae9ad17d4509ace50d930114ae5787233899c59c194ee0059dffdaf37bfb17fe56c4ccfe5b2861ceca7425f7af765c57097b" - } - ] - }, - "sdk": { - "version": "5.0.400", - "version-display": "5.0.400", - "runtime-version": "5.0.9", - "vs-version": "16.11.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-arm.tar.gz", - "hash": "432802c0a37fcc005bac98f7a363ff1484f3c0721c5202c9ed7761e1ae0d8b8496fe7be09a640da55c34bceb9eb63dfe509c5397cbc7afd44cc84ad4bf9f5e16" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-arm64.tar.gz", - "hash": "de0cf29ba176529c142c7538ce557b8af1ca978abe3cc6e079ed9cbc8adc41779ad7e28ed519b37e9b16f54381d94fd7842572b3629d65f5494f1ce7bb2a3810" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-arm.tar.gz", - "hash": "4ba03df05e6e79368fcc50657c9ed8d86782249520240390c2ba63f6bfb41954bd45cf7de14f6c4b8e475045a4b5d8ba996c498673b4982175e3952df3875453" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-arm64.tar.gz", - "hash": "d969a5e18c22c53ed8868895f769d872cfffdd93a0112107eb1305da25251dca8eba358b54fc9ba5f7677fb1bbbdbc815cc665ca7d6198ac12634bac51ddc6f8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-x64.tar.gz", - "hash": "11983f5956bdfb07cf19e74c8bd67c21359825a7fd14bacea12f2f9324d3255b93abbc8b6269402f7781ab0edf60a42f908e0c10f3446346dbcf01d076da2032" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-x64.tar.gz", - "hash": "4d1a92e0885ade03de0fdb41c27cfd948ab749a2f3e686c4a9dee314888c19d76efa6f8663a7aa7eb56cf36f508638c1a1f01c845d1acb19d8662d6ae365d572" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-x64.zip", - "hash": "e1a2ba7eec471f32fd8b743134ba56c9aed00fc1e5625b5e9b0e728417336f585a5bc4d92caae3a032738b1fd1d1527e5edd797482427066537564dbf15a91c8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-osx-x64.pkg", - "hash": "2338e2c7bf7de311f597d2e1681f7621aef12a0f4634470f473320f44944b9bd31f8e98f879dbe98e19bf9ad1b7672c6773a0a2a3fdc49c4a7c91586efdc54c6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-osx-x64.tar.gz", - "hash": "8f4ad02e6e46f6dccdde18d06f41ab702f11833e76d2b0eadd245e22d9636ab49ee864b11e19bc1c20db00af58b60e0cfb6fb1e94f8cc18497c76a83d4aff3fc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-arm64.exe", - "hash": "ff64691c370f8b46df98801892d42ced8204932a404b77abbd1b4c69dab50da4fea2bcb65204c305cb55ad636d2644329f6211a3fda6b2f12249d322ed5e498a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-arm64.zip", - "hash": "ce97ce1ebb1a925c85d024ba6b01591288c06077891f33031edd12d85ca582259a75dc89dd499a17e8c35dafbc7ee62271ee0dab61f31310bececcde371354af" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x64.exe", - "hash": "4c8887fdbab41015c00aeda179965e752c063284b88797f131617ee2c4246945975cf90886161d9e010db7d9a068f66ab37b66783b69129f0e5470f3225f96e2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x64.zip", - "hash": "169640641622c76f3f78eeb33f369286b0b487be635685a7653e847a8cda8e5782d8803d5f993a7d36fb0d38dd03a0576d97413ed23b0e2cbbd67d4c65de9f94" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x86.exe", - "hash": "981b41965c174c9cdfe078a6ddd6047f0ffdeb66f66d04e1d719cf84ceef0c7487885da99d42bd628bed93b80546ba97d69cb1f30d85c0c5fab6ff45a92c001b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x86.zip", - "hash": "081afb22c49c44e6a2fe63d78afdf8398298448db2c21244567149fc41e617ef2ac51fd9a6c918954f3d6d2bb5e65967a46d61e62d546b14a3b5718eee792bc5" - } - ] - }, - "sdks": [ - { - "version": "5.0.400", - "version-display": "5.0.400", - "runtime-version": "5.0.9", - "vs-version": "16.11.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-arm.tar.gz", - "hash": "432802c0a37fcc005bac98f7a363ff1484f3c0721c5202c9ed7761e1ae0d8b8496fe7be09a640da55c34bceb9eb63dfe509c5397cbc7afd44cc84ad4bf9f5e16" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-arm64.tar.gz", - "hash": "de0cf29ba176529c142c7538ce557b8af1ca978abe3cc6e079ed9cbc8adc41779ad7e28ed519b37e9b16f54381d94fd7842572b3629d65f5494f1ce7bb2a3810" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-arm.tar.gz", - "hash": "4ba03df05e6e79368fcc50657c9ed8d86782249520240390c2ba63f6bfb41954bd45cf7de14f6c4b8e475045a4b5d8ba996c498673b4982175e3952df3875453" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-arm64.tar.gz", - "hash": "d969a5e18c22c53ed8868895f769d872cfffdd93a0112107eb1305da25251dca8eba358b54fc9ba5f7677fb1bbbdbc815cc665ca7d6198ac12634bac51ddc6f8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-musl-x64.tar.gz", - "hash": "11983f5956bdfb07cf19e74c8bd67c21359825a7fd14bacea12f2f9324d3255b93abbc8b6269402f7781ab0edf60a42f908e0c10f3446346dbcf01d076da2032" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-x64.tar.gz", - "hash": "4d1a92e0885ade03de0fdb41c27cfd948ab749a2f3e686c4a9dee314888c19d76efa6f8663a7aa7eb56cf36f508638c1a1f01c845d1acb19d8662d6ae365d572" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-linux-x64.zip", - "hash": "e1a2ba7eec471f32fd8b743134ba56c9aed00fc1e5625b5e9b0e728417336f585a5bc4d92caae3a032738b1fd1d1527e5edd797482427066537564dbf15a91c8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-osx-x64.pkg", - "hash": "2338e2c7bf7de311f597d2e1681f7621aef12a0f4634470f473320f44944b9bd31f8e98f879dbe98e19bf9ad1b7672c6773a0a2a3fdc49c4a7c91586efdc54c6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-osx-x64.tar.gz", - "hash": "8f4ad02e6e46f6dccdde18d06f41ab702f11833e76d2b0eadd245e22d9636ab49ee864b11e19bc1c20db00af58b60e0cfb6fb1e94f8cc18497c76a83d4aff3fc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-arm64.exe", - "hash": "ff64691c370f8b46df98801892d42ced8204932a404b77abbd1b4c69dab50da4fea2bcb65204c305cb55ad636d2644329f6211a3fda6b2f12249d322ed5e498a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-arm64.zip", - "hash": "ce97ce1ebb1a925c85d024ba6b01591288c06077891f33031edd12d85ca582259a75dc89dd499a17e8c35dafbc7ee62271ee0dab61f31310bececcde371354af" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x64.exe", - "hash": "4c8887fdbab41015c00aeda179965e752c063284b88797f131617ee2c4246945975cf90886161d9e010db7d9a068f66ab37b66783b69129f0e5470f3225f96e2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x64.zip", - "hash": "169640641622c76f3f78eeb33f369286b0b487be635685a7653e847a8cda8e5782d8803d5f993a7d36fb0d38dd03a0576d97413ed23b0e2cbbd67d4c65de9f94" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x86.exe", - "hash": "981b41965c174c9cdfe078a6ddd6047f0ffdeb66f66d04e1d719cf84ceef0c7487885da99d42bd628bed93b80546ba97d69cb1f30d85c0c5fab6ff45a92c001b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.400/dotnet-sdk-5.0.400-win-x86.zip", - "hash": "081afb22c49c44e6a2fe63d78afdf8398298448db2c21244567149fc41e617ef2ac51fd9a6c918954f3d6d2bb5e65967a46d61e62d546b14a3b5718eee792bc5" - } - ] - }, - { - "version": "5.0.303", - "version-display": "5.0.303", - "runtime-version": "5.0.9", - "vs-version": "16.10.5", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-arm.tar.gz", - "hash": "b2dc54572f89d3c995a2bea9d8b64c475f5af9eedab280149243c4efe3d71e04c78db8a94f62e4e692101996aa3a4fa5107252354af5ff8eb1c0e831666a50a2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-arm64.tar.gz", - "hash": "d7f698d359d59d3502f007a1f2d043172d871e6ed795a60ee41ec3dd41ff9e63a5734a760cf4f1f534035bedbc73f4f300615c7aad52c201adee9723dfbdddb4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-musl-arm.tar.gz", - "hash": "14d4b8273cbcefc07b3e5475661780b88bcf17b7312c219faf479c2e52eb7ff1623d5dfa003555d137268ac920a6b6c476a84fd886640a726cb3ee1c4b944265" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-musl-arm64.tar.gz", - "hash": "1201cf0361fee14f7f641616ba7869fe4129f639e215610d9384731cfbd728f8b5523baa76ad2f2b6ac3c33dee4e6dc1896a9d270a4004664c231298190f2474" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-musl-x64.tar.gz", - "hash": "3d9d32e3287417e0135c8f5a4ddeeafd3698eabf6bf0558a7d48114fd129acb8b2b8f1652e9a56b27a4881a5d525f14a9bf1537a47caa56f6539e9cad8f2542d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-x64.tar.gz", - "hash": "3550ddca26d553904f65e759587432c2f40755c143323e4367d44ce176913e8fdfff79cdc0470792b773f28aeffee751d79d7b5d0f9ea762537c8c44e711e552" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-linux-x64.zip", - "hash": "3514a93184177a2e99714cabdc2dc94e1900a20776d57ed16336781431632031d4b19452a00dbef00b33401f2bd527158289b45181801655bf3d64451cedd288" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-osx-x64.pkg", - "hash": "35c6fd926e8fff18b6d35cd3d852d2d480a8bdb3c80f883740c1d73bd5de9a70e33bb0b3df34dd085c680a4221d276a76c684c91c7cd59ad2674a63c598801fc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-osx-x64.tar.gz", - "hash": "22717c133976fb8696ed649b2d8f127d54e9d21fbd564141e6334047c6705af70307dbdf704ba3365ce520ae2f0ba660bb84845a76031c02d141379ab78ffa04" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-arm64.exe", - "hash": "82d257dc0489fcb5daed6d20809a785d034ab44c415a4729d0456dc924e04e3c22654e0464d03d585febc2e26f40501cf13492e6e29ad19643c9895e7692f739" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-arm64.zip", - "hash": "28391c59dab0ff1e8a66d9fc697a710377b565001dc1e07bf7d6f6dcc9718c7a72b0d525464493dd8ebc468c085d19f67b3b623034ed303cc23b74248bcc8ea9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-x64.exe", - "hash": "8c5f18ba241a8730ae880a8ad3350c721f89d7f9aabf4b674f63c326c4578bd7ed958a8c0942c81c95e497a780f0f37076889a7ae88940040419b17d93cf3b14" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-x64.zip", - "hash": "8ce18ec56547bb377a608f634b7124639a4a7534278e1aacfbf2bc9121974ce095c1c5d6b54caad87362d50fc8b4c32fb80dd4611cf5627485356f9126966486" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-x86.exe", - "hash": "3cd7be10c6a3494d14456fa7d7d773a1b777f5447bb45ad66d4840b5e10e81c3abb4632318a9e738d1e8f5fb9cc4fbc5e08aa41fa695e2bfab12dc278d16cca2" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.303/dotnet-sdk-5.0.303-win-x86.zip", - "hash": "fd3e9886f49ea2fb199420c285819fa9b1e9fd622b4f018b428003d46053dde437fcba04fcd123ecde09127733c630d7518f8db5623c5894423570889fe96e56" - } - ] - }, - { - "version": "5.0.206", - "version-display": "5.0.206", - "runtime-version": "5.0.9", - "vs-version": "16.9.10", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-arm.tar.gz", - "hash": "6a4c5aaa35b77aa3f4ca32b361f2c44d2138aa32be0825a076034574878e72c26f9102da62851960ab5eba1d99c27df8967c9f69dfc040f8307f3e0db43b6154" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-arm64.tar.gz", - "hash": "6b0dc667c31217ac11202a82d63d378dbf8ddc17b7f5b8352363caf0f60873af69a3f598869d7baf9234ba8f6bd408d49e17682e975a20d7215ec92624cc5c0c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-musl-arm.tar.gz", - "hash": "8decd18d4f1b70adac8b6bde1b68df6ce87eab9cd023039242b6db946a446b5a88c4335610e3cddb3a010040631c62b2f6b88c44b3142e84654cb4293dda827e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-musl-arm64.tar.gz", - "hash": "70c6b97b91bf52c3e8d83e565eb49e5c7db2f9b050efaf09b4c7adbba457c5f39075eb341d4ae6f0289d1cdda18b1121670a856adeede1b238053e68fc114ba4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-musl-x64.tar.gz", - "hash": "0268b8ec461a4ea1e794ce24ebefb7b5b0193e7b983fb9f19261e800d8f55e3bcb71c84fd96a29f4dbf266d8c669f59f0554a6e2a170028e6032e6b4439802a6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-x64.tar.gz", - "hash": "e3889cada267847317c8f8a4f2168be0782bd0740c710acddb358d1109c52abe894d44c85c9bc0efeaaf47d06ca3fb012805a85f84273ca77236993ac3ad2bef" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-linux-x64.zip", - "hash": "dc29274a040c200dacf23a05f8f998163bf2c28fb7ddc25fcaaf8baaf586381095d69e14c5b9be99c659d938179375c713a1d7bfe0ec8e319d21e69364645e16" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-osx-x64.pkg", - "hash": "7dc3fa81df7e46c9021472edc9c7f687b01ba0aed157f9c2aa7fb721438968bd476123079bc8c2fbc487914d884acb0c1131001ce68bc4bd2812f35d8fd1043c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-osx-x64.tar.gz", - "hash": "2a1d316306d3825316b27559fc613ff3bddaf6a538a84714f5b4786c036285d5fb1cdf9bf93e1c1e63222c8af3d387264f0155ca365c7e04977e66fea417a44f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-arm64.exe", - "hash": "0963dfc3370ce68bfca4dd51e2bc576b16fc1b7c9c8d2d6a6e031f6fa218090ec1c51ff29aa7606f4df4da355b6a6a344ea11b812282502f8ad5b6464c0d43ca" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-arm64.zip", - "hash": "4b093cfa17ad859c74f374c27837f2e0225b425990a90376cba2f981b05bd6d1b24a8e69831041963e47b5413d608f6cdd7ac55adee0742aa7a9861b12afd52d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-x64.exe", - "hash": "7904408d8fb3d83f57457668ea3cf22f5f41d168e89c77d52b86df5e8abb1550ae5e781976a4096584a86bf7f085e99952d25413e3562e1974a17d511d20827f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-x64.zip", - "hash": "fba8799d18d4d084657bfe77cf5998b49a658b3b99480afc891a22ed5f52faabc88f4411eddf2120167b94334aae9b9232af86710db5be604f5fde8136357e92" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-x86.exe", - "hash": "76fb34405c0640499afe498508613e71c325fc4c039e636aa2d8b0497411c937dd1bfa407bbc2e2fd558da61fff8efd726c8314b19583a277afd156fd84d9fa0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.206/dotnet-sdk-5.0.206-win-x86.zip", - "hash": "20ac4fa46ef97138853e49d1bf726254704b22663f11a1bd8532ca925d70b677155e1030e629a563b1bac90990b8d5f206ea2063b901e215fb120ec8c9441af2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.9", - "version-display": "5.0.9", - "version-aspnetcoremodule": [ - "15.0.21196.9" - ], - "vs-version": "16.9.10, 16.10.5", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-arm.tar.gz", - "hash": "ea8d15c3db26b11fe1941a15996532906a6eee3ee281ab9b3153cbac79d108f59979464741a3bfc5b7cf959a030e70cd2d3a2150f49c2334eb788f1778cd1b5b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-arm64.tar.gz", - "hash": "7bad5fa5fb8dc7eba9babc06d68b170e127df8d5729adf26530b2858aa4f411ca35c4641da0b0b13c7340fc5843e3b1d70b2038eabfca64d598e06fcf1b47edb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-musl-arm.tar.gz", - "hash": "a98d3f035a610b7986bad618d124aff3128d7fd2eb05abe0806f9e2182001e3f2008bbdf4e944b6b9af38894590ce1cf927e5c3ae0aedf726ec4594d05e14d4b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-musl-arm64.tar.gz", - "hash": "d3145d3500747b39c7b1934cbc352420a0df9142bcb11dcac8b7144273c2e4dbb8d997d086b4fadd741239bde74062afd41539f7d75a57c1daf5d373e02e0e1e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-musl-x64.tar.gz", - "hash": "a143033b6dcc3de5f4ca44fa0f64bd72b93ae09184fb773d6e8d809fecd495b64040a15d9888f1209dab825adf21e76a741271ba16dd84312ca0640ae3683085" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-linux-x64.tar.gz", - "hash": "67ac99b8f631684961aa2e887ed5d6b9cc301b06a1842ac212791860bf6de145831228df5f57eca8a97e16e569e7b5a308fd20d82f11569c375c689fc932dfff" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-osx-x64.tar.gz", - "hash": "422a509a36e91573a9c6122a08dcac40c8473cac5d5e5f3c6d8c66b50dab5a9d3713b8096314e1ac8c3fef67d4bd8082bbde2a3004df3caeac9b0b292714c8cb" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-win-arm64.zip", - "hash": "58bb496ec1eae464c5490afbb0b91a631bb46fa03d8c737c6eb4648e24816d4e194fe92665d88f75760574948f9de728efcdc9171190366eb17975dcef6e9bfe" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-win-x64.exe", - "hash": "76edd81508c1306e3113a9eb4101081f689eba2e784751d21bb2d33c8c783b2d2899d69e12fa75fd34e05ec4c4ff51cfbd3a28678e91133fcefdb0d8f15ebef5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-win-x64.zip", - "hash": "a53a41683821e1c21a72966d9564da4961780b0cdefe80c9511a9614dd42677cd3ae74cfc2aa361c8910772aa5616a01321121ec7ea54e70bb1786e305df9bbb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-win-x86.exe", - "hash": "86a7d2c34f3f33a8123538e4d4dc150063f370f7c913d2def78f9ab7b25c48d7aed1d5a0e5422dd911d46bd38ec1b7eb798a0586c583ac301571ee45f71e393b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/aspnetcore-runtime-5.0.9-win-x86.zip", - "hash": "fdabdbb098798fda6fb18aad7c729dc06cf79300f8f892b9e7b9e35bffb874cbea7779f47306bf2ab144e259eded4b007411d27aceb248a9996249b1bf04efdb" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.9/dotnet-hosting-5.0.9-win.exe", - "hash": "8724268bb21cb2060ee55bf65bb72c744b59764f548fbff5d3871fbcf5dd055c12bed91318a4867a66d20fad2559c41b780cd6316d019788b51b0ca390e472f9", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.9", - "version-display": "5.0.9", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.9/windowsdesktop-runtime-5.0.9-win-arm64.exe", - "hash": "3784c340adedb8197aabf184c62719d2e09ca59dc36d8bbbce9d551f5a6933dbde4a8bab93e8cb7095f61a9cf2b1865ed3b35447851652ee10f5ead5dfb2ad5c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.9/windowsdesktop-runtime-5.0.9-win-x64.exe", - "hash": "132d91f0e552ac3074e222c12ef8c5c7fc5843fd55696627f0114ae18d8e00301eeacdbd2366345d646cf48dd1ca91c22a3206ce04202939e44849738e6058a7" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.9/windowsdesktop-runtime-5.0.9-win-x86.exe", - "hash": "e17b6d665daea5d48dd1679f7b0049a8e18cb4bb3f9f5266ee72233cf76709b4f8a3eab82ea39de56052decc06008482a180d5a1978c821172a6e7edf7776185" - } - ] - } - }, - { - "release-date": "2021-07-13", - "release-version": "5.0.8", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.8/5.0.8.md", - "runtime": { - "version": "5.0.8", - "version-display": "5.0.8", - "vs-version": "16.10.4, 16.9.9", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-arm.tar.gz", - "hash": "32eb73beb20e1bd4fa7eb35be779fa962df68921da14f9100a033911c40afc6c61ac99256b0d54cb35547f630bd7c0c7658b841224c9798e621bb7326ba0213e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-arm64.tar.gz", - "hash": "032fe4ac40fea1eeef871316da55cbfaf787a7153a0a923359cd1bcd5411b367856fb4bc3dd8c4c65d252ae4be333277e8f613966e3527866ad18f162f718c6a" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-musl-arm.tar.gz", - "hash": "94d9960b2b347f4ba7db86a528ae7fb62caffde84b77e6a3a6a4b363344122e9818855be7e2cbbceeb622df3b51160df5960e345d74642751de5b0a0ce63a51c" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-musl-arm64.tar.gz", - "hash": "38e46af7768b543827bf2547f829f37915d4b23c029fae51ac07673ae5bffa62e987c9cff0cbd0dae7213f1f5b0b4a6597cf53eefd4f8d8aebb73a3ce4e3a1d4" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-musl-x64.tar.gz", - "hash": "3763a6eb74c176dde843eeeebc37050dec8beaaa2e0d2205a9e010c6cdb1ed57bf0b44b6667badea5f9bee763c3fbd13904cdc4d4b156754fe488aef0502ad34" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-linux-x64.tar.gz", - "hash": "8789609f3039dca1d0dc19562f23bc9bfe5d513a2d10639a8a779afe7656447b7ee953f9a8d9d0b07ba6ca4a346770c0efb5a34e5240b5d355d4d8198220e9b1" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-osx-x64.pkg", - "hash": "01e87a35d7c6656f53dbe01b95cb8e3a3b39193cc9815ca304bac4e39ae4d8df99a9cb63438554023491f260bd16283c62ca083cc0d7cedae1cf1a6a047666ae" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-osx-x64.tar.gz", - "hash": "886d13f4c4e05988d984e92743f05b8dd7b38b6a26b8c0f5b9490e6015d0ed7e4a923509ae6749bceaa1d24ac96fb137b566b99ed22ba20cec48eec9a3d26909" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-arm64.exe", - "hash": "bb0b05aa3cd76d06aad23267a4da9de0067355a4b794ffe22c45e8a189c872cf695defd4de45282043426a589e1c74d1283818133c569109b3a79248539888ee" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-arm64.zip", - "hash": "640186064b6dd7066600c1004c425cb51d1ac6dc3b191f0dd23d63cd9ec89a6aa5f45ce89cfa487ad053bb27acc3075fee2a5c1b05811c449ac13c00e83cfc59" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-x64.exe", - "hash": "50668c4d087b6e03260e5f24f3494ddf701fd085dc6e257e7c7193d2384ac1669d5bf7dec19f6c1c087124d5faccfdd34076d792e882a5fead149c077f5d9cad" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-x64.zip", - "hash": "dc0d7ec2c033514d8e884bc00f518368f73b10e70d786bea445cc27df694f2d18aa34532b224657e440bed013fdd4f9ba35a44bf6ecb5d99252fe305f003688e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-x86.exe", - "hash": "ef317959a378768c68fe6b4eaf060f12289e6b79062b52d39d2f9aa645e20b66c1e4cc6a2e90b0bfb376821091c57aeb95e7abce4924f455d54a4cce3a694711" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.8/dotnet-runtime-5.0.8-win-x86.zip", - "hash": "be393726b5dc42be7ad35216331bacbc25fdd50dcdac903468fecdaf043fd9df221bc0a54737ee3c22d2fd271c3b9755297771105518c8bce3bd4d0bcbf5adf3" - } - ] - }, - "sdk": { - "version": "5.0.302", - "version-display": "5.0.302", - "runtime-version": "5.0.8", - "vs-version": "16.10.4", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-arm.tar.gz", - "hash": "31298ab7f165bb0c5be35de25d7f2eb09ae02422ccf23aa664a40c4828780d9e0f00a91dfce1e8a54bca9f88a90c361ed697343d92d467b7509c6612a8e25952" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-arm64.tar.gz", - "hash": "56bbe76febccdda15405d9c7037e73fdd3a7e39d7057d76b89899ebb32bf6f180dad0ecc9274f765439dee511629a87598d8c4d61e3c8cb93c703ed0430228ae" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-arm.tar.gz", - "hash": "59cebe98d5a2e02c23ed01097caf96b69d577e4581467148084fe1ff64cde880183ec1616f3e90526dd51c3363d4519b3cf3204676cf4792249930fb595fd292" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-arm64.tar.gz", - "hash": "ceebb77d4a0e6b833ebeb2b8e88d063f94bfa1a18a8d8fe761a52b10e15a18beb7fe61a3db2954385e92e3bd122d00872b98c703497f3ed44382ff99c09b2695" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-x64.tar.gz", - "hash": "73ebd0acba0c3d4c8b55cbd9888f2793de074d89a3e413c3af24cb964e8a60a101d03142dcae6af50a240d065ce77993ded231f53020d681501a8a45bf003425" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-x64.tar.gz", - "hash": "c80df1f2208f07a76e6bc123aa0fe94879e202dbab9006a5bcd6ec8508e58aa9da5e2c7736f45a2c307016bb6356e8c5ce39cd4ca65d732091d7f46c7eacc397" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-x64.zip", - "hash": "d6ce4df4c22280c62122a937df3cb7134ea8b8a4d8204b93dffac3d7a690265cfb2d72f33ccfe1685d1032b2634f5b4c12d6a7f14570b197acda55395daeee3a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-osx-x64.pkg", - "hash": "a552742242140d37d2ee6260001b19a5835f27c18fd9cfbb4d371148f7f625fd66e8f41c343caabc684dd096aee46b087723b05462d22351dd2411c5d5c3f1e4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-osx-x64.tar.gz", - "hash": "19360f4b82422b768cb15268edbac9b2cfef77a31985a5b75a46222a20ef2434ad263fa5ef95f1dba000b8bf5e15d99a698575f8803052596a54a3d8c67b1f16" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-arm64.exe", - "hash": "89818b91d3488cb6d8ddd2f9296a639706d0bb84b2588c84cd63c4846d82d04bed7a453761c3cc0a9bd27c25bd97c7638c7e4d209f888081a3a73bdb632f4606" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-arm64.zip", - "hash": "eac0dc95ba2b3e3e382c1173f7c2f94bc679129c39080f485975defb616b28ccc3266a6df05c05ba040bda4a51c59a85d5f823ad206aa7513b9a386829580615" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x64.exe", - "hash": "7d9b0bc290ec0972b4f870e3768fe3c76e5bfec3040cf66f6f10aa6b9de97cb3e2f256af4f6b2fdec40a9419e0619e7ed73c3de53cab880b7eb3be8578c593b7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x64.zip", - "hash": "df29733e00d30abced40feb7b637fb45f2d9ac4b36e3d55e4a59e051bb15d0dd680ccd1317e59ad7bbbe51b04f802edb75c29b4aecc1a3db6cd7ed7e5d0cbbc6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x86.exe", - "hash": "2e58ef0d439b8a243acb32a8e0c1a6e7b8431ec1439c5ddafcc83613d9f9ca1fcea2ceeed926ef54f4d4b5c8c400d49ce3de4ed388c993a1b111ae5aa8266332" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x86.zip", - "hash": "1a97fdb386c67030cec36e4198dcd83b28b62acec5588b3732c86838b1f999c82cd12c99b276c715ab36db0fb270d0f7d70f796eb820a9cd3835b267e3da4e10" - } - ] - }, - "sdks": [ - { - "version": "5.0.302", - "version-display": "5.0.302", - "runtime-version": "5.0.8", - "vs-version": "16.10.4", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-arm.tar.gz", - "hash": "31298ab7f165bb0c5be35de25d7f2eb09ae02422ccf23aa664a40c4828780d9e0f00a91dfce1e8a54bca9f88a90c361ed697343d92d467b7509c6612a8e25952" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-arm64.tar.gz", - "hash": "56bbe76febccdda15405d9c7037e73fdd3a7e39d7057d76b89899ebb32bf6f180dad0ecc9274f765439dee511629a87598d8c4d61e3c8cb93c703ed0430228ae" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-arm.tar.gz", - "hash": "59cebe98d5a2e02c23ed01097caf96b69d577e4581467148084fe1ff64cde880183ec1616f3e90526dd51c3363d4519b3cf3204676cf4792249930fb595fd292" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-arm64.tar.gz", - "hash": "ceebb77d4a0e6b833ebeb2b8e88d063f94bfa1a18a8d8fe761a52b10e15a18beb7fe61a3db2954385e92e3bd122d00872b98c703497f3ed44382ff99c09b2695" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-musl-x64.tar.gz", - "hash": "73ebd0acba0c3d4c8b55cbd9888f2793de074d89a3e413c3af24cb964e8a60a101d03142dcae6af50a240d065ce77993ded231f53020d681501a8a45bf003425" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-x64.tar.gz", - "hash": "c80df1f2208f07a76e6bc123aa0fe94879e202dbab9006a5bcd6ec8508e58aa9da5e2c7736f45a2c307016bb6356e8c5ce39cd4ca65d732091d7f46c7eacc397" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-linux-x64.zip", - "hash": "d6ce4df4c22280c62122a937df3cb7134ea8b8a4d8204b93dffac3d7a690265cfb2d72f33ccfe1685d1032b2634f5b4c12d6a7f14570b197acda55395daeee3a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-osx-x64.pkg", - "hash": "a552742242140d37d2ee6260001b19a5835f27c18fd9cfbb4d371148f7f625fd66e8f41c343caabc684dd096aee46b087723b05462d22351dd2411c5d5c3f1e4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-osx-x64.tar.gz", - "hash": "19360f4b82422b768cb15268edbac9b2cfef77a31985a5b75a46222a20ef2434ad263fa5ef95f1dba000b8bf5e15d99a698575f8803052596a54a3d8c67b1f16" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-arm64.exe", - "hash": "89818b91d3488cb6d8ddd2f9296a639706d0bb84b2588c84cd63c4846d82d04bed7a453761c3cc0a9bd27c25bd97c7638c7e4d209f888081a3a73bdb632f4606" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-arm64.zip", - "hash": "eac0dc95ba2b3e3e382c1173f7c2f94bc679129c39080f485975defb616b28ccc3266a6df05c05ba040bda4a51c59a85d5f823ad206aa7513b9a386829580615" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x64.exe", - "hash": "7d9b0bc290ec0972b4f870e3768fe3c76e5bfec3040cf66f6f10aa6b9de97cb3e2f256af4f6b2fdec40a9419e0619e7ed73c3de53cab880b7eb3be8578c593b7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x64.zip", - "hash": "df29733e00d30abced40feb7b637fb45f2d9ac4b36e3d55e4a59e051bb15d0dd680ccd1317e59ad7bbbe51b04f802edb75c29b4aecc1a3db6cd7ed7e5d0cbbc6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x86.exe", - "hash": "2e58ef0d439b8a243acb32a8e0c1a6e7b8431ec1439c5ddafcc83613d9f9ca1fcea2ceeed926ef54f4d4b5c8c400d49ce3de4ed388c993a1b111ae5aa8266332" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.302/dotnet-sdk-5.0.302-win-x86.zip", - "hash": "1a97fdb386c67030cec36e4198dcd83b28b62acec5588b3732c86838b1f999c82cd12c99b276c715ab36db0fb270d0f7d70f796eb820a9cd3835b267e3da4e10" - } - ] - }, - { - "version": "5.0.205", - "version-display": "5.0.205", - "runtime-version": "5.0.8", - "vs-version": "16.9.9", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-arm.tar.gz", - "hash": "c77099d20d6cecb4b88289d7f8c094e9351c0407738759a2da49c7dab3468571b5861ab27d24b2a22f7619d0edced9d7646e089a41c83a9dc2fb6e7fecd41f22" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-arm64.tar.gz", - "hash": "9fe20b39e396045fd2420b78f89b3a86b69754152968ea51198ca63cb4ba00290dbb12ff028e9ae601aa8d1b93fd82972ce621fea59dbeb22210aaf94e22d1b4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-musl-arm.tar.gz", - "hash": "a30b6bba51ca44d3b844e19b6101bb3789425fdc09e509c6fd00d5c904b7110bbf159a57fca3ef015e12badcfeeaa7823d79151b566da1b5c4366943a03ae54b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-musl-arm64.tar.gz", - "hash": "ba91c07563295c4f2aeb307dbd70a1eda92d7035904814928b34254b259b985e9190b58b233b0235d931cc0a1cde50999db1d464ca6f36ba9c8479ee6cc68e15" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-musl-x64.tar.gz", - "hash": "c16436ef5d7933b5afc695ad1ffd171ba37d076b4bf6d5c725f1ce709e135ea65c52c79cbfffd2d4d8b380c7d41d0138627093676a0ba6785187a42e4380a7e7" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-x64.tar.gz", - "hash": "baf0fa8090b3517c9695581033a2a8cb5c2ca269b77f5bfc9678a6ff2673295b1defd1e8f9f5771c6d7a794990418d6a8eff7e73a287f4839a003b6a8bf5fc4a" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-linux-x64.zip", - "hash": "041d50e4997b3c44bfed7a1d1a66cff7efad904cac420cdd5c68481ec4480289a6f24ab5af38dd1c66f687bba4d0737b0e72eade9bb1698eb496405d3d91c736" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-osx-x64.pkg", - "hash": "973dc628972264f18cbac06c05b614123bfaafcf039f652ae86de780af55a1e65a4c113ef0fdfd3263f4908ee0188efc477bcc2b0802fee2492ae1c7d1bce2c1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-osx-x64.tar.gz", - "hash": "8037dc6a95654e2a12a4d7ceb2f092b9d38c7827528227dfeb7a21a720972fac44e38deb44f355f5457280b6005dd3f0c3d3344bccf2cc4f060b7caafa90c8be" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-arm64.exe", - "hash": "d9461feb3c0aec257e037b2f415c0221de85c70cc88d77d69c0291016cc6bd48b6d5a8cf1d1f8aa11017c0b5f506f36dcb334a71b5881968e87ef87d1cea5af4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-arm64.zip", - "hash": "c4b9331463f55b8cd57fd692ea3d2ff21546399d480d9964f360db3b5e790b96baadbffa44859c8bac05107af36bcd4f13456d48ecfd83150a92a2b76b8affa9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-x64.exe", - "hash": "bef9f3d02b28102184faecc40b5630bbacf5c48e3f6920d966c4d9599aa942c3df650ca7885ddcc39416c6ac72f5b75618aed13ed9aefecbe1accdc0f5e03c29" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-x64.zip", - "hash": "c111e04d7429faae36d77e18e86287fcdb5583542b87ed8a630abc27d90f6fffc657d272a5ecfb3695fe6db262cbab4e7ebc34654cde7817161d1a389fbd9463" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-x86.exe", - "hash": "6d48612ff492501be16322524553e030a257e6e1b141dc0d2656a95a30fe6d5777e9a44d1cd5efaf1450e1a293f0bc04da96033710a2e2946151a2d9b40f6a5e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.205/dotnet-sdk-5.0.205-win-x86.zip", - "hash": "3a9dfac92ec7934a81a6ad68809b06c478d22db9df24e44ef919e2af98ab28e127cc4f94dc45b0c2d72d38e48c7e6da2fc81fd03c205251b1a05293e78cd9dea" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.8", - "version-display": "5.0.8", - "version-aspnetcoremodule": [ - "15.0.21169.8" - ], - "vs-version": "16.9.9, 16.10.4", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-arm.tar.gz", - "hash": "c28fde026da0ac999dc82b63310e47e0b9f8979f8bc87a08f863a042f6957400ce7c6f39c223955a7aa094d916358c25fb64b69358feba98f87242ec76e50003" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-arm64.tar.gz", - "hash": "966abfdddd43068fef72cdf3deaf49417a092437fa0ee829b6b3ced23a32246bf3bd0b85feb470fe6c326d54b9a2bee93cacffe603640faa0b935a3cde9e0760" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-musl-arm.tar.gz", - "hash": "daf2c5a59178df65d37397ca8365875d380fd6c410fccde713d72a9e2c28ef361937676336eba92ff17a034ae19c57b3a29780c69f70011a84e4fbfba879a0ae" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-musl-arm64.tar.gz", - "hash": "3a0c9f76a1879b335bba7015884ae57830e11cc0ec23149b92ab08a3dc28cbfb307446f593741cd32f20452199e691ba0af9d5395d3ab7ff1b8ff6327743024a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-musl-x64.tar.gz", - "hash": "ea4d787e68fb4ab61448aa26894696192329d4e3a98ba9c95da588ec299523cca2d3b0a4e6ea35354b11cfd4ce9da594969806beb34cee249aac76dab46eb295" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-linux-x64.tar.gz", - "hash": "77c9854f2bc947675025a9489baec2587cc9ef95e3be9351060c0d64fe0cede3e9c1395fe700715df520f106dccda9a21f7d21981df70653c49fd20418dc385f" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-osx-x64.tar.gz", - "hash": "a51f2f7761a0aaabf1f20674304661161ce0e710c10fc130dfe666db9d9867432cd2f7d5ac3068fad63e725244205ef0a00e4808245c63ddfb8b6adbe145411c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-win-arm64.zip", - "hash": "6c0395644dab217dc569afa1042cefde7ce1c27f43d0c97766bee2420052442a35b1e706ecff3804175c84f545456fed5c96686a5cea9c91d80a4a67d573a43c" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-win-x64.exe", - "hash": "db5c39d27dc7d652257bad19076bbc208a3c25cc62a4ab54edbd7149ab4925d0d8a43aaffb94421339bfb7a9a6785d11d3cfde15e3471c45c3c107fcd15a5d07" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-win-x64.zip", - "hash": "a6d2cea03f8c7b185f702d9c47f170d934a2edf955b632529bff404530600246b80e79bc9e1c33978668d63ebaa3058604f715873a3f9eb0912ed23fe0c4f368" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-win-x86.exe", - "hash": "cce4a7d2ae8812ae50777fecb60cb25b6d0a18e8967c331a38077151c8f881144ac9b8629a08fc45dcbbf1732a78609932b085225ae52777328919a52e8e4d7f" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/aspnetcore-runtime-5.0.8-win-x86.zip", - "hash": "990de1faf7f1c916a62fe15b87e2a7170238407882b2fb12d277a48a75120929296bf35c2deaf5690206f8295382767e220e92576ea73fab57f019023a132950" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.8/dotnet-hosting-5.0.8-win.exe", - "hash": "ab9231ef77245ff3dbbd38db60ff04a1b7ecd7921ecd8f93c4974620d32a19d188c932ed578ec09cc9b78018df0808da797a91d7352c17d39373220bc50c52da", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.8", - "version-display": "5.0.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.8/windowsdesktop-runtime-5.0.8-win-arm64.exe", - "hash": "cd3add14712aac17fb1bdd203044f24d2afa219edaaa30d41513a221b2b8aaed88c9d8909eed7617f839e48a470102bead3fdd7269d04d53fb6839682d574b2d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.8/windowsdesktop-runtime-5.0.8-win-x64.exe", - "hash": "d812994f964d53141075ebee146975187867dcaf911c7fdfe5cebb61f87cc36eaeec0ac4931d958c18274750a247402efd2527e004fc82845a3c081c0940f484" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.8/windowsdesktop-runtime-5.0.8-win-x86.exe", - "hash": "561661909a31c9acb86ad00fbc2f4339bf35f32aa7af3b4dba32ae640d42e6d6ed702b319085e38b1f886da353220b107fc362fcfd52ee0f004e7d0b03c0e7a1" - } - ] - } - }, - { - "release-date": "2021-06-08", - "release-version": "5.0.7", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-31957", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-31957" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.7/5.0.7.md", - "runtime": { - "version": "5.0.7", - "version-display": "5.0.7", - "vs-version": "16.9.7", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-arm.tar.gz", - "hash": "9bda7ae3cd708ab5b9f3acfa502ff534edc01ed2b77e97ab384df11125092e11aa4c6db143f8df4fb19ea5a4e7d0024579362e1c14bbb6f422d766e43e99cb72" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-arm64.tar.gz", - "hash": "a0c20d1530c29021fe4d483611f3f9b71a605f17b81b96aef5c07878795483ea5dae85a5e18c3ad54147a30897d389d26454298ed60d11944477ecd452c60638" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-musl-arm.tar.gz", - "hash": "a58f232638b142b41645855bbb648c07cc2d369ba680118e6e557139c572f464c5e76959e2f3817107077d043e54912ae7b614bc8f665097331454249709069f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-musl-arm64.tar.gz", - "hash": "d51e847a3815a5db966116203a512adfccd1d2e375090132437909981f4cda843ea5386c6a5cdb6975383dd9ce33290f1bf1b049514345bcd5f3dcc0ccecbda2" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-musl-x64.tar.gz", - "hash": "df66e9915146ca018f8d62e118de190d16ee4db65c3373113168cda61632e5a65d39aa4dc76b0f95673d84c089135c8011f7ad0ea3c2a06d4491cfae810c23f6" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-linux-x64.tar.gz", - "hash": "4c91122a69eeb1f840d78ded96930db77d0b2fcaed4c355223d7c45380630277b703fb07524a284f9c7cef008d964ee1ae63b17518713ff30b1b61d13e134c7a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-osx-x64.pkg", - "hash": "da450bd47f8a9fab5a97543b0fec853c833dc7871b798d95993618baa7ae5a57f80d45f253dc31a7221897147e8f59983abdb6800779d79be92f5ef80507bbde" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-osx-x64.tar.gz", - "hash": "3391503567ac3c8d4dc2a78bd7dd51c88f7964b2e003faca1ca0925a979701bca049eca963a029301300b96f5caf49bfaedfaf3e3eea80ced2cf90958f8377af" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-arm64.exe", - "hash": "94901c46ea74974a3b42cf3edefa95d949bf56d6c84a664d01761245e01436d85d02189ecfe438929814e1a3fefa20e5484f03efc0874081e5b6c7112b631ea8" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-arm64.zip", - "hash": "e7d01c0dd04ea0d1c9a45a6bb0d61e3748baa94b41fae42c210e1d482d18710abc46333a3304d5e3eab36cf1f2b8b6dbaf7d8a85984900bd50cd66f66b9c6867" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-x64.exe", - "hash": "de7e67dbb0c94b247af6e3ff9c7fd2f0c4cc51762f0db081e5d5da2376e98877f794abbd8016f039324977ab2d40e7d02f8268e1b4cc9a81fed62b9d433d6ee0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-x64.zip", - "hash": "da39eae02b0e94d700808392fbb25f0db21584a0cb238ee4e9cb0726c181fd62dd37e6cb532e459ec0d484f63330dba7a7ed2bfea06717f48546d7caedd4dcfa" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-x86.exe", - "hash": "bc140f75cd2df7f96cbbd870a210eb3387dd87b7bc9062f8f8f1f0d74b0685db41c36e3f3dcaabd72e0aa69b0d872da5f5dcbc7b102124305b19e98f1b111b10" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.7/dotnet-runtime-5.0.7-win-x86.zip", - "hash": "1ba7136cc4351a2ef0be02738574dcdf17cf2e6e98c18b5a42ade9e7b5591e295829c19a395f9a09c487c5f5df3c57d9b1936bd9c22f88e1b602eeb157507ec1" - } - ] - }, - "sdk": { - "version": "5.0.301", - "version-display": "5.0.301", - "runtime-version": "5.0.7", - "vs-version": "16.10.1", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-arm.tar.gz", - "hash": "89663ffb22299ad626d3f1d5129e493fb8784e6ed854b128a364407a060eec2979cd7d3c9e4f3df8e47ccb72b98ff8b18e8d53c7fb65b3455faa7344f67417a2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-arm64.tar.gz", - "hash": "56e233b8f35abe80984bc8a60028f4f8dbc8543313a0711045ef13c693e11e706ee4809574518f57910ec2c93bed896da32760c8143a298556dc25478caca90f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-arm.tar.gz", - "hash": "4b8ad2f93c7e5670129f803dcd64e950bf8d7a108cdcd8311a625eb703e0685ef05fb634a747f3904c5d55443f6d6cba0a7aac88d305f8d3a4e678b94ff995c5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-arm64.tar.gz", - "hash": "487a17191594ecf039114231f2fe9cceefc12d33683f8452acc0998f970428d7b00fa1d899ffd132576d1adb5c099c6995392f25b81212dc8c688ddc45ba92ab" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-x64.tar.gz", - "hash": "bbb956082e252a204803d133d863e88ea62e732f1cc02483aa3ceeedbec03ef577bd175e4d99d70d19b2257f6946c02e2a7c759523a22c2c3ad7833830188232" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-x64.tar.gz", - "hash": "81cd7a3550a262d5c907030677429fa9a1cb515071274931ab760bd8bb2a14f40c9384c8757e1c1aa681b1de22035f16bf20b41ed208becd054cc9bb1f620322" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-x64.zip", - "hash": "3895394f1609969893d8e64c02864d8c29f19d02c62720e27e0edc3fc2d552ce508d3316364dae5bd75a7bbb6c2a74324bc0731dd0e84429a24942ce9a14e268" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-osx-x64.pkg", - "hash": "00211a592a9b7a465a2a2742871be4c04a44aa8af81787d8f1bf765fcdc0a8674c9e2bddbd432b2ed5686defd0cfc1c5d0fc74a15bc952868c82871ff9cc7cdb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-osx-x64.tar.gz", - "hash": "f0c50a9b2377e215b6a7633568434fe922cc5ed2967fa92d6f135f50cbf97d7703e16abd5eed0ec93397f269a5f940e51565fdf0c7bc775dd4908f2c568fa07f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-arm64.exe", - "hash": "ffa9b7d8326226e68941337c0fe5886e37f4d24204d7741ae1c2e0429d1461d08dba3855b257598c0f18d2508082ceb988ef0de4795ad3762debc5b52d040eb2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-arm64.zip", - "hash": "80a32ba9f2c97b457d34ef809f38001841c97b94d434e75305d29b9cfc70431ef5a87989b3943e01baff1f01b231927fbb153068312bb76dde7cc19b0b8fb482" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x64.exe", - "hash": "556039031edfac8b3cf3d5432f12eb1e1f09c6c5b0c513bb2dd94086e510da740ba48ae744e12fc53252d6b3c5e1ba311c5b78400c5127496a3060cb7165e20e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x64.zip", - "hash": "e16e06a9da022c2867aa3dfc0a3d0f278ca59a08991c066ebd3fb4fe8790639b74c9b352922e9b7a58cdce644b5ab0b15d995b8717426f3cd13053bc3d8c1dc5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x86.exe", - "hash": "b344fbbadab6b71e35e1a5ccbe74c39e8f90feab282d378ad351908709aebbd87141214ac4ec25812978bbc6e49d26a37779004d47e17238b6b68ad1fd952044" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x86.zip", - "hash": "8fd4b4e00d5506e12a3b214ce9f4142fef42f304d01c359f5551baba7e327768daaf236edf899be83f5cd87d36c9234b8329e97355fc5ea41cb5c903740ea5ed" - } - ] - }, - "sdks": [ - { - "version": "5.0.301", - "version-display": "5.0.301", - "runtime-version": "5.0.7", - "vs-version": "16.10.1", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-arm.tar.gz", - "hash": "89663ffb22299ad626d3f1d5129e493fb8784e6ed854b128a364407a060eec2979cd7d3c9e4f3df8e47ccb72b98ff8b18e8d53c7fb65b3455faa7344f67417a2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-arm64.tar.gz", - "hash": "56e233b8f35abe80984bc8a60028f4f8dbc8543313a0711045ef13c693e11e706ee4809574518f57910ec2c93bed896da32760c8143a298556dc25478caca90f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-arm.tar.gz", - "hash": "4b8ad2f93c7e5670129f803dcd64e950bf8d7a108cdcd8311a625eb703e0685ef05fb634a747f3904c5d55443f6d6cba0a7aac88d305f8d3a4e678b94ff995c5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-arm64.tar.gz", - "hash": "487a17191594ecf039114231f2fe9cceefc12d33683f8452acc0998f970428d7b00fa1d899ffd132576d1adb5c099c6995392f25b81212dc8c688ddc45ba92ab" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-musl-x64.tar.gz", - "hash": "bbb956082e252a204803d133d863e88ea62e732f1cc02483aa3ceeedbec03ef577bd175e4d99d70d19b2257f6946c02e2a7c759523a22c2c3ad7833830188232" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-x64.tar.gz", - "hash": "81cd7a3550a262d5c907030677429fa9a1cb515071274931ab760bd8bb2a14f40c9384c8757e1c1aa681b1de22035f16bf20b41ed208becd054cc9bb1f620322" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-linux-x64.zip", - "hash": "3895394f1609969893d8e64c02864d8c29f19d02c62720e27e0edc3fc2d552ce508d3316364dae5bd75a7bbb6c2a74324bc0731dd0e84429a24942ce9a14e268" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-osx-x64.pkg", - "hash": "00211a592a9b7a465a2a2742871be4c04a44aa8af81787d8f1bf765fcdc0a8674c9e2bddbd432b2ed5686defd0cfc1c5d0fc74a15bc952868c82871ff9cc7cdb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-osx-x64.tar.gz", - "hash": "f0c50a9b2377e215b6a7633568434fe922cc5ed2967fa92d6f135f50cbf97d7703e16abd5eed0ec93397f269a5f940e51565fdf0c7bc775dd4908f2c568fa07f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-arm64.exe", - "hash": "ffa9b7d8326226e68941337c0fe5886e37f4d24204d7741ae1c2e0429d1461d08dba3855b257598c0f18d2508082ceb988ef0de4795ad3762debc5b52d040eb2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-arm64.zip", - "hash": "80a32ba9f2c97b457d34ef809f38001841c97b94d434e75305d29b9cfc70431ef5a87989b3943e01baff1f01b231927fbb153068312bb76dde7cc19b0b8fb482" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x64.exe", - "hash": "556039031edfac8b3cf3d5432f12eb1e1f09c6c5b0c513bb2dd94086e510da740ba48ae744e12fc53252d6b3c5e1ba311c5b78400c5127496a3060cb7165e20e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x64.zip", - "hash": "e16e06a9da022c2867aa3dfc0a3d0f278ca59a08991c066ebd3fb4fe8790639b74c9b352922e9b7a58cdce644b5ab0b15d995b8717426f3cd13053bc3d8c1dc5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x86.exe", - "hash": "b344fbbadab6b71e35e1a5ccbe74c39e8f90feab282d378ad351908709aebbd87141214ac4ec25812978bbc6e49d26a37779004d47e17238b6b68ad1fd952044" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.301/dotnet-sdk-5.0.301-win-x86.zip", - "hash": "8fd4b4e00d5506e12a3b214ce9f4142fef42f304d01c359f5551baba7e327768daaf236edf899be83f5cd87d36c9234b8329e97355fc5ea41cb5c903740ea5ed" - } - ] - }, - { - "version": "5.0.204", - "version-display": "5.0.204", - "runtime-version": "5.0.7", - "vs-version": "16.9.7", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-arm.tar.gz", - "hash": "278f22a80c7a6f6b85fea65bc18b865856404fad37d50ca7dbb36028bf9a34be01e68a03ef597a81179b3ae35f286cbcab1458906e9484abc8fc9d9e0b69ef83" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-arm64.tar.gz", - "hash": "e0be9c1369d46c1a11abbee1b9fe392abceda166d395aa61ab36eaa9bf11609a8a30648f960afd2f0c76d95bff5ee2cca0298cc2e979d15db9270dd7568f0121" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-musl-arm.tar.gz", - "hash": "ea4d1732724d5f29f9801c3f37db0dbcd8feb2c5a270250ad59789aff9159af38192bb67746e7ea3cbdc700cd9608f4b27732fc91ea6f51ceb24515e2f7730b1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-musl-arm64.tar.gz", - "hash": "b7e1de776312942eaa7e64eb77a2e1c4d042cd89850173e8056b5d238ab6b69c8f47a30324e2604ffadd10d2032f4be6b729ee8faddc533599bee8dfeb9603e1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-musl-x64.tar.gz", - "hash": "e1768b5591dae962a37c969cacbb54e36fa33bc57b964110e79a4ea184ea93b6593b546c03659c3844e14cd25617afd6ab71f6b5a64ce4a29e70e14de0fb58a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-x64.tar.gz", - "hash": "b6113e62d6546b8d4002cdb64ff983720f3ab7c874c1e0b3017f80a0224936e36d8d40b67bf97b89deea9e39ac78d875a5a25fc576105d5ddeba6ad8a492b5e1" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-linux-x64.zip", - "hash": "115404318607b6004f917a63e5ea220d34cd9f130c7c4f24a50e9f2dde748296c85d0013ea41f15cc07ec3a8da0c517d2db993df7f56b0367ef178f44ce1850c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-osx-x64.pkg", - "hash": "e5a1a1188518e90fe857e4d53fcd2ccc3b9f713babc83fa93f3990fdd949dd37977f98ae4a359617f286593b94d8515bbecd709d1c2ee4bdb3342ec593e9ab2d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-osx-x64.tar.gz", - "hash": "3ff710f974c0cbdaef402814a0531aa9b8b7dd07faa2e18afb3443936cfa66f5bb7a694233f0a63ae07a316acf53c2c71dbdc2d7e0d2943344e0d11033e644f2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-arm64.exe", - "hash": "329a5f8e378151357c0474f9a941bb9c8cc4cc71e35ac38d14e4e29f6ed2e097709d0affb08ca8194fc787b12c512eae223f96bc9281e3bea6019e6a9e90dab4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-arm64.zip", - "hash": "2f45ca71d5007ee5ec4dbbdd5a165a9dcf750ceb388bda5aa1f5d0abc9811df5f1a91c3c0fd0cbee7ce87a2d34babc28d38146ce3637c40ecc2eeeb78a9f8ef2" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-x64.exe", - "hash": "35f45e93c8dc241af3b767225175c0daf5d3e7116c58bddd17a214aba56288201ff3f2c2e4b946bf4f9a2621446de45ed65c3ed4fa97b0026598923543ffd004" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-x64.zip", - "hash": "e5d4184fc9730c8fc2a18c65be0140cc1ee977a81292615013f68ee1b4039f989b9e474bb20a3b51fd39dedd5d094f6b9758762dc98b7d55aa83923f1204a16c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-x86.exe", - "hash": "ec0d31c2084a761f4a74dac69f77c0a8cb84eac48dc610e1ec310874ecd896a19829fd53c0d1c3b4ac00711bcd12758758a97c3db2ab41ff7171c5d0545cc6bf" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.204/dotnet-sdk-5.0.204-win-x86.zip", - "hash": "9f10eda1c9d5bd80cdde0e1973319e0cf02d842fb04190481176e9fe3bb1fa80fbd9d3174c452c79edd702ad2b5d0d7d693129b46914a9feab0938a8d74adbd7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.7", - "version-display": "5.0.7", - "version-aspnetcoremodule": [ - "15.0.21133.7" - ], - "vs-version": "16.9.7, 16.10.1", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-arm.tar.gz", - "hash": "0e67d2e3cf594e7290b55d4a0281a5b729bfce96ab12d4c8ce73287a3fbb298c8883fba4d2f7e8f13a78e58ced3eb52933e9068d9ccc2688fbf8174b0c001d36" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-arm64.tar.gz", - "hash": "fc18b588eebac0a40cac2abbbd2755b2e96e3c799fd6f51f10da096e3048f060d1473fe9fefe5269142d697bd01db65c55fb67cc823f8d4461ad195f0691a557" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-musl-arm.tar.gz", - "hash": "f9be0e8ad48f981b63391142193d5dffe25f58f35d0db1b69c00506280f61d543f9197a1fe5b15857571f72efdb222d666dae2751490715e3c03aee32e881836" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-musl-arm64.tar.gz", - "hash": "eb976552dd3b6ea289648fb5c107521bf4ee6e53980fed6042207bb5ebc97fefe33f210e5213d4bbc4b1d415a8d8bc02d70e3ba4732c62c8241c0b35a9ec9a19" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-musl-x64.tar.gz", - "hash": "740665d3e4bb1a2c37ca2de9b6a91e2fdb83192927095678d57c3978892658f8401df56591795088d47dc1148b150aa9389277502b1dfc66e71479b16e0c7cd2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-linux-x64.tar.gz", - "hash": "03399412dfa6ec9b75125b38d7d4297e0cb8cb4ae37cfb27d6cc948942763691c61647d83c3a8a068291a389c35fc6a89d375c97253335c6a8985d55fcac8918" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-osx-x64.tar.gz", - "hash": "8610ba8cb8f33a8bc458af7677743d882e14575671ccff4903b3f05c8a8f49fee2221991ca6e6ac167935521580e3d8ab581e2e4edd3f4e7f3500094e4c1f873" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-win-arm64.zip", - "hash": "0c469141bfa3cab95e0841e4d93ee616ccb2641fe7c4e9491d8e7f3f58d413e6626f25af76800bacd478307edbd22b1b7913aaffb0103096250b29ed92cfb792" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-win-x64.exe", - "hash": "6c110caf547fb7354c16c55dd40a1c5e59d5626a45d915599a5ec42bd73901bc1d80ca9d52e0241fac1a7055c25eeed41c73a15f926146f8a0bb771b393356b5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-win-x64.zip", - "hash": "e9986ac62e7b28fb09a7d1346b1b1c98e8e55979c4a51c99ff929200c843c431f6a2fea6441432a5f8de82c42692d44cfc69b4ff795806da2c7d4ab9ff460459" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-win-x86.exe", - "hash": "719dc4f37e9e14041bad5f1f4c7645024c18a98ece8ecb743507e824a9d50292ef695caa308d208d5a0f10bc4e8e93085141d763bfeb3a778a9744a45c8d6864" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/aspnetcore-runtime-5.0.7-win-x86.zip", - "hash": "b3151e23d5970fd458e8701f49e85a117107db398878320a5c4dcc92984fccc5642ab2d3babe048453ccba77152501eaedc43ef4402568a8a9c41b3dab906827" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.7/dotnet-hosting-5.0.7-win.exe", - "hash": "a388a3e6aa9f061ea65e8970f5a76c8afa7e429cab3f6e0ef6775f029a49c96e73606abe6a7e48c2d68485b74120d9daa10f5a6d66867aaf3a6afd8eab2f0936", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.7", - "version-display": "5.0.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.7/windowsdesktop-runtime-5.0.7-win-x64.exe", - "hash": "ff06980615041594012dc3882914f464f4844c0184aebd1973be08fc41b26aba077be1c0e8352089311ca084bfc007ebed758bb436f2aeba0f67e0607d7b1e8c" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.7/windowsdesktop-runtime-5.0.7-win-x86.exe", - "hash": "01d07853a711f05c5c4e9a1baa557ea0cea60cf0def8bffc4868eecc053d66ca3d1d02e55087e1d04a3851b4351c1d8b1c6c30abd2cbb551c24c1d184d42c14e" - }, - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.7/windowsdesktop-runtime-5.0.7-win-arm64.exe", - "hash": "82ece7ca80388c1fdda2b8394117f065254b95500ecc005dff720246b55b80c84cc2ca0cd5e68941713cbd34f384d36133b13459b3479b2642ad7b41dac31933" - } - ] - } - }, - { - "release-date": "2021-05-25", - "release-version": "5.0.6", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-31204", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-31204" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.6/5.0.6.md", - "runtime": { - "version": "5.0.6", - "version-display": "5.0.6", - "vs-version": "16.9.5", - "vs-mac-version": "8.9.8", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-arm.tar.gz", - "hash": "50fd448e7abbc2830015000e9e02549e3d511f4a098ded6d1948a8ca4684261e4fcfc9f2ef5f044b6f80ea536344025e17d57c1bdeb8daf65058b83ccd6fde65", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-arm64.tar.gz", - "hash": "2f7e8b2654655d0d816e4d2e775098c340edf5edb458af9598f33a72e340268136fe6e2516ad4cfe941d0d419fe30357756f6585bcc151110e37c710284570d8", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-musl-arm.tar.gz", - "hash": "549671ea7a33f75314a3c9e52c37af1068840d64b1c62d9688ac522e9da6510eab23552b1b46357d8da65cc6d85c76c4d537f94379955f6b2066b6c805f6b42b", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-musl-arm64.tar.gz", - "hash": "a8f3cd23cb4c6f4c0712be25fc43797b013981bd37adabbe7f20c53aa00b8b7db86bf692cfc5d2e4d8b3345b1c34e3a1e6cee356768d4f7bf1c20ad3a2a02975", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-musl-x64.tar.gz", - "hash": "13316e039b04b04c9def1f3a17c6391fd2fe6a6264528eba24b9cf6967ab292e4c4c8adc4ab2e032586f94e5f0ef0dfcf7315cb5cc324ec672bede0f16713f41", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-linux-x64.tar.gz", - "hash": "7aece6b763305fcf6e47e31540830797670287622ec424e689967c8974f80cefdb04961fc8cdf23c67588f3b0804b5e8291f87b06b10f2fc83d48ce0b9700d38", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-x64.tar.gz" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-osx-x64.pkg", - "hash": "9cd4e1c996f03ef394408794d9fa197291ff524d94fa2b61ceff2964b2ec0bb62e6a9d451bd4f5ea2a67dbbbd1f255fcb767f5b00056bfc628bc8ca94b26fe68", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-osx-x64.pkg" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-osx-x64.tar.gz", - "hash": "a14f8c65d87470daf9a6cd2c0e11bf0b0927440d14701f644faf2169e33498e82c833fd29b84192d7dc9fe6ea613a928f70100a262fc7094b02b82d304faea08", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-osx-x64.tar.gz" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-arm64.exe", - "hash": "f2031e170bc4c9fca1caeed1c4c31fd0c15cb473777119b543d3d847c02762eb975413e745f1ed326a102f5f54093970243203dc3b903e66f558da52655c1624", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-arm64.exe" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-arm64.zip", - "hash": "26e2c591de760dc0e16e34310f76c7b1b7193b8255a500e27656eda2e0ad0aee6ac8ee7dcf89ab03d5623bd70f6f28dcf7e73c649d7c0a5e8e98789517c9a1ac", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-arm64.zip" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-x64.exe", - "hash": "3a25008dfe75fc87d96ea9e503d29c502dde9271a6d46cfb1de8c243f28b942db4571c7aebc076caeb16bce4948c85ea3579272f9750f8adabe6e920c3ceb91a", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x64.exe" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-x64.zip", - "hash": "93420194608a703e319e988c020e213b55ea331c2ec92ccf122c15bcfbfbcfe433fafe098c99db5033a1457b6d8c89a88b60d93baa04e59c51f6b665b1109fa1", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x64.zip" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-x86.exe", - "hash": "fc60e1779ac91e9ca809c26cc8ef76972312e7104c61c78ef9dd47ae61189e80447b65b8d05eabe987a80b78715ae6864c5013380b592a5ef33adaac4b7f32be", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x86.exe" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.6/dotnet-runtime-5.0.6-win-x86.zip", - "hash": "b8d3087db130b57adfc920ec58a4789b110343f1b7e1b86515d7b198cd7c33aaea3f81e2d5c814005f159c227b040e207285987c5aaced40e737d8465cd25990", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x86.zip" - } - ] - }, - "sdk": { - "version": "5.0.300", - "version-display": "5.0.300", - "runtime-version": "5.0.6", - "vs-version": "16.10", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-arm.tar.gz", - "hash": "9e507eac7d6598188766d6281ee8102c8f2b738611a4050cc7cbce7723591dce4b6e8d35588561741852f46a6f9af4fd4b715c328007a461cc5fb468d7ab0d8c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-arm64.tar.gz", - "hash": "654e625627b35d9b8e4e5967c76485d0ff91769f5bb5429c99e0554c601426de1b26a5c37d32ab4bc227a15409c134757d5422944cf52c945b351c5927a28393" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-arm.tar.gz", - "hash": "28adf6681a7913d3d94dbdd0c3b05c40add7dde2e3a35a78aebc6ced6355d53e31c6563cd67d142be3316c9b1ec124301b70026c117b02f4ff97cd78d80935ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-arm64.tar.gz", - "hash": "167f3477a229d035c0e9f2ccfe5fd96aaf3065aa7ced908cef7f9079ac97e7302b0947d2fff941e45d2aaa05710694f7c4d9b92dac3e08788c7754e4a14a5dff" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-x64.tar.gz", - "hash": "85e7b228150c7038ed57dab4bda2b3331374a93fdeae6cbb3a71b253c5dbaf4e7d7576b90f8c18524ef04e95f671b7785e442ef611255bc26a32e740a829cbf5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-x64.tar.gz", - "hash": "724a8e6ed77d2d3b957b8e5eda82ca8c99152d8691d1779b4a637d9ff781775f983468ee46b0bc8ad0ddbfd9d537dd8decb6784f43edae72c9529a90767310d2" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-x64.zip", - "hash": "3eedbdeac2f67e0e4f79bc642f8612506bd6290b7d71c7b3dd6a97531e84d313573f887f396e90e547aad7fc1b416c82b669672a3d019852d002818dd28f6189" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-osx-x64.pkg", - "hash": "3afd40d127b0d003cf32c8905d24fcc23d9c5731aa1e2b20d110478f8d24521d915f20b80f6c0d4f5216d64c0f17b40711130858d9897400e723178a1a630045" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-osx-x64.tar.gz", - "hash": "b3369628c2cab5e92954e3f78af0828321c15cab2fc2786d874e3dd3251d505c33dd65e7f7cbcd48c83ee81ae4ac6ff34439dd564980779b8b0f9790663d28a0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-arm64.exe", - "hash": "46e5e0cfa4a8c938451043895a9d6eb408bae5787e6f07d824465e26b3d96759c6f9b9e6923f5e75323fd17bfa42204302958dfc513ab25718e858a6cad62c5d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-arm64.zip", - "hash": "dc926530944a8d5557337c7c77918648ba3d6c13cd5bd175a8dbce1a5a88697977b94c9fe0514bc8a4cd8e2ae93a505f44f8dc49ea508268f21aef3214dac21f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x64.exe", - "hash": "cdea78a40ac248dba83e1753e955b819de5757be16e978b0b1ac1934248340e78e1c911aaacbb7c8b266fbdc06e3ca16aed83e3f22e3504a2c2d207ff5582cd6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x64.zip", - "hash": "ce65040d669d7202dec81796b94b48c17a24f1097ff1fb8015ec8d14fe04c46a86df9436eebeffd0cdeb6ba64bd2d45aae66699f9f76f0771fd851395986d05d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x86.exe", - "hash": "af226df34f55afd1ca1659b44067ebcaff63858de322c66ff67ef1d0ce47a787f40c76ea2db4a3e2294f0fb13203d919c2ecd0cdff9718703a3e9c0aa47f0a57" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x86.zip", - "hash": "ed0c2e13d7acfebdf8ec45f688d5483238bdd32e8c866b72231a9cabd2aef9cd1b1f9d60bc87e54e9ab55999f644dc2042879cfe6e8df611c25573a6c1c00f71" - } - ] - }, - "sdks": [ - { - "version": "5.0.300", - "version-display": "5.0.300", - "runtime-version": "5.0.6", - "vs-version": "16.10", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.10)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-arm.tar.gz", - "hash": "9e507eac7d6598188766d6281ee8102c8f2b738611a4050cc7cbce7723591dce4b6e8d35588561741852f46a6f9af4fd4b715c328007a461cc5fb468d7ab0d8c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-arm64.tar.gz", - "hash": "654e625627b35d9b8e4e5967c76485d0ff91769f5bb5429c99e0554c601426de1b26a5c37d32ab4bc227a15409c134757d5422944cf52c945b351c5927a28393" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-arm.tar.gz", - "hash": "28adf6681a7913d3d94dbdd0c3b05c40add7dde2e3a35a78aebc6ced6355d53e31c6563cd67d142be3316c9b1ec124301b70026c117b02f4ff97cd78d80935ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-arm64.tar.gz", - "hash": "167f3477a229d035c0e9f2ccfe5fd96aaf3065aa7ced908cef7f9079ac97e7302b0947d2fff941e45d2aaa05710694f7c4d9b92dac3e08788c7754e4a14a5dff" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-musl-x64.tar.gz", - "hash": "85e7b228150c7038ed57dab4bda2b3331374a93fdeae6cbb3a71b253c5dbaf4e7d7576b90f8c18524ef04e95f671b7785e442ef611255bc26a32e740a829cbf5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-x64.tar.gz", - "hash": "724a8e6ed77d2d3b957b8e5eda82ca8c99152d8691d1779b4a637d9ff781775f983468ee46b0bc8ad0ddbfd9d537dd8decb6784f43edae72c9529a90767310d2" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-linux-x64.zip", - "hash": "3eedbdeac2f67e0e4f79bc642f8612506bd6290b7d71c7b3dd6a97531e84d313573f887f396e90e547aad7fc1b416c82b669672a3d019852d002818dd28f6189" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-osx-x64.pkg", - "hash": "3afd40d127b0d003cf32c8905d24fcc23d9c5731aa1e2b20d110478f8d24521d915f20b80f6c0d4f5216d64c0f17b40711130858d9897400e723178a1a630045" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-osx-x64.tar.gz", - "hash": "b3369628c2cab5e92954e3f78af0828321c15cab2fc2786d874e3dd3251d505c33dd65e7f7cbcd48c83ee81ae4ac6ff34439dd564980779b8b0f9790663d28a0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-arm64.exe", - "hash": "46e5e0cfa4a8c938451043895a9d6eb408bae5787e6f07d824465e26b3d96759c6f9b9e6923f5e75323fd17bfa42204302958dfc513ab25718e858a6cad62c5d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-arm64.zip", - "hash": "dc926530944a8d5557337c7c77918648ba3d6c13cd5bd175a8dbce1a5a88697977b94c9fe0514bc8a4cd8e2ae93a505f44f8dc49ea508268f21aef3214dac21f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x64.exe", - "hash": "cdea78a40ac248dba83e1753e955b819de5757be16e978b0b1ac1934248340e78e1c911aaacbb7c8b266fbdc06e3ca16aed83e3f22e3504a2c2d207ff5582cd6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x64.zip", - "hash": "ce65040d669d7202dec81796b94b48c17a24f1097ff1fb8015ec8d14fe04c46a86df9436eebeffd0cdeb6ba64bd2d45aae66699f9f76f0771fd851395986d05d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x86.exe", - "hash": "af226df34f55afd1ca1659b44067ebcaff63858de322c66ff67ef1d0ce47a787f40c76ea2db4a3e2294f0fb13203d919c2ecd0cdff9718703a3e9c0aa47f0a57" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.300/dotnet-sdk-5.0.300-win-x86.zip", - "hash": "ed0c2e13d7acfebdf8ec45f688d5483238bdd32e8c866b72231a9cabd2aef9cd1b1f9d60bc87e54e9ab55999f644dc2042879cfe6e8df611c25573a6c1c00f71" - } - ] - }, - { - "version": "5.0.203", - "version-display": "5.0.203", - "runtime-version": "5.0.6", - "vs-version": "16.9.5", - "vs-mac-version": "8.9.8", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-arm.tar.gz", - "hash": "d90409e32bab33bbc52ebcf8387e1226808672982a8014ef4cbfd42f5e7d8164f88de107e9aaa5c62c0e05cba7ae40cc226bd2fc31ccb79618f1f0bd268e2fc9", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-arm64.tar.gz", - "hash": "a9d588ff27f62a73a61c1486e26046c5cd9030557d9f929617e779679e670a854e37b85fa3bbb35e768a72cd07d12b90e6ad30ae500f12303e2e9c883d07a8f0", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-musl-arm.tar.gz", - "hash": "6f20c623d9c19c427dc6465df63d0dd5750963859c36d617a17c7ceb991199b194330c30630ac6f283c5d89d3c88d424eb5900d8cf79aec7b1962b9fb6cfc7b4", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-musl-arm64.tar.gz", - "hash": "ab54f573cf02cb043cd55ea20a0b0162b5f4210d7a82f360475c9cc87bb68aa4be04c01648c3b91202676f5914a9a7e9e31b53793739febca3af5f8032303c67", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-musl-x64.tar.gz", - "hash": "188c4b0259941a69787f8a619b44acea9443eacec04cbe3ed3bd93a35bf801ce41aeb9ae8078f5b05c422e6340b57dbe9ca7373e6a71e126812bff54062db507", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-x64.tar.gz", - "hash": "49d8f0414806a9c938192ed13e7707ac2609ca6c2dc408d616e56e98fc0a954b1aa3f569858f7ba38fb79b2ee36dc1920c7f08d1ba4f93da501542b1c8a1320f", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-linux-x64.zip", - "hash": "3041769e87c4df90c1e4eaa1fd2ce5f28fb9eaaa168955f9722f91f3d7167659c4d230eaca70581038a6e401bc825a34b4edf682fe2ce7c9b8e02d21df3fabc0", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.zip" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-osx-x64.pkg", - "hash": "1c4194353a22939443081a7b51f977138a216d873a5ece010c9f9b65cd0221515bbafae65fcfbda83b46137fdcdb478e1efd7ccf617c698812441e2531b97e77", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.pkg" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-osx-x64.tar.gz", - "hash": "45da59e469b0d1abeb44094f630f46ba5316c1ede15f67fd0fe099cfbbb6b21679f1ec1b153fbad1ae5b00fb139d635a7908288666f6a81dcb947559b008b1aa", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.tar.gz" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-arm64.exe", - "hash": "0f1104b5100c246e81183350556899caba31c92a3c4e5f7fb95143f59b204692137c0c8ed4e2fba531151f178cbebcfc0f972488bca42349848d971cce36d4b2", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.exe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-arm64.zip", - "hash": "3a609be556f264d246ae123f065f371e3daa3397e757252ba085d6d41a16a291084b7b66c07110ac6ad4c05f13b5504852a8b98b99e561cbd17e3d3b4b66eea8", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.zip" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-x64.exe", - "hash": "17ba8f33d8aa500032ff6bbc3c1f14f02f655e8a62780110651666ff204c69449332cee2cdd04230c6b25083e1b0e05a7dfc74c7d2eee8eb3e0c84b47fb41719", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.exe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-x64.zip", - "hash": "762ad53d66b893cb2cdf61540794a4a1e20b127e371f57f912ad8ebd4102aabf32366ebaabfe90aa362c1fae0bec0aa7ac6af35c6c0153fb913cd4c532149238", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.zip" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-x86.exe", - "hash": "5bd1ac6f9f379b0e567446d9f38311d434fd0347252fb312f3b57f6770d83687ec8e04e1157e96fea7d59483478c37314eabc80579a849f19139fdc76bf92cce", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.exe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.203/dotnet-sdk-5.0.203-win-x86.zip", - "hash": "270d97cba2aaf27da23a0141f7e5d9fa1debd4fe5eaa95375e49587e55d213e46aa554e35b7cdf045c3a1914acf5746ac2c94a2145a2825a9be327ef351e3d7d", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.zip" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.6", - "version-display": "5.0.6", - "version-aspnetcoremodule": [ - "15.0.21113.6" - ], - "vs-version": "16.9.5", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-arm.tar.gz", - "hash": "d00b6198ace6aa2b9b164297be42cd442099fd128d3409e17d20d3d1a67d2ab9e2350d3ceea7260101b60247402d828be09b714cd431e7211fd9dee49fba35c7", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-arm64.tar.gz", - "hash": "40a09a9ff07b078cff17da6d0bfeb427c99c64f15135111831eef94c9d8c6274e9c5f3787c7b7652113e93af2547ed41b26b9d59fb55f28f9aa69cf90e804d0e", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-musl-arm.tar.gz", - "hash": "df8d86e72b40fa7edde859984a882b6e718bc8dc307cb937c6c2cdfb21a18c8a0cc75c02c2054a2a62aefd3cdf96c183a8cac5adc8d5eb2f2fb82866db199e57", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-musl-arm64.tar.gz", - "hash": "d94f1ae721151c29eee382c0ac6d3c424ee7b1115025d1bf0779575af044c7f58f6d6bb069505ead8697b9153d4fa900ab54f6c3550c979a22bf98511bb3f708", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-musl-x64.tar.gz", - "hash": "c4377df5b5b2e9d93e4a3c3b30bd42a17af86c1428e9a911a6e69a6441eca9f4163d05a9056cdeed0cf735819a6d01013b3ac35545f20f5a1fe87629cb3c3b18", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-linux-x64.tar.gz", - "hash": "07fd5ab0b62e3d68a3099b76e1236550d86a1ec24150a09284d37b58055786595b182662671f0d4602545bfa404da8be0f9ab96036352dca28dbfef0048bb22d", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-osx-x64.tar.gz", - "hash": "9e8ed066fe8c580e64355b85408cd5207655c87dc7095e7d5f9cbfed399f4bba037fa8e140d22184a6905fc89070a715af156afc7bc2207d5071a45bc47e7f55", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-osx-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-win-arm64.zip", - "hash": "de1536edfa269fa388f91382c691a878e5f9d3f1584c25a2a7ad2ce6953f37a7b4892ee05d7fd406f779073fc72b89274c3af72156cb14e8942418f6c593dac5", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-arm64.zip" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-win-x64.exe", - "hash": "d03aeb2239e48b398903c0293528b3856d9a77b70779673ee5cd071ee091894ab98eb185e14421b5609af5bbfadcf2be081c524321d0d719ee16a07174c90b86", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x64.exe" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-win-x64.zip", - "hash": "7209135fba2fa706b465e0c1a5f1eee4fff526f282a536b30f2ac2466b697363f1d014524a83ddd90b8eb3d329f766e8476e45fb400aba2af2a77fcc9dbcb7b5", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x64.zip" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-win-x86.exe", - "hash": "ac14ffa2e01c4b1d59c55f6bb9100b8c4b9eff384752dd0b9cc9d05811aaff8fc87c9bdc63c3cc75081c606a5fb0367e0340756fd9a4af3b9fed9be0045af4d1", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x86.exe" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/aspnetcore-runtime-5.0.6-win-x86.zip", - "hash": "8336cc9aff85dcacdd962340d74eae46c33d16de142d64906696862974f8ec648568b2848e652c73aaa974985d1882980376e487613dbdb538438cba572731a9", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x86.zip" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.6/dotnet-hosting-5.0.6-win.exe", - "hash": "9f48484fe0c55c3c3065e49f9cc3576bfd99703f250e5420bb3d2599af02c0380cd2f42278b9ce86088d70f19d171daa8fa9c504e14534b36c01afc282b4de1b", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.6", - "version-display": "5.0.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.6/windowsdesktop-runtime-5.0.6-win-arm64.exe", - "hash": "598b40dc4933d69410842e8532d5575f59091cf9340b81b7e5dadafc36c622a7145122a3c6f79166b055314acfd5e32498e83bd42ade77d0f9b67c6ff7596b4a", - "akams": "https://aka.ms/dotnet/5.0/windowsdesktop-runtime-win-arm64.exe" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.6/windowsdesktop-runtime-5.0.6-win-x64.exe", - "hash": "34b0d43e03b5aaeb987bbc9d6d6ee95b79d97587fecf39d8b8b653618cec4d8741c8d31c270662a0c8b59a18344be2a44b7c38e525505270b264d7dcc856761c", - "akams": "https://aka.ms/dotnet/5.0/windowsdesktop-runtime-win-x64.exe" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.6/windowsdesktop-runtime-5.0.6-win-x86.exe", - "hash": "83ceb900805a33763df0a16e81f3f3d2a4b576802b335975177d77953bf9f0db60d36f257b2e018fe44440df2b8f8a8c44e767939bd9e4ff21230eb32f34db66", - "akams": "https://aka.ms/dotnet/5.0/windowsdesktop-runtime-win-x86.exe" - } - ] - } - }, - { - "release-date": "2021-04-06", - "release-version": "5.0.5", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.5/5.0.5.md", - "runtime": { - "version": "5.0.5", - "version-display": "5.0.5", - "vs-version": "16.9.4", - "vs-mac-version": "8.9.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-arm.tar.gz", - "hash": "b7032a935a808370b1eedad7d3e7204c4d05518d21be5aa0b990bf935b48cc89ed70d2fcb282a5ae191034722bc09dfcbc12e2ad674b37c8bd23db8811cde3cb", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-arm64.tar.gz", - "hash": "d3ea167e1877f6a30ed3e2243bfde572340db295cdc2fe91a6035bfaaab4b15a42023bbef79db3cdbc8cf32a24efd91d53975701c8068cbcc0a51965a70efdee", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-musl-arm.tar.gz", - "hash": "840193c670705e27c7ba7adf2bc9bab2cd58183fb08f28968c9624e8522ad215c35b42d2aef1ae6e45964b13d66a93aa3cc0f5fb626a6dd19ac119d205390e3e", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-musl-arm64.tar.gz", - "hash": "f9d2b50fd921ed9775b1c679f8365b394bf7d89c81b571a1afd4611bceb4af725ecfe063a51701d74707c1e8e48fd8bdec744eebde88cd4d41e9a75932e0f972", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-musl-x64.tar.gz", - "hash": "c0910f24938cc0dcf2f9f8277962eaf568b2be07c31ce5f3f2c1306c50012ed46fde1be3535f7ac7f5a3f63219a573c9ebbc4b7a2e869fcc435b14f0b79c0b13", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-linux-x64.tar.gz", - "hash": "ce9d3778c9a331b35cf18d7b64f9eec8fc37d9088f1a2208488577f611b2ab0f8b3a82b7f559b331d584ac86e1f09153ee2e255e617239fe9a9382373f873237", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-linux-x64.tar.gz" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-osx-x64.pkg", - "hash": "9d440ee44fff64efe34b8e9f98a3eaa1e5db68eab430b2613563e66da6b899b0468ed0efa1abc609d6bfb23cefa5c220ce97b3d7ee3873035f4f63b9291265db", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-osx-x64.pkg" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-osx-x64.tar.gz", - "hash": "5b949b7f4e6cacd46710ed136d4e64e352cc77221743d415e250b9276127f49c97fa7c71e90fc02adbc036cf23809462e31fac3eb1f65a551e0571bde5752671", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-osx-x64.tar.gz" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-arm64.exe", - "hash": "37fd81ffb5191efbb11499e10b7fb9e7e9181cbc0f27a918fecbb59d3fe8cd8d16a474529f8b52e2823b59328e06194e74503cdb1a8be6c7566adccea87bdc08", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-arm64.exe" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-arm64.zip", - "hash": "bc368317d05a150cac937aebda607fac53a3c8486a98ee0169ea355918e29c8a9930371da82effd1904b591a0f4944ed16d56ae0f8dc0a7036faf9cd343cdb59", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-arm64.zip" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-x64.exe", - "hash": "307860d3ccad7126f99ab909144506db2572849b6b20258e6dde9619f162073a07a64c404417fded456323636a527c1f64d037f1d1192f4c6b8d91f306a6b987", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x64.exe" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-x64.zip", - "hash": "42dd92ba8443ff28ab7b98bd88ac43b63b955d795df31376c9d6ab7c7a09f786634806dc28987df23c786298e18d4d63f0eaf45cfd47b83b48af63a309a529d4", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x64.zip" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-x86.exe", - "hash": "b391752021a5189de96b7bc0db98184066ecbf38b0339c505d68a0e73d3f2a70f6eec9b0a1863606019c1c8594b89f66fe0b55283053c52089bb3e7d6babfcce", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x86.exe" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.5/dotnet-runtime-5.0.5-win-x86.zip", - "hash": "967b1d7a0112c7f8a4e4a4c0f81be42798c96ab3d30ac52a4861dbed9f0ea57ef1805a442cfa61055239e09caa452de22527aaaaac858cc7462c435d34c1d8c3", - "akams": "https://aka.ms/dotnet/5.0/dotnet-runtime-win-x86.zip" - } - ] - }, - "sdk": { - "version": "5.0.202", - "version-display": "5.0.202", - "runtime-version": "5.0.5", - "vs-version": "16.9.4", - "vs-mac-version": "8.9.6", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-arm.tar.gz", - "hash": "ac363bbc163100e49b2ad43dfded9bdd3444980d9dca1b51bcd65d6fab73a5fc2251f094fd5e6fa1c1c877251b2f26c684023c0e1b09d1956b9bb543f72c4f0b", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-arm64.tar.gz", - "hash": "26ec125a0637e71acad20386474df89a101e9ae948921b5de0cd343f4bc0e84b4e7b2318e15978723eb3b9d321e89b790c3f0424a43c29b0015fc6f2b9e3e9d9", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-arm.tar.gz", - "hash": "bc22a6c33792b0557eaf28c75a09bd88dd5a6a857d9e48e3fc73240708d8cbe5726e88f7d4b4aa9a5024b718e582d2a299c6660b4f02ef889c63bc3d0c302e35", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-arm64.tar.gz", - "hash": "ac2dea48a07d8cc359e377c4b1b2397aff6218497e10ddd73a49f4b1f670491dd01d03b204e530ebd5812ed51b6432c5da592038c091244c27009c6e2f478c1a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-x64.tar.gz", - "hash": "cb367c4b5d011a233465fd2c674e1259eee2a888e9dfc3ec674e59542111b6e0c559a128b3641b4b1872c16429c1b9be9052f8c07462eb4a6148eeb40a19d29a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-x64.tar.gz", - "hash": "01ed59f236184987405673d24940d55ce29d830e7dbbc19556fdc03893039e6046712de6f901dc9911047a0dee4fd15319b7e94f8a31df6b981fa35bd93d9838", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-x64.zip", - "hash": "5e0c3062d9b52705c0c2916061f50d30072b6861e598912af96a02d009c50e38055c246bcac1d0151a236f70682359fc6dabce4dd7c4c77a3fe100882ec448f9", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.zip" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-osx-x64.pkg", - "hash": "f112dde7a02301a61c05db60800cf3d08989e7d47341d2b63d4d11510049e6bf4c6eebcbf70c767740618e7df0b51d831c8f327c55fb672e28e536de19d569a0", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.pkg" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-osx-x64.tar.gz", - "hash": "8f19df4db4146f4749dbf357da9bbc3e2fc5fdee046839b64dae54fbab12623fecea7369e8d1f1b449fb073850f7f1152ecce5fe85e2de52f477f04f6f395d10", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.tar.gz" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-arm64.exe", - "hash": "f8edcca8822408f04228293ba7c7286ddd8a67ee34f117153e5cae408118ff234c708611b19ada941554992b4f1e90e94a3a157861cca58dd3236c83ec0cc38c", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.exe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-arm64.zip", - "hash": "2db05c689440b6317a6e99a9371820e603947a2628de2115dd673f5b300ef9ad940159c9c4951103ca3d69b34c6098ebe72bcb31fcdfd45d7a519807eb9e7f4a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.zip" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x64.exe", - "hash": "00bf9b1680e36e4baf7dd699acb7b6c7ed138281a3064e8261d6ff5ba1e04a6847f2a2819e861c66482cd521f1c0527d5cfe20d53ea127413b3fc7a80b01f8b6", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.exe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x64.zip", - "hash": "ba76852b979ec98034d70a0c8012f7ec1c6638129d66121368766f3da423f46be942a6a4f2d8dafa8bdbd91218d7eeed89cd3c1818fb0df2656e9f9f6a7c6893", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.zip" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x86.exe", - "hash": "cff026787e22e71dc786b42cefbeb6cff45f504221a92a00535e71213820a343c3dacde5196785496fe60ad5b849fd155a9be7ecebf47cdf9d872fa365ccbe14", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.exe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x86.zip", - "hash": "273b93fcaeeb5facde39dc437eb429a66bdefee514b49b7e9d0f146630c1c32a207d879c4965d686fc4ef9f5d6d370b5b394b90908f668e5e70eb010a9efff74", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.zip" - } - ] - }, - "sdks": [ - { - "version": "5.0.202", - "version-display": "5.0.202", - "runtime-version": "5.0.5", - "vs-version": "16.9.4", - "vs-mac-version": "8.9.6", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-arm.tar.gz", - "hash": "ac363bbc163100e49b2ad43dfded9bdd3444980d9dca1b51bcd65d6fab73a5fc2251f094fd5e6fa1c1c877251b2f26c684023c0e1b09d1956b9bb543f72c4f0b", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-arm64.tar.gz", - "hash": "26ec125a0637e71acad20386474df89a101e9ae948921b5de0cd343f4bc0e84b4e7b2318e15978723eb3b9d321e89b790c3f0424a43c29b0015fc6f2b9e3e9d9", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-arm.tar.gz", - "hash": "bc22a6c33792b0557eaf28c75a09bd88dd5a6a857d9e48e3fc73240708d8cbe5726e88f7d4b4aa9a5024b718e582d2a299c6660b4f02ef889c63bc3d0c302e35", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-arm64.tar.gz", - "hash": "ac2dea48a07d8cc359e377c4b1b2397aff6218497e10ddd73a49f4b1f670491dd01d03b204e530ebd5812ed51b6432c5da592038c091244c27009c6e2f478c1a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-musl-x64.tar.gz", - "hash": "cb367c4b5d011a233465fd2c674e1259eee2a888e9dfc3ec674e59542111b6e0c559a128b3641b4b1872c16429c1b9be9052f8c07462eb4a6148eeb40a19d29a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-x64.tar.gz", - "hash": "01ed59f236184987405673d24940d55ce29d830e7dbbc19556fdc03893039e6046712de6f901dc9911047a0dee4fd15319b7e94f8a31df6b981fa35bd93d9838", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-linux-x64.zip", - "hash": "5e0c3062d9b52705c0c2916061f50d30072b6861e598912af96a02d009c50e38055c246bcac1d0151a236f70682359fc6dabce4dd7c4c77a3fe100882ec448f9", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-linux-x64.zip" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-osx-x64.pkg", - "hash": "f112dde7a02301a61c05db60800cf3d08989e7d47341d2b63d4d11510049e6bf4c6eebcbf70c767740618e7df0b51d831c8f327c55fb672e28e536de19d569a0", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.pkg" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-osx-x64.tar.gz", - "hash": "8f19df4db4146f4749dbf357da9bbc3e2fc5fdee046839b64dae54fbab12623fecea7369e8d1f1b449fb073850f7f1152ecce5fe85e2de52f477f04f6f395d10", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-osx-x64.tar.gz" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-arm64.exe", - "hash": "f8edcca8822408f04228293ba7c7286ddd8a67ee34f117153e5cae408118ff234c708611b19ada941554992b4f1e90e94a3a157861cca58dd3236c83ec0cc38c", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.exe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-arm64.zip", - "hash": "2db05c689440b6317a6e99a9371820e603947a2628de2115dd673f5b300ef9ad940159c9c4951103ca3d69b34c6098ebe72bcb31fcdfd45d7a519807eb9e7f4a", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-arm64.zip" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x64.exe", - "hash": "00bf9b1680e36e4baf7dd699acb7b6c7ed138281a3064e8261d6ff5ba1e04a6847f2a2819e861c66482cd521f1c0527d5cfe20d53ea127413b3fc7a80b01f8b6", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.exe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x64.zip", - "hash": "ba76852b979ec98034d70a0c8012f7ec1c6638129d66121368766f3da423f46be942a6a4f2d8dafa8bdbd91218d7eeed89cd3c1818fb0df2656e9f9f6a7c6893", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x64.zip" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x86.exe", - "hash": "cff026787e22e71dc786b42cefbeb6cff45f504221a92a00535e71213820a343c3dacde5196785496fe60ad5b849fd155a9be7ecebf47cdf9d872fa365ccbe14", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.exe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.202/dotnet-sdk-5.0.202-win-x86.zip", - "hash": "273b93fcaeeb5facde39dc437eb429a66bdefee514b49b7e9d0f146630c1c32a207d879c4965d686fc4ef9f5d6d370b5b394b90908f668e5e70eb010a9efff74", - "akams": "https://aka.ms/dotnet/5.0.2xx/dotnet-sdk-win-x86.zip" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.5", - "version-display": "5.0.5", - "version-aspnetcoremodule": [ - "15.0.21076.5" - ], - "vs-version": "16.9.4", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-arm.tar.gz", - "hash": "962f02bd27a96fc577bd4a6e3763e50daace29479880a96386d863a5905ff4b081c9f12086b540b48a2df378919a1ae368032cc76a322f5bb602fb7bf48ad773", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-arm64.tar.gz", - "hash": "f2421b16295f53b2796c604eb89e4cea0f238f376e4e3d4f348d8aebed6543fd605e76c871de049cb5328ec1fcea9a35d65b57c1c2c4d09a2614fd5bb2428980", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-musl-arm.tar.gz", - "hash": "839558a389c9a64ef7050c7b0426e3fa6fec638f31492dae2292f2cc990d6bb84a4f8ee523bfcfb74822116354125989b004c39ec0c97dbcda727e9fa04e72fe", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-musl-arm64.tar.gz", - "hash": "b46071e8b9e7b71d0ca57dbe524ab152ca1e3b5f75d443dff7dcdb80f61d5dee5044b8bde2a20e94d3d7f26aaf82a94bb0af9f5883446a929da3278eb55ffa27", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-musl-x64.tar.gz", - "hash": "04057353d890e73f5fe93cf9d05b2e84bf1f972a401acc631fc7ee7b83e97a4e40343458f274b7e900f96b94fbd2b954bde89b8874367776c82cb17567091d23", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-linux-x64.tar.gz", - "hash": "149b378b2377b60980a9bc0fa2f345293439f0da18bc75e8bffadc2faba8c3c175325fdd4edc9faaf898c4836f76a1685d55a0efdb679a5034b9e761450a88a4", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-linux-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-osx-x64.tar.gz", - "hash": "1dd1c8d08bc2a0987388cff40a9171e9b281b3f3a5d21cf2751917aca72d12d10ffff77220fc997f910ae2e2c93bd0d5adb81330d8db328f36a958bc6992b981", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-osx-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-win-arm64.zip", - "hash": "3a3728a983abb3ceca4a269a2b57930d497cc7dabfd4da2ab023ad18436912ba74865539b825c157a1ec92eb86c407f1fbc80a16c2949476244edfcce5d4ef0d", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-arm64.zip" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-win-x64.exe", - "hash": "c68d5fb4679bc5606d93fb17407e90b7357d40eb78aabc3a3ae9c6d8f24a527463955080a25fb3bc7d06e6e99917133f72006ff3f35baeb834aa2cd9d899244c", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x64.exe" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-win-x64.zip", - "hash": "1dc0fba71253374090a9e5b745e438c4f2d87b0558fc186ef2cbbfdf9c7869381d9b1cab1421759d12805f36870f40e88e5f0da372e1bf35081a2361f731bf55", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x64.zip" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-win-x86.exe", - "hash": "871cbdacb83d35d842cd6c97d9e546791c0e19825980ac9d490788106c6165b1c3b7f27077dfd04fc0822e91eee06994a3439c0add5da6cd8e70d1c4d3c7cba6", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x86.exe" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/aspnetcore-runtime-5.0.5-win-x86.zip", - "hash": "a03e63336f39385fc7db91e752954062d73a8f208b29b77ea2a76e69052b36b905ea30467b9af1fae09d97657aaef94af3187c3032884ddb0744d78542ab9ed7", - "akams": "https://aka.ms/dotnet/5.0/aspnetcore-runtime-win-x86.zip" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.5/dotnet-hosting-5.0.5-win.exe", - "hash": "ba54b94727260ab692790b258e24a49e3b1c03d18f947d6e4bad1eac20f6900d435028b49fe737cc979ea569c80cdd488b2867cb26f58bfc24e2955d921c15e5", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.5", - "version-display": "5.0.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.5/windowsdesktop-runtime-5.0.5-win-x64.exe", - "hash": "3925bc0b50b273296d0ca5f677b45cf1fe9aa11d29c6d7f4491c8b64d62058043cc61e10ee71ef2601dfa2c53b7cb1bc00747040b533712997a5e50c9bb72721", - "akams": "https://aka.ms/dotnet/5.0/windowsdesktop-runtime-win-x64.exe" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.5/windowsdesktop-runtime-5.0.5-win-x86.exe", - "hash": "a6fddc8ceaa607fecb157a755b9a89b5e3e44921eed9128478139779058bbc24de2207f1af8fac358d02194e801b5d8bb8ff32e92aa30b88afad627cf16eea65", - "akams": "https://aka.ms/dotnet/5.0/windowsdesktop-runtime-win-x86.exe" - } - ] - } - }, - { - "release-date": "2021-03-09", - "release-version": "5.0.4", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-26701", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26701" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.4/5.0.4.md", - "runtime": { - "version": "5.0.4", - "version-display": "5.0.4", - "vs-version": "16.8.7, 16.9.1", - "vs-mac-version": "8.9.1", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-arm.tar.gz", - "hash": "2307af8eba1356a326f95ed9ac604d8647eadc112d4bce890e2e0263c5692fbdaf13335345f3633a06cf2595b802201442265f413b2b2a6c0695fffd84bbc57a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-arm64.tar.gz", - "hash": "4162270e9fccbd890a51283186fd2aa2fc20812d3403aad662ad24d487afa432c9b1eaf784fbc0f57e60a0abc16941b245bce9a88be1774c4cf3f239e456b0d1" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-musl-arm.tar.gz", - "hash": "f1b71f4e2f64ac97f5ff5ee9cbc013be6a7e70ace46671bd3b6ca0522f577f337ca36cff8c4408d60ef33a33a81ab53b9792d96c73c0492f1e8746deba7d42e2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-musl-arm64.tar.gz", - "hash": "ffe0b81b5682685a53ebc325933348b71a7c00af15b98242e26e2bf5312275a8e725f396ce49e394a491b6fac8724c0ca1f04063bcf6cc2e57068f8807102b9a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-musl-x64.tar.gz", - "hash": "6354c3b9cd3a7f650282c621bffbbaf435d0d5b02e99ff2e95d0c8680c760eb62319b84def1bcc4459ec4761ffc53dd22ddc98358448d23c1f5028d1ea4bf3a5" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-linux-x64.tar.gz", - "hash": "1f224778d81ca94d4246e9390d4d15f400eac527ebe50d1e92bd337b0a80bf111d15b0f187f28aa1c9218b2244aca00d3bb4090f73b6ac9ba484241111c74534" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-osx-x64.pkg", - "hash": "27cd36797fd887d07c73286cd4c08673819cb328c6a4a64a2a829d46d7727649808e0d90f7aa8018a7b340099b32857e8a123ff55dd3aa94dbd053acd3fabba3" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-osx-x64.tar.gz", - "hash": "f0b158f2c78aee1673b728c41227f5faff2e005ad7dc7f30d79752c9daac47992b12f87be6397f07c20766dd3ee9b6dc8fb2a6b69a9f8fe1ff0352dd3b4bd7e5" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-arm64.exe", - "hash": "cad5cbbcb1b9faef2e467a245eed75ef74bac1bb171bafd81b4d579e27806b0c051184b050285140925d7f69492e515825be5307a42cc04bcbc3c5cb6e852853" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-arm64.zip", - "hash": "9004034f82b815b98e09991a2782045878b8bf16945e818abd785844cb70ab35493d314015d831a4e4515f911053b54e9d46f73d0c750a8e5eacb67bc3638cea" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-x64.exe", - "hash": "9085c01fcbe18d7282bf3470f377ced5fbb860d8c86f7de1df9cf83e9c45356a219e385ed25ceefdfd61c9419088dd95c3b625ab4ae173058327a935d9cea003" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-x64.zip", - "hash": "5a1bb08cdc7db05e7d68c05330579d801180bb624ab3eb783842fa7ac399c98fd1e5d53a95bbaba0af6654cffd09594e7775b1774cbfdba35c6034208bfa44f6" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-x86.exe", - "hash": "90b588861d10dc35f40415abf7f3f27acc439731c042dee5be0a25f4dbdfaa170f3ac44a4c41ecbcd173eb25dad0dd8e8ed4397c02f4c80e999b8cd45195cf98" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.4/dotnet-runtime-5.0.4-win-x86.zip", - "hash": "0dad8237fc17b1b5e5b734e3d43f9c70c8f0c40cdbec6e515ccaae676f6594058cb7e667be4b7bb1f7e955b0afce32815c0d31915b94bf744bd95d26e4611de3" - } - ] - }, - "sdk": { - "version": "5.0.201", - "version-display": "5.0.201", - "runtime-version": "5.0.4", - "vs-version": "16.9.1", - "vs-mac-version": "8.9.1", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-arm.tar.gz", - "hash": "1be5abc37284441f528987ed6d07a9a6b9128445a8f615ae3eb4b593e2bce2c0732ee91ec2d2087a982af467a230cc826f63d8aa21748651db83085687f43fce" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-arm64.tar.gz", - "hash": "6d3d8f5f41931615dcea1038dbe1fdf3b767481b62422f2e91b67b433d949d853d68c5ed7bc0a63b2157d05b9e0139f747fe8377f16a9caf21e5dd5691548777" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-arm.tar.gz", - "hash": "f3a3eebd98ce9d031b8085847a8f0d3eb4af9d4fcd25ce8315da9ddf18ab11ed0f93edd06d67ee6b18b453513cd71b2c1b9c10659d2bd98ba325cd880aa0313b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-arm64.tar.gz", - "hash": "a455bac412c514a7533b3f9e776d2efa41b77b768a3a4795e5f43418acac6339bd6c5ecbb76cd0970bf0725f61659382c05060677c9caf30c804c6a6ca5a207d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-x64.tar.gz", - "hash": "46341b38fb4fd3faff66ce74e24063d7fd189de6d5ed12ee2bdcea11cefbb1edf1ed3984df87a11f5222cf3d79aceaede7402650ff09a964a2e8b81c7bd4bf08" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-x64.tar.gz", - "hash": "099084cc7935482e363bd7802d2fdd909b3d72d2e9706e9ba4df95e3d142a28b780d2b85e5fb4662dcaad18e91c7e06519184fae981a521425eed605770c3c5a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-osx-x64.pkg", - "hash": "6206d6994fe23c3e7cc26543e5a5e231cacd0a6e14e86bbc0636054114144adc47c8a7cb6e99fa05c7414c34c47c935937b32d41ea9eeb794aaf1702ff2be74c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-osx-x64.tar.gz", - "hash": "28d1e55e9002e63a354f4b5994e83114229701fe84fee41d083f1de33af751a288cab0605da7d3b0d0c3bbc10979ca0a3dbe13722d29313031e7732ad7f8e6d1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-arm64.exe", - "hash": "a1cc241e3e91db98464284c389339a7d5a32e618b2fcb46fe89cd3c562b2f82865a54066ddb314403940acd729673c23f81a0aaa5e5ad519551d8c121b3638d8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-arm64.zip", - "hash": "c4cfa9818832396f9bd455f52a3b0371538937efbacacb388b7b02f8fa0208162510cad7b575c2ec4cf73637f34dd4392bc85166bdbe35854d88d42b80103828" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x64.exe", - "hash": "aa1b4466415129b1d6ce5fced473f2a4092d457e5f3e8d36546eb79ab515fb9683aef5e0162230986950a38da4ba27b6fb3caa75771348dc57793d4f4ca2065c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x64.zip", - "hash": "e7e1a2e27a91226974804c3949d3ee097b7d7a7ff9ccdbfb1afad742eb5c1ea20487f580f8266aa1d1fb9fb90ab0643c2c3a14e30dedf9f3a339768654dd567d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x86.exe", - "hash": "761d86868f6af57111a87eac05f7f25e945d69ea04b989f6d1d9b207823319a9280a07ab60885cff4a397d50e8b48063e812aef825a16001e51179bb855ae223" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x86.zip", - "hash": "630d12d0f240f5f7abbc44dc8e702621b458b413723e554f9fe806f9dca33a601c80cd6cffe877cdb249a397fd7d417f4fde0bdc84ed55d40bd675c6241cb588" - } - ] - }, - "sdks": [ - { - "version": "5.0.201", - "version-display": "5.0.201", - "runtime-version": "5.0.4", - "vs-version": "16.9.1", - "vs-mac-version": "8.9.1", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-arm.tar.gz", - "hash": "1be5abc37284441f528987ed6d07a9a6b9128445a8f615ae3eb4b593e2bce2c0732ee91ec2d2087a982af467a230cc826f63d8aa21748651db83085687f43fce" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-arm64.tar.gz", - "hash": "6d3d8f5f41931615dcea1038dbe1fdf3b767481b62422f2e91b67b433d949d853d68c5ed7bc0a63b2157d05b9e0139f747fe8377f16a9caf21e5dd5691548777" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-arm.tar.gz", - "hash": "f3a3eebd98ce9d031b8085847a8f0d3eb4af9d4fcd25ce8315da9ddf18ab11ed0f93edd06d67ee6b18b453513cd71b2c1b9c10659d2bd98ba325cd880aa0313b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-arm64.tar.gz", - "hash": "a455bac412c514a7533b3f9e776d2efa41b77b768a3a4795e5f43418acac6339bd6c5ecbb76cd0970bf0725f61659382c05060677c9caf30c804c6a6ca5a207d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-musl-x64.tar.gz", - "hash": "46341b38fb4fd3faff66ce74e24063d7fd189de6d5ed12ee2bdcea11cefbb1edf1ed3984df87a11f5222cf3d79aceaede7402650ff09a964a2e8b81c7bd4bf08" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-linux-x64.tar.gz", - "hash": "099084cc7935482e363bd7802d2fdd909b3d72d2e9706e9ba4df95e3d142a28b780d2b85e5fb4662dcaad18e91c7e06519184fae981a521425eed605770c3c5a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-osx-x64.pkg", - "hash": "6206d6994fe23c3e7cc26543e5a5e231cacd0a6e14e86bbc0636054114144adc47c8a7cb6e99fa05c7414c34c47c935937b32d41ea9eeb794aaf1702ff2be74c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-osx-x64.tar.gz", - "hash": "28d1e55e9002e63a354f4b5994e83114229701fe84fee41d083f1de33af751a288cab0605da7d3b0d0c3bbc10979ca0a3dbe13722d29313031e7732ad7f8e6d1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-arm64.exe", - "hash": "a1cc241e3e91db98464284c389339a7d5a32e618b2fcb46fe89cd3c562b2f82865a54066ddb314403940acd729673c23f81a0aaa5e5ad519551d8c121b3638d8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-arm64.zip", - "hash": "c4cfa9818832396f9bd455f52a3b0371538937efbacacb388b7b02f8fa0208162510cad7b575c2ec4cf73637f34dd4392bc85166bdbe35854d88d42b80103828" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x64.exe", - "hash": "aa1b4466415129b1d6ce5fced473f2a4092d457e5f3e8d36546eb79ab515fb9683aef5e0162230986950a38da4ba27b6fb3caa75771348dc57793d4f4ca2065c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x64.zip", - "hash": "e7e1a2e27a91226974804c3949d3ee097b7d7a7ff9ccdbfb1afad742eb5c1ea20487f580f8266aa1d1fb9fb90ab0643c2c3a14e30dedf9f3a339768654dd567d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x86.exe", - "hash": "761d86868f6af57111a87eac05f7f25e945d69ea04b989f6d1d9b207823319a9280a07ab60885cff4a397d50e8b48063e812aef825a16001e51179bb855ae223" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.201/dotnet-sdk-5.0.201-win-x86.zip", - "hash": "630d12d0f240f5f7abbc44dc8e702621b458b413723e554f9fe806f9dca33a601c80cd6cffe877cdb249a397fd7d417f4fde0bdc84ed55d40bd675c6241cb588" - } - ] - }, - { - "version": "5.0.104", - "version-display": "5.0.104", - "runtime-version": "5.0.4", - "vs-version": "16.8.7", - "vs-mac-version": "8.9.1", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-linux-arm.tar.gz", - "hash": "56405b06f95fb493e7dd5df40f4a7b0dcdd7019335de5722d4032396f554e56cc727c4ad811cfb45abdd41558775880a25114f29ac6f44e8a1e4463f2c6cce7d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-linux-arm64.tar.gz", - "hash": "9f0cb4bdc70245bde541b26c67e4beb679923e9a68ba27585d9733f4a9f46c41bf0962c4bcd20027188f367ac6427e16e51ff6475f3be79deb1d9f734ecb7a8b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-linux-musl-x64.tar.gz", - "hash": "fa3f10034480d89bbcb1bc815ea6448c2f4b6188196f8675ab84e0ef569cdd5e7852650571019a5b00b1363fe926e8f29ff7915e72348325a0fca008635d591f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-linux-x64.tar.gz", - "hash": "7b76e0b3a67e0febdc04085b3b73c6a8799290ec935bafefe699c43f8a499c1d3d80d18090e62410d45e49620cfbb1c898259139a0f34e4a9c4db6307324cf7e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-osx-x64.pkg", - "hash": "242531d8817a256a494851822cbe4456831f56e4592520aa056e15916d415025792b54dc1417c78f70cec351c5dab904b9a18de361d06eab543d4d7182745ec7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-osx-x64.tar.gz", - "hash": "80cce19e46bb0c8e131b23abf618190c7c5a19bb3a15da0332307992f6dfeb5c830775f6e221fa250f27e4faba0302d11a41e6fd6ea2bc92efda94cf79cb4bb7" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-arm64.exe", - "hash": "273b754305ad19d273da74fd6ba76a1818dcd95562a7709394c383dc3aa043ac80fd04b1fd4eac156e5e410a9a67c91642ec727f360154ad9b14c99702b8f789" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-arm64.zip", - "hash": "ce0d687be4f8fb84d5c1abf8502bc5003538266b3ab2f583cfd96e8684dea8d14e3fea1c2eadc09507c691f3d2d7808d3dea3cf147c9c42c6601d88b14a4b103" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-x64.exe", - "hash": "941676b2c48e1128167df614f10b5727a78bb79713c3de5afc599f982f8b12344bbbbb5dd84ed691b17e022090a15924945dbd6759eeb5a2792537a44690cbbf" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-x64.zip", - "hash": "37ead89280700827c44619796d5898164dd94732395a2d39677f6d846fe63d7b5d4b796795184a6b775759ace2d0f2af589497cb6d322a179b5d318d02a2c4d4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-x86.exe", - "hash": "552ee46b6106ee452f6934179fe3ab4580c92f4475e7ae19d479b9177e5d877f64e5fb8084ce3b1f6277a99015d019bbeac51aa80e05d5a951e3c2b398271f4a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.104/dotnet-sdk-5.0.104-win-x86.zip", - "hash": "11e585140b2209b6909693087b3392c7bf9d62ed596160a23e0dbfd4c9afdc86f55c178bb5f9cc396be6a3d7d2d4de2185dff31cb008835ec4e1dd0ae7fa7d6e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.4", - "version-display": "5.0.4", - "version-aspnetcoremodule": [ - "15.0.21050.4" - ], - "vs-version": "16.8.7, 16.9.1", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-arm.tar.gz", - "hash": "0f5cf4bad4645d05d70560e990260efa76a7832de0d3df2fd1427227a96bc2166d1eafa424013873f734262254e790bf23fc26b51b49ff53ff22de22b73137e2" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-arm64.tar.gz", - "hash": "fbe6970ef80f53e0d87e1d4e212e112bfd1961cb9aeeadc66fd5fd09d0ea965897b2e95207df7db83f760996a0ee53f1aed49f1c7e47136867fc6510f25a9fd6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-musl-arm.tar.gz", - "hash": "19645e9e429af96fdfcf378b2fd070de3ff9cb91c1b0ba9fb7b20afc11ac5645ae2ec2388d6a0ead9b37a58e20dd18cbf46b76c1e0e3f5358c59c1297fc83dea" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-musl-arm64.tar.gz", - "hash": "35dd93118b9d4f7a7574a1f7e5721a95a2b9d60b297347f98ffc9bd2675994222c36d653ad27e54c47703566630edee7b8aee6a1874b557035755e08b7f877e0" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-musl-x64.tar.gz", - "hash": "73f713d64db2c91b21f835a8bacef33894fb636b8d091ceff270ef2aeeb6b3ef276c17936371b533211083990e97130a85ccabf5cc809fd41612299611e3f7b4" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-linux-x64.tar.gz", - "hash": "6075649abf4f99ff19f472a3ce6290cf277e7620ab9e65a09d5884a265c50884d50496d6ceb70011b9caaad09ff8428a149cb0aa0b965a17f0a4f5f5e02b920c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-osx-x64.tar.gz", - "hash": "8a984a67969d7e3329dbe710cfa581919180365c8994b7d15109da7c344ceb347c426f345b449de55940a8916ba96ac662d89c5e5a6094bff34e10455f1ab892" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-win-arm64.zip", - "hash": "128712dbb2d71c9159b59655d2606623205409291786b38d2285afbb65d0a6b57354391d5d6e598594773a4dd44f829e15a168f4a589b87ed00637d1082d711a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-win-x64.exe", - "hash": "08a6932cb0bd841a6eabe75e4725c532774f74ab02295b9a510ed02af9f4785bc37c63eac111eb1016fdd72b7bac815b8199f632147210e14e4d83fee0e80f15" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-win-x64.zip", - "hash": "16a08ede93dec91666f254d0fc935dc450bfd840787185b04d0836d0e278d74ee0f0d09912cfa5871eb919706cad2e337944b2e19542c555eee38a0a2cbb08fd" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-win-x86.exe", - "hash": "43d2c0a67ca6d5851e399d265f141e39470eb5d09da59b8a1244e59425ddf480e7018305f4dd9bee0857f04a0fa34d9cf92da9af3577e0d15e6d5a6b8746ae54" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/aspnetcore-runtime-5.0.4-win-x86.zip", - "hash": "f9bde0cc590ccf7d8a9fe6cd1b3b2866e2406676130e7c720af5532f91808247740d6c1e9c685a04e96035a60c0ba1a3ef742f1ef9867667704a203a9d1f065c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.4/dotnet-hosting-5.0.4-win.exe", - "hash": "858b230f8f04f7d32ac5e28628c684fc056acf75c29f0c725619a569997ec32a44c685a108072398d6d5f45be8963f7621973eca7cf702bda324145893c41cd4", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.4", - "version-display": "5.0.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.4/windowsdesktop-runtime-5.0.4-win-x64.exe", - "hash": "69fcbe5458869246cbd0657764ec3fdbfd59f06a49808cb283a7c90271409b0266539d31cec9047c512f167cae8e2992b617b68bc9f93e4815a37a8f50524d3f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.4/windowsdesktop-runtime-5.0.4-win-x86.exe", - "hash": "f9dc79182c557751ad8590aa70fdf01e10b691d95910520e9323074ba6e3bae0df6dc60c084e01536e7b46b6617e4173300ad0d541d4ba6bc18b42f54bf0a051" - } - ] - } - }, - { - "release-date": "2021-03-02", - "release-version": "5.0.3", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-1721", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-1721" - }, - { - "cve-id": "CVE-2021-24112", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-24112" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.3/5.0.200-sdk.md", - "runtime": { - "version": "5.0.3", - "version-display": "5.0.3", - "vs-version": "16.8.5", - "vs-mac-version": "8.8.8", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-linux-arm.tar.gz", - "hash": "d89c1769dfdfe30092825a94aa0037ca99ef83a0935ba24755377813db9e4a2e49e41611d02cf24aa4a423fb44bc566cdd935f62db61fe04a5257932bed4abf4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-linux-arm64.tar.gz", - "hash": "f4d176b48714121040470a25f76a1b3554edb358953c1bfb39bd111cf0dcc85cb8a5ebcd617efd207b3cfaef0a2d242f94e9f018a186828a750c5c0dc9bd7da5" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-linux-musl-arm64.tar.gz", - "hash": "caccb6854393ca922aec23c10e3451787b445a2dac1e9bd8be2d33f70258e247ac9f97860570c8fc6438a17d938a7a8c026dffeecc914f3afe1981a198432b03" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-linux-musl-x64.tar.gz", - "hash": "85e4063792fb9d921a24f9da221a2b69c1faa253adb10644cc5907c35af92b3204f461fd6a9ec936ae37cfada47937f1c2b67174eabc778bd7305d66dc67e340" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-linux-x64.tar.gz", - "hash": "263dbe260123c3d6d706ed8b5f4d510d9384216422e9af0d293df87ed98e84e1e0ffbf0c7dd543c40c5ccc95bd7cd006c8bbbe9f1cd1f060b1eaa2f7a60fea74" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-osx-x64.pkg", - "hash": "4eb508f76a599b5b1a51482657cd4c42446a9e6f7f32b2441127182981e2682e6e13d47bd895a7ae34b7b1b7ee5aabcf28b4e7c817ba5606b3104758945780a9" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-osx-x64.tar.gz", - "hash": "a29bc8ddcb15b4be141495cd937b75cb2c1d83cd3d65900f0a591997a834f2187ffd3c56d44e2b3017ef0d70e032468a6630b2e16527aa8913d1a9b88dbe4da7" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-arm64.exe", - "hash": "0e95d7d7730b106a631a60c0195214f5f33978e9aff98712a6cd91c7c21b7fe8e97f620a9f27b41d0a521027fb92a19495a4062c0689d5dc6402e18e32d422c0" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-arm64.zip", - "hash": "a8abc0250271acef6872f577844787d297310899f206f96d458848da1b22183fdcbdc8ff6af5f9bc63a41bbebfa724a16c23ceeb117ffac8fd866f15c59e0f25" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-x64.exe", - "hash": "ae69e34d0139b9d9232bde5ee9ec8e0f98d997344a9903b11f10dfa3bc07e965ef15f27f8b08befcfb07188f3dc6dfe1c638ef35dbd953fdcd0f548ef489a541" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-x64.zip", - "hash": "1b29d6f51c11c2eb3101eb1cfd259deade6a4575e555e5a93839c37a9a14d7f81e7bb57d3e78d8957d7537d95a5db6577320d8e5e44d3bc70f33769f4fdd0aa9" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-x86.exe", - "hash": "159928dfa5204f7de9f118ea9781aaaac44ef2eae446d8dfe7d817692ad21bf4a550f1de7f423180d920aa9bf9827519c15c3b97071b2215b9493931b84adc53" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.3/dotnet-runtime-5.0.3-win-x86.zip", - "hash": "942088b89ef822a00c902433623144d460d8ae2e9d9973d4ca50fc8ce9db86b580dab14bf2267a2afb46cae98e39ab3b97d0ea7cf64edd9955a224126f44d39c" - } - ] - }, - "sdk": { - "version": "5.0.200", - "version-display": "5.0.200", - "runtime-version": "5.0.3", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-arm.tar.gz", - "hash": "01544d37e118dbe2bb38c00947b11c64756bd69809c7b2a0c615df6d7d31d432b792c84d39709fb364f73c51a16349829e7331ccfb9307e569c39150e0b802c9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-arm64.tar.gz", - "hash": "684b2f3bc59f090c5be14b993480c2600d7ac6703fb6af098f371f6404df7298e0be283ceef5cb28383ba334e3828bb92825269bf3a6ad4b8b37c2e0b15be3bf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-musl-x64.tar.gz", - "hash": "2e73e524b1d61b9d69a1eb508e239e91aef8245b7947fdb9699ca32660674420239d6bd3d6c43dd8cad406afccda9bade01a8655170f046538aab45751dcfee0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-x64.tar.gz", - "hash": "0d185e30fc2e81e5db452995e826b108f2bc90f7277a9dedc9a7539d9a9554d6f7e6a1e7b2527012c804d686acda6e6b4be1a0210c4d150486c07863b3b27f1e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-osx-x64.pkg", - "hash": "ea5ecb4687985cb05e1da5b2fa09e17e944b0d2e323ef547fb6dfad6dbbef0e6ecd48eb98bd2327d9c6afa6ac20a5b0b5be84e1177cb5941f4d2a22cec2d156f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-osx-x64.tar.gz", - "hash": "c655d35665698c6b1be9fcd5ebe9ee39f97f08552af8decf435dd7c31b273a4c8a1b90e6687c0add6c67148eba9650b2ef1c247a8bf04543cf12a153f4760fae" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-arm64.exe", - "hash": "a705ff3f7424c43c0d6067ee414854056588b542eeb66f448796398e59b2a72570d1bad57018721a494d7dda52f8c277b710c80a8c752b5a088a6390070862c6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-arm64.zip", - "hash": "4b72b107c45ee79392c8531526989363af39736b50d4b9c378c66c8686fdc91ac236cdfbc08788493e415ad03411a1e6b3ea903ff996a7f1a0bf3c34daea4927" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x64.exe", - "hash": "ad82e39229f7c1b59578e86b29318a82bfff96831e7d845fb3044e9eed9c40d2963d1ccb8c23d02ace1be9f1591909a366dec9230332c6328875ab5dcc00f53c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x64.zip", - "hash": "bed2ad5eb95f737687880c0d3903c1474f91c236faafbd541850bd3e0242b48ac213cf94fc9b911e62c40871861678d3cd589a3805890acf4b0f04d111723dda" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x86.exe", - "hash": "773a81dabff01369b208d3234f526bddb8837b2307cb4d65cdad6e8b708655f6dbeb8e71001967d72270434fb36d74621d2ebe2cb85fb70182f60935db46a46f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x86.zip", - "hash": "d52ec04a46f9349df254470bbd247323d0d723ed7f4cc90291acd816fa0412c4e39f071a3a6bd347c51d0f93692cfc15b740402326789c2c562f9ec56944ee0b" - } - ] - }, - "sdks": [ - { - "version": "5.0.200", - "version-display": "5.0.200", - "runtime-version": "5.0.3", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-arm.tar.gz", - "hash": "01544d37e118dbe2bb38c00947b11c64756bd69809c7b2a0c615df6d7d31d432b792c84d39709fb364f73c51a16349829e7331ccfb9307e569c39150e0b802c9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-arm64.tar.gz", - "hash": "684b2f3bc59f090c5be14b993480c2600d7ac6703fb6af098f371f6404df7298e0be283ceef5cb28383ba334e3828bb92825269bf3a6ad4b8b37c2e0b15be3bf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-musl-x64.tar.gz", - "hash": "2e73e524b1d61b9d69a1eb508e239e91aef8245b7947fdb9699ca32660674420239d6bd3d6c43dd8cad406afccda9bade01a8655170f046538aab45751dcfee0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-linux-x64.tar.gz", - "hash": "0d185e30fc2e81e5db452995e826b108f2bc90f7277a9dedc9a7539d9a9554d6f7e6a1e7b2527012c804d686acda6e6b4be1a0210c4d150486c07863b3b27f1e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-osx-x64.pkg", - "hash": "ea5ecb4687985cb05e1da5b2fa09e17e944b0d2e323ef547fb6dfad6dbbef0e6ecd48eb98bd2327d9c6afa6ac20a5b0b5be84e1177cb5941f4d2a22cec2d156f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-osx-x64.tar.gz", - "hash": "c655d35665698c6b1be9fcd5ebe9ee39f97f08552af8decf435dd7c31b273a4c8a1b90e6687c0add6c67148eba9650b2ef1c247a8bf04543cf12a153f4760fae" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-arm64.exe", - "hash": "a705ff3f7424c43c0d6067ee414854056588b542eeb66f448796398e59b2a72570d1bad57018721a494d7dda52f8c277b710c80a8c752b5a088a6390070862c6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-arm64.zip", - "hash": "4b72b107c45ee79392c8531526989363af39736b50d4b9c378c66c8686fdc91ac236cdfbc08788493e415ad03411a1e6b3ea903ff996a7f1a0bf3c34daea4927" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x64.exe", - "hash": "ad82e39229f7c1b59578e86b29318a82bfff96831e7d845fb3044e9eed9c40d2963d1ccb8c23d02ace1be9f1591909a366dec9230332c6328875ab5dcc00f53c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x64.zip", - "hash": "bed2ad5eb95f737687880c0d3903c1474f91c236faafbd541850bd3e0242b48ac213cf94fc9b911e62c40871861678d3cd589a3805890acf4b0f04d111723dda" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x86.exe", - "hash": "773a81dabff01369b208d3234f526bddb8837b2307cb4d65cdad6e8b708655f6dbeb8e71001967d72270434fb36d74621d2ebe2cb85fb70182f60935db46a46f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.200/dotnet-sdk-5.0.200-win-x86.zip", - "hash": "d52ec04a46f9349df254470bbd247323d0d723ed7f4cc90291acd816fa0412c4e39f071a3a6bd347c51d0f93692cfc15b740402326789c2c562f9ec56944ee0b" - } - ] - }, - { - "version": "5.0.103", - "version-display": "5.0.103", - "runtime-version": "5.0.3", - "vs-version": "16.8.5", - "vs-mac-version": "8.8", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-linux-arm.tar.gz", - "hash": "ad07c5921b79d3ea3fdd7af2d26f118dcf74aa8ab6e147e0cdfeef94e656606777df8832135d52d24f22b5f1ebe75f51ee78462aeaa262b675e89ad04d55c0bf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-linux-arm64.tar.gz", - "hash": "179bcc4d280011a0d23f8f0d78349a372fe495e9c5aff106882c08025367ce49afe897f65c033c3f046bae2b1e49f7f6526edce273ab21e77812bbb8317d08a8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-linux-musl-x64.tar.gz", - "hash": "0bb6fc1aa4b8486b437f28baeda3b810f7c38ef195761a5eb4c5236975efc505dbff7abbdf7549a34278d110c8a7cf283e52f033a404b300e0f96a8ae0fca4a8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-linux-x64.tar.gz", - "hash": "bf452dbdaec7a82835cfc7c698d2558e7ac4b092e7ef35092796ba5440eb45dd880e86c1e61f8e170ac4eb813240cf83f9fc2e342dfa8b37e45afdf5cd82fb8e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-osx-x64.pkg", - "hash": "2348924b85e63887ecebb0f3b430db69163e180f8919fd21b2833b7af9f27222e8733ee989de180da8a54ff3c6d7735c36b514deeb517f0b1112e7e266b36920" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-osx-x64.tar.gz", - "hash": "fa0a5dac50e49bcf67e96f77ff9074204aa34b0e09c49c08cd9abaaced24f60d878f5fe782c5f01c6b0679e93f3f360aee7cc4687fcf89e92034db7ae38cf6d8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-arm64.exe", - "hash": "ac40904adc990708c7e2e6771bab879d05557307e17ffd76ab828ef73b2ecb51948ccd66697bcbc16997071f53a1f311fd1e62a2b4c1b85300e527568b739746" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-arm64.zip", - "hash": "79a057a90880b3dd9a0c5852585fc532cf53322cf487286f6e845383a187e1967119bfd17bf176a2024d39cc24d925cd719cad4814ac846f9a83b1d13ae9ff2a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-x64.exe", - "hash": "8c944c7ee2e33e5bfbf0d95d0b26a5365d42a73f4a95d0b7bed3c24aca0b61cf89cc8539d3452204b82e1ab737a85aa404a9a254d6dab742918d97562006c8c5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-x64.zip", - "hash": "7ff6316b2bf5219a794d86c716fefe6b80b0c8095f0ed98390f628f4cbd8c573c1a21369ac9aa9596826825ea595afccc14e207489c7346f074cfacf1be94d58" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-x86.exe", - "hash": "c55b0427d96b53fb5bf8e47833d486c2a8802123906bf3d92b2688e4cbcd77f6cb02fc61534e2054b78c7c5d5fe50d4e946700feaedd2f90bf7b93f85169aba5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.103/dotnet-sdk-5.0.103-win-x86.zip", - "hash": "08675887ed2ed6016be2581a94967316b4af5ea5a9d43d6ec1541a7925f2eba875804860a28f0e491fb17560d1fac197d8230b43f4e2fa95a98d0eaae6ef46e2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.3", - "version-display": "5.0.3", - "version-aspnetcoremodule": [ - "15.0.21023.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-linux-arm.tar.gz", - "hash": "2e9ea5fdb15b8fe56890cfb635216b3c68afb12a48d40e2c1e58838baffb1a80aa75e6da363d878c3caaf9880c506ec12e316b93baae1e307ef04eb90d7d327c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-linux-arm64.tar.gz", - "hash": "4eaf1b0120479102b342f1f3a8ad8f40b7326e3657d2b7359c09fd1951c5169ca02d1ead4d4d01f6e594adbe0cb21f135f4c61ff90613219596f6cc222161717" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-linux-musl-arm64.tar.gz", - "hash": "adfd3548e9b8bc826a5746edc9501a504912a08e5b397a71b940847ff1f86edf85b747ce261a80dffa95b7cd7265f3d7552921e7216f224f4cb409b45e207d64" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-linux-musl-x64.tar.gz", - "hash": "cd4471a542b4883987c067ecf180bd1ccc414f54fc90dd134c59bdba58f8e102366494b4fffb242de57c248d3915f34953de5330a9664b318ae58c1e1c004905" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-linux-x64.tar.gz", - "hash": "188618b07cd5c97a34c77efccc7c4eba10a52681592ef711a005c82d243e601891418e0dcc27a22aae7dd6ae33d35e0bb7aa9b9fc022746c6c2414bd25cdb110" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-osx-x64.tar.gz", - "hash": "924eaea6a5331835238afc84ba7dd9281aabb4c2fedf0f5383820aebdf13e916720c5889e058e6c1da0261a1f828fdb241fff7a076bef6bc2719f9dc3dc92ab1" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-win-arm64.zip", - "hash": "94ae7496317272cbd2f5a3e495e1b4c5e493a4c716fa82d8b19e78a1654510d1aa1bb5c5bed9f256e8064a1c5f37d02f15ce425fefc992c30c884d3465066621" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-win-x64.exe", - "hash": "69e8490ab8120ba4c076d4eea2e07e9660ebaef484ec5d7cab436e967574bb672bfd1e7571255b7ec8dda5be6540f530170688c5f68c3656ee45664f1085693c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-win-x64.zip", - "hash": "1188f9af667338bd1785246d1682876c10eabd584f1f8dc52a7cae06d2ad03c0b4236c4a603bd436d5fcf8f4221026b6a64cb4aa5ee13bf1f8e32e3b774e25d0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-win-x86.exe", - "hash": "b41d73e229b024eb89702fc8e11574ead23079b6443ee2a7e1050b982ede4c809e1e3e8f23f0a5bc9024fa07843ed74e2dca1ed29a92dfa794c415dc1b8cf9b8" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/aspnetcore-runtime-5.0.3-win-x86.zip", - "hash": "60561070de7b4900099ab23f80b5ce18df6360ad1a3b09306b3fe8ed855d4c117284ba31abec0f10004300b4bed77ded6faf26797a2f418a8e22f37257206ffb" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.3/dotnet-hosting-5.0.3-win.exe", - "hash": "e4e20d60dedcfdab77b04b068b81d2d2f66a767f54db00fa71323850ed96e0ad6c141b6d83fea3dbbeee715c4ade2fb8b45b060cb42130c938e3e28e0a1971e8", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.3", - "version-display": "5.0.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.3/windowsdesktop-runtime-5.0.3-win-x64.exe", - "hash": "216875b7be2bb1991015bd2ad390dda43263db51e173484dd9abaa38ef62c510e446d3135d6a4d84acae86ba2237ceca0645fb9fa2588edf2801c00ef4a13c1c" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.3/windowsdesktop-runtime-5.0.3-win-x86.exe", - "hash": "942f3348485fede89e339f4bc4f308fa9dcfaea92d54f805a420849ce37a0f4bcb812b56ecf04312c9dfa363f32ff637c07a72ccd9b8d0a6d131e69717a7e00d" - } - ] - } - }, - { - "release-date": "2021-01-12", - "release-version": "5.0.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-1723", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-1723" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.2/5.0.2.md", - "runtime": { - "version": "5.0.2", - "version-display": "5.0.2", - "vs-version": "16.8.4", - "vs-mac-version": "8.8.5", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-linux-arm.tar.gz", - "hash": "bfdfdd0dd176af6cdaa61c50b3fa8687031c6ff9e4dc67a6e02fbf24660ef456ad1946c00f9f013751ccc59f777b04ee535d8998996edc67101df17c3413fa77" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-linux-arm64.tar.gz", - "hash": "4328bee854cabda54e9a81c9351b8b86291357b6b1cb7802a1b3733238afca5a0910329d0ede4ba5755766601c32694580622eacde62cd18a64144cbe270ba8b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-linux-musl-arm64.tar.gz", - "hash": "d2b17c34cdffc70eca58bc139cdd38fd6ac998631f25cab145047e3509df5a9c0b8cc8a88fce32e5bf2982b6ef373a3d0ef3f41cbb88e270b9dce35aff7d67e7" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-linux-musl-x64.tar.gz", - "hash": "84e69846188689cf5ee1eddce77c6cf92a7becddac9cdd9b985a490446d5acbd5d59e3703e8da4241895c1907b85bac852735c756098774e3b890c1944cda64f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-linux-x64.tar.gz", - "hash": "e3ce93a74e9c69098e6767ac1b36b53ce71da53bce68c9b84bcd767c2015cf4f818640cb5311c2cf3934e9f39e59562cc83a533956d114ad446420b7c26f53a7" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-osx-x64.pkg", - "hash": "1c73d94d53fcd469c7179a77ecd6d8aa9121f7303115e838dea8a2594a105f01bada39a7f1530d92da0121538fbfe3f4a1f90a2b37e3d7200f6d8b5a4b9a0afb" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-osx-x64.tar.gz", - "hash": "08d77120b7eb9e8080d7ac11147d09fd725c022f49f297a01d17fb432fc104918811c9db6343fbfcda6894fab5a431dd54600b56e4bbb2aed2b0fe8a9592bfa0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-arm64.exe", - "hash": "59b915dee5f4865925598bdcebee3cee3117f7487908f933a1bd6447ea8fc9bb1e80b15c42908012e898f2500b340f7bafe0106a55d17f215da43e173b8ebbd3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-arm64.zip", - "hash": "d388f38c31fe35606bb5f6b2b1dd2d18d52ad64aef6cad493e1ba25a8b3b85a562dc55c748173ade0a836711562374c58be9fb0d172a56d6514057857311bac0" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-x64.exe", - "hash": "3baee14a3e2ecefea9dfd6de20c35886af8542b43f27fe83c74f24ed188810d50cb8d06b1991a092da923e565b3630534bb8423c92c0d580be0ab752c7703b51" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-x64.zip", - "hash": "8b63aa1acbe0633aa50e491c52e7782d2f60ded441c99980a81f7479b57c10e660a9c2faadc4d860757f0ee55104688d4cd3c0f4f42e85d313fb1a64ae7a3cf3" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-x86.exe", - "hash": "9b7408bce5940b386b431ae8df5f49c8864e1435f61c603f838f55650d2d07592c9e4c9700420b3f1eed680c4ba02e10ac420d9ecf5f746214f10345b1502cf1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.2/dotnet-runtime-5.0.2-win-x86.zip", - "hash": "0072f29192ad48d246ae187505b7413a61a61f3b0e69b8ca53ce0d37e88f58138bbdbadf4decb3ae20194aea6fd7d6003c7e09170f7f98e3c036e63cc07d2563" - } - ] - }, - "sdk": { - "version": "5.0.102", - "version-display": "5.0.102", - "runtime-version": "5.0.2", - "vs-version": "16.8.4", - "vs-mac-version": "8.8.5", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-arm.tar.gz", - "hash": "23610a4193d8116109aaeebefa0bf023808f86d3e0a8ba52b89aa5b4b869385a5e57fc8458ff12f9ea8f359f6978498d47fd80d073ab79b2a7dfbc103b8ff903" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-arm64.tar.gz", - "hash": "031272b86f435f88963b560c14342635d892345ac9a35d59ecaf6e425de8aab15ca5c3d0685c79027364e7a323927ba90568fe7ed8610f52ee5f961aef9fcf72" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-musl-x64.tar.gz", - "hash": "91ac9ea608b38402b2424d7754a823fade38261904a0fbb087f982b324aacf322c3500b520507f21b4aaac40eb059d8ef6d1656fd4f161d5afde2950210e86e8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-x64.tar.gz", - "hash": "0ce2d5365ca39808fb71baec4584d4ec786491c3735543dc93244604ea97e242377d0987cd8b1e529258dee68f203b5780559201e7ea6d84487d6d8d433329b3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-osx-x64.pkg", - "hash": "c7b6d24e86484fb692397da946509245e4b959ea1aedd49c1de7275c89ea9b61af29c88f3e40885ddd27e427d965cdf06f808c988b08c426cd797fb5b670118a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-osx-x64.tar.gz", - "hash": "7a3678b6b684797011d09447f6d66fbeaa42227cba8266f6a7735752d47a96be8a910fff0463fe8d021e83204f474659f69a6c192bd5f06141699e3417748554" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-arm64.exe", - "hash": "170e6ad7ad82a5c915a0808eecc916243f9a6330c166066e3c54ba33d4d574ff9af8f166368e4245c774056a3fb503264a900d219f95a4a6d4d737c496156202" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-arm64.zip", - "hash": "58eb25e69f161e7a6aa058b3a9cbaf0fdd4c605341cf6e4f2ce61d3108c252c7de0498e857c994ab1c27f6bb35504ee11b1c35a72c8e371f128f643d3266a744" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x64.exe", - "hash": "378dd2a216f4274fdddea6c385dba859ed7dad884214e48cca6e088529e0082486866c5d5e59e30d15baca0ea638963b6e4fb72bee1cac77ef6e12d3bb6f99b2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x64.zip", - "hash": "118056d7c60d9591b0a803fb4f8941b6fa5166553d1deac625279330b05599073231ee4c4ecdc3f179d57261290b6c62ac7f34d5f89c8b06274e2346a069f79b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x86.exe", - "hash": "5ba01b2369275b02b6f62578c3fde0011fb6cd4e5e15e1c4d392cb776ae65ff5c2b3a6dac686837c8051e7d8c1c89231c49eb38497471a1d33b90ea5ab9f60d4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x86.zip", - "hash": "079262cac8b88466cd077f3f54b9696ee1f6484764a5e6df6bd9a3cdcc9fd6e59c004f33923a9967a0efb0e3a4482034490ce3d4460a59611fe949d33d4186aa" - } - ] - }, - "sdks": [ - { - "version": "5.0.102", - "version-display": "5.0.102", - "runtime-version": "5.0.2", - "vs-version": "16.8.4", - "vs-mac-version": "8.8.5", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-arm.tar.gz", - "hash": "23610a4193d8116109aaeebefa0bf023808f86d3e0a8ba52b89aa5b4b869385a5e57fc8458ff12f9ea8f359f6978498d47fd80d073ab79b2a7dfbc103b8ff903" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-arm64.tar.gz", - "hash": "031272b86f435f88963b560c14342635d892345ac9a35d59ecaf6e425de8aab15ca5c3d0685c79027364e7a323927ba90568fe7ed8610f52ee5f961aef9fcf72" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-musl-x64.tar.gz", - "hash": "91ac9ea608b38402b2424d7754a823fade38261904a0fbb087f982b324aacf322c3500b520507f21b4aaac40eb059d8ef6d1656fd4f161d5afde2950210e86e8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-linux-x64.tar.gz", - "hash": "0ce2d5365ca39808fb71baec4584d4ec786491c3735543dc93244604ea97e242377d0987cd8b1e529258dee68f203b5780559201e7ea6d84487d6d8d433329b3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-osx-x64.pkg", - "hash": "c7b6d24e86484fb692397da946509245e4b959ea1aedd49c1de7275c89ea9b61af29c88f3e40885ddd27e427d965cdf06f808c988b08c426cd797fb5b670118a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-osx-x64.tar.gz", - "hash": "7a3678b6b684797011d09447f6d66fbeaa42227cba8266f6a7735752d47a96be8a910fff0463fe8d021e83204f474659f69a6c192bd5f06141699e3417748554" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-arm64.exe", - "hash": "170e6ad7ad82a5c915a0808eecc916243f9a6330c166066e3c54ba33d4d574ff9af8f166368e4245c774056a3fb503264a900d219f95a4a6d4d737c496156202" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-arm64.zip", - "hash": "58eb25e69f161e7a6aa058b3a9cbaf0fdd4c605341cf6e4f2ce61d3108c252c7de0498e857c994ab1c27f6bb35504ee11b1c35a72c8e371f128f643d3266a744" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x64.exe", - "hash": "378dd2a216f4274fdddea6c385dba859ed7dad884214e48cca6e088529e0082486866c5d5e59e30d15baca0ea638963b6e4fb72bee1cac77ef6e12d3bb6f99b2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x64.zip", - "hash": "118056d7c60d9591b0a803fb4f8941b6fa5166553d1deac625279330b05599073231ee4c4ecdc3f179d57261290b6c62ac7f34d5f89c8b06274e2346a069f79b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x86.exe", - "hash": "5ba01b2369275b02b6f62578c3fde0011fb6cd4e5e15e1c4d392cb776ae65ff5c2b3a6dac686837c8051e7d8c1c89231c49eb38497471a1d33b90ea5ab9f60d4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.102/dotnet-sdk-5.0.102-win-x86.zip", - "hash": "079262cac8b88466cd077f3f54b9696ee1f6484764a5e6df6bd9a3cdcc9fd6e59c004f33923a9967a0efb0e3a4482034490ce3d4460a59611fe949d33d4186aa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.2", - "version-display": "5.0.2", - "version-aspnetcoremodule": [ - "15.0.20336.1" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-linux-arm.tar.gz", - "hash": "b62b97931ba457aa4c023e021c1b6bbc43bcba0544440a7564538372ec39e9ab4a6ecc964e046d17c8cd253f0f7e6ae72b4852b502f223dac4b4eb8f4e50b89b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-linux-arm64.tar.gz", - "hash": "154b3745c412427c3a9c7c12ef94dccbd6193d88f676ed02a4036be19de6a53fb1b027a1455f97fbb0c0811713be3e33a0ac8d414ee6b1266a82dca65ff23456" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-linux-musl-arm64.tar.gz", - "hash": "2759c590827124aac3b097449842fdc8c9a80676e3557955d317ff65950e2fbb50bda2c43c10e3cf0bdae79c2e4715a902dadef297519df6ac03a920ccaa9124" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-linux-musl-x64.tar.gz", - "hash": "d9582bee1dc513288d386ee52bdeb9ed4d5d191d6843b68773f7979ea0d0527c35599722d700a33ce9d59752b44666b17ab7bb36da169c180965252a2742174c" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-linux-x64.tar.gz", - "hash": "917978eb091f4af0c403343aee9bb0eac296bc3d67b7a0e2155d211f1c3f332c72f8867f1ea726387854bf26f06b745b8080d2097d4452f69606d01c11af3555" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-osx-x64.tar.gz", - "hash": "5807f7f269e7eff9d5c68220d209d48f1c03110fc7af9fa729cd8ba33734e0291e5bd52a3057a065b99ad6aba658b568df0f1c0cadcd378c79bcf3d3f2d07a4e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-win-arm64.zip", - "hash": "d3e9d765dfecc353e47a400515e15b2238185c959cc6923d2f5daba6f172cb7fe27ddee2560cf16a7c7398ae9c1ca3ff8be071a3f968e4c2baf677c4e50b2473" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-win-x64.exe", - "hash": "f404dd579b41d235178d26a8608281bb171d1554413b9ac53bbdca32e1f3e3c81f0bdc0048d209c5a5d09b9e822ad39a25eea574ac08b21fd02688f020c97052" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-win-x64.zip", - "hash": "cfa07a205973fa39f7722f00151210543181b7aa9607cb88bfc796efbe5ee8b6faef6087cb0a19eee28a957c115bfec75e77cb8bb2a2885f06f27f3022ecbb8c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-win-x86.exe", - "hash": "66d6fe4962607d2d5971723bbb778b1da96007afc6b06c7ede9d6a6e00dda3ccdcaaa10d3285012f00b8ccc11aa1b70017dca6beddf91d85d6d9f37b9e8b3931" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/aspnetcore-runtime-5.0.2-win-x86.zip", - "hash": "0741eaccb993515d8f4df4438de9d790796acc7a5414d5c080b94644659a56b39720e51a0612c13b1d2b50e2ed00cf15e122ae69dfe1348a597c7b592e6b5d31" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.2/dotnet-hosting-5.0.2-win.exe", - "hash": "194687f833d081288315ca87d2cf7aad3dbd2c8e24dfdb7552ae1637058c34a936fec3642952effe1b72aaf4380eccefdaecc9e4dc9c2306cd3446a7fecfb5bb", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.2", - "version-display": "5.0.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.2/windowsdesktop-runtime-5.0.2-win-x64.exe", - "hash": "6e48c1b6717040bbb431638d80cbf612c07316e9ca6bb23ee276e140d509236cdc1e8167b35148e1565a06d1f314bcdcf764597758ad3d9dbd589a6aa75d0dac" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.2/windowsdesktop-runtime-5.0.2-win-x86.exe", - "hash": "97f6313f40159086a544f3f52cc1f34a161bd988f12c4f31b2e86eb9ffec0a72d4c9690616d80739c9f8aa65476ab1c7c4a95e804e9333c810f9d2f6d6e7ad2e" - } - ] - } - }, - { - "release-date": "2020-12-08", - "release-version": "5.0.1", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.1/5.0.1.md", - "runtime": { - "version": "5.0.1", - "version-display": "5.0.1", - "vs-version": "16.8.3", - "vs-mac-version": "8.8", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-linux-arm.tar.gz", - "hash": "b6cf63b4d7025a468dfaa67b1d3f28f9eb5224b040f5729202d0c144c6bf2af01596aad9cc1841a7d4250e1acc83bd9563af78f371cae17901ea8234a210e85b" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-linux-arm64.tar.gz", - "hash": "4d6c76f158a812de60201d0ec26a802bd2f2b8250041eb0c66c81996969c532e21aab9d485398634288ab885235d0df60697040c87b6fc9000e185ae39ce0c78" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-linux-musl-arm64.tar.gz", - "hash": "a09c5fea4e5ad30ae4d112290ab5bd88a5861bf3f7e1ef830e9eab8100aace3d81d4ceaa1fa34203b489708979a5f61792f26bd216d6f92ce59e0c87850960ef" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-linux-musl-x64.tar.gz", - "hash": "9a6eef8077f2d1a25a1b4ee9dd9300ac6ddd51b59ce14dd80e105cb18c27f8337517548595b8081be959d4c4d40339997931ed14b4d43aeca8d335c58bc382de" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-linux-x64.tar.gz", - "hash": "791af58eb2a4c7e7a65f0d940cfa09cda3318cb482728dbf40848543e1d04aa9ffd7e8d4fdede1b4fbc6f54250bae4e0c4a5bf208e04705f5c5f00375ac009b7" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-osx-x64.pkg", - "hash": "59870b0cd3d47805c2b95c679f3f9f8bf9da0a3710876d8a0b7f3c390b60a949c595781d0e3b3456e2ebc487bb2c7eff8d78909d67f2cc7cda91058ac3a6e56a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-osx-x64.tar.gz", - "hash": "6039b20692bc6367367eaa5a6117a1065dbc5c2b24cb8294eea4319337f8b9aa2907a9fc3d00125f1df48c0ef26ecec8c097a26ac5bbdf991fdef7173734b0bc" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-arm64.exe", - "hash": "f3a41ac14660ec1a2ffb64e1ae7a899a4f6e9b291847480d0cae23fb45d2ace387de0bec97a46eb082462e84e61e90dff1f9d1a618f21fe7c6ec1563b134e139" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-arm64.zip", - "hash": "2aef1591228eb5ff08535542230f6ba128e4cf944363cd941ef700eb3e4b68492d882c93a0e54f67c0ad47cc5d885bc22c9770b8d3e248ebc22c612a268809b7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-x64.exe", - "hash": "c7f458c5fa4d3b9ee27c62bf792aeb4c6addcc4c757b2794ddf673c984e783715617fe164a2ec793f1ad8ecb5715bd957884b202723309cc731e92455fbd9d5b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-x64.zip", - "hash": "036a6f07982349cdc2ffc305387916216707118b7372dbd701c7a58a3ca04fc2648ed1c15b2d101b2c2ae36f2f83da345301fea809d93acfc93e34c66f0bc788" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-x86.exe", - "hash": "b8d8925dddbf7b36a30d183ea21b27eada9f2894de798d99cea9cdd45a2cc0c1584ed6d43a6981c35fb55698fbb0aedbf6f4793b74c20acc5dac98f779b877fd" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.1/dotnet-runtime-5.0.1-win-x86.zip", - "hash": "507ae7cc02c023ba14cceefeb7b7c7434836f3072da81a517886c446f2f1c690d30b1afa211e64493443aa62baf9ad55992bc12a0338fe04bdb2b3ac8bfa29db" - } - ] - }, - "sdk": { - "version": "5.0.101", - "version-display": "5.0.101", - "runtime-version": "5.0.1", - "vs-version": "16.8.3", - "vs-mac-version": "8.8", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-arm.tar.gz", - "hash": "2b03ae553b59ad39aa22b5abb5b208318b15284889a86abdc3096e382853c28b0438e2922037f9bc974c85991320175ba48d7a6963bb112651d7027692bb5cde" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-arm64.tar.gz", - "hash": "b26beafd7649fd9081a914909aca6302e8629f24d97ac5d7ac4c7aace007aff93e920510f3fa5a871c71ad42f2e38241115339ccf01d2399b2c9000b53607a86" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-musl-x64.tar.gz", - "hash": "e874661647b530c58e78dad4fc0537739a30c460e31678547e9dc186858c5119730d4e7a6b529bf96655ff11e8fabcecec9eb24b5faf5348fe20b8c7f3080c3a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-x64.tar.gz", - "hash": "398d88099d765b8f5b920a3a2607c2d2d8a946786c1a3e51e73af1e663f0ee770b2b624a630b1bec1ceed43628ea8bc97963ba6c870d42bec064bde1cd1c9edb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-osx-x64.pkg", - "hash": "bda774bacd838179dc917828056445663174d0cc811fb396bdcc0bb6d2d0d048f38a4fa2ce6f5c05d0db40ebfff5d3321ca8ac326ac07f5637ce7779724a2e1b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-osx-x64.tar.gz", - "hash": "7aea6d5b236f8e1c0388cd15680f0939f1bf22e58027fcadbbb8fbf70f7686e5ea0df3877ac686a5713db437ac6848a4ccce73d06738969f6c46d85a6cc758ab" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-arm64.exe", - "hash": "bc9025205f632506a5590784d33fbff019010787fe14839939da26e9e68519980b79eb495c92fd1f109af49a20983dd99ab6611d162f9f31fc9595eb6d8eab0f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-arm64.zip", - "hash": "b3a458835f7f433eb96e8b8ddcdac7a6c42167e5aa243adc7a9a0d4a834967135b2b111af5841843ca87cc5c0ba176a1d98bc362b624ddf20d01736ffcf556e8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x64.exe", - "hash": "1a70df36a57f2c45fe08741a9181a95c94aa93c765c787d4981646e17dd29daf2b2111f11a3a46cebcebc108d9e11bcd5b510f07160f43881abf49cfcf08ce9f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x64.zip", - "hash": "7298d1b370b2055f95c03a628f78dce97470434a76907e20ad1ea14b55bdb0a67b2a78f5b5ec928b914df735e89ae9f3a8033d0fe2112a38998581598d35e931" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x86.exe", - "hash": "d15f8a43ecc4d84744cec79374c70addc8cb91aa9b5625d7171314787f711a6d53292efe88bf1694b664e012a4c2a469966185b7aef5d7f260f51a3b817f3fdd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x86.zip", - "hash": "d22252a378fc566c3e3209e463905e51cc7dfa9f5dbc795513889025b07fee927e681c3392a8778e44bed4d084ede949917b81aac5e6e3ec10b0abbf4b1c59c4" - } - ] - }, - "sdks": [ - { - "version": "5.0.101", - "version-display": "5.0.101", - "runtime-version": "5.0.1", - "vs-version": "16.8.3", - "vs-mac-version": "8.8", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-arm.tar.gz", - "hash": "2b03ae553b59ad39aa22b5abb5b208318b15284889a86abdc3096e382853c28b0438e2922037f9bc974c85991320175ba48d7a6963bb112651d7027692bb5cde" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-arm64.tar.gz", - "hash": "b26beafd7649fd9081a914909aca6302e8629f24d97ac5d7ac4c7aace007aff93e920510f3fa5a871c71ad42f2e38241115339ccf01d2399b2c9000b53607a86" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-musl-x64.tar.gz", - "hash": "e874661647b530c58e78dad4fc0537739a30c460e31678547e9dc186858c5119730d4e7a6b529bf96655ff11e8fabcecec9eb24b5faf5348fe20b8c7f3080c3a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-linux-x64.tar.gz", - "hash": "398d88099d765b8f5b920a3a2607c2d2d8a946786c1a3e51e73af1e663f0ee770b2b624a630b1bec1ceed43628ea8bc97963ba6c870d42bec064bde1cd1c9edb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-osx-x64.pkg", - "hash": "bda774bacd838179dc917828056445663174d0cc811fb396bdcc0bb6d2d0d048f38a4fa2ce6f5c05d0db40ebfff5d3321ca8ac326ac07f5637ce7779724a2e1b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-osx-x64.tar.gz", - "hash": "7aea6d5b236f8e1c0388cd15680f0939f1bf22e58027fcadbbb8fbf70f7686e5ea0df3877ac686a5713db437ac6848a4ccce73d06738969f6c46d85a6cc758ab" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-arm64.exe", - "hash": "bc9025205f632506a5590784d33fbff019010787fe14839939da26e9e68519980b79eb495c92fd1f109af49a20983dd99ab6611d162f9f31fc9595eb6d8eab0f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-arm64.zip", - "hash": "b3a458835f7f433eb96e8b8ddcdac7a6c42167e5aa243adc7a9a0d4a834967135b2b111af5841843ca87cc5c0ba176a1d98bc362b624ddf20d01736ffcf556e8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x64.exe", - "hash": "1a70df36a57f2c45fe08741a9181a95c94aa93c765c787d4981646e17dd29daf2b2111f11a3a46cebcebc108d9e11bcd5b510f07160f43881abf49cfcf08ce9f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x64.zip", - "hash": "7298d1b370b2055f95c03a628f78dce97470434a76907e20ad1ea14b55bdb0a67b2a78f5b5ec928b914df735e89ae9f3a8033d0fe2112a38998581598d35e931" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x86.exe", - "hash": "d15f8a43ecc4d84744cec79374c70addc8cb91aa9b5625d7171314787f711a6d53292efe88bf1694b664e012a4c2a469966185b7aef5d7f260f51a3b817f3fdd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.101/dotnet-sdk-5.0.101-win-x86.zip", - "hash": "d22252a378fc566c3e3209e463905e51cc7dfa9f5dbc795513889025b07fee927e681c3392a8778e44bed4d084ede949917b81aac5e6e3ec10b0abbf4b1c59c4" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.1", - "version-display": "5.0.1", - "version-aspnetcoremodule": [ - "15.0.20336.1" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-linux-arm.tar.gz", - "hash": "a7aa5431d79b69279a1ee9b39503030247001b747ccdd23411ff77b4f88458a49c198de35d1c1fa452684148ad9e1a176c27da97c8ff03df9ee5c3c10909c8b5" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-linux-arm64.tar.gz", - "hash": "794bba781849970be139090e0d9a38530358ad13ba701369096c417cef260b34543f56270c0628696ec33299a999bfbee6d8e6f52722eda845f01f61ea9bf0ff" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-linux-musl-arm64.tar.gz", - "hash": "62e72900eb433c32d26efd975ad41bcc934959e67c34c8a6176056da0856ee6918dd526dc66d01316ac5773061bd0b691e224d5fd581c8ecbdd9255d5bb8b8d4" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-linux-musl-x64.tar.gz", - "hash": "004fe94ba94b23eadd91ac2a95d175ee41b5550cdda9c5f48b0c090848562e1b5a33c9875517e9ff4d3c3a18b7c6f2c74d14c0860d3f4c68d388939412a72452" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-linux-x64.tar.gz", - "hash": "fec655aed2e73288e84d940fd356b596e266a3e74c37d9006674c4f923fb7cde5eafe30b7dcb43251528166c02724df5856e7174f1a46fc33036b0f8db92688a" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-osx-x64.tar.gz", - "hash": "2471486939d71764dc1d5f2f26f7111481863aaf837142917ec4720eaf04f4a69c01efa25339da496cfa4f719d80be09cc659b4e4da7ae7d87469a3516e7ec37" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-win-arm64.zip", - "hash": "46bdaf5e454e58592be38597aaad5782fc819eb198463b50536380aa5b0818794fa73de3a6383c239dcde9aff02be1e3bf7467c87b8cd15327ed5b2dc8a98016" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-win-x64.exe", - "hash": "d0d9b178fc5dc645750ad45457817b032d7b4ba1bf319c828a6015e9d8301fe9d6f9b747c7224e48f33ea00dd239c4dd174b59cb662658d76fb2be8e87bd41d7" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-win-x64.zip", - "hash": "b36513456f4cf860b8999c8831021b2b2b21611e4c66a81a8e13604270bfe4f741f1cbfa1778b459c17db60f3406083167f147ad1aa09c248a0e002c4ed2768c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-win-x86.exe", - "hash": "8eb37ea4f63c419236aad2f864012ccc96b3d9d4362d3ae32ed219f1403aee170e4d3b25454e2685255fd3e6ff225eae75b8d9b771582f35cc064530f6f0887e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/aspnetcore-runtime-5.0.1-win-x86.zip", - "hash": "c32957bbfc7536a56ec24bf6884628e2102bf9f25bb8f0336d328e06f9df8afc4e9e36523520e7687ce0d84b2cc72e668d416ebcfde769e605a9409e2df03116" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.1/dotnet-hosting-5.0.1-win.exe", - "hash": "776aa4d666c93024af8130ddf21e4d406130ea4ff8e4b14067178a994b67dc79d59792fa8909a52accfbd0a7b6ada60a922e108ac5f67e4cdc00a40c63ebd043", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.1", - "version-display": "5.0.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.1/windowsdesktop-runtime-5.0.1-win-x64.exe", - "hash": "ac1be00ce52296148a84ddbcd92c7a78b1c6e09cf65d23fb2859ef050c3ad87eacf70745deb1cea0c64832486eb0b3470219dcb80ed034419bf6673487f2bac6" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.1/windowsdesktop-runtime-5.0.1-win-x86.exe", - "hash": "c2dd979418e353940598ca721ea7927052f043282a219ca26244c0811e2359057719115a5b251cde98fd3a9bca05bdba551a57bf42df035a66de44a69a6e6309" - } - ] - } - }, - { - "release-date": "2020-11-10", - "release-version": "5.0.0", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0.0/5.0.0.md", - "runtime": { - "version": "5.0.0", - "version-display": "5.0.0", - "vs-version": "16.8.0", - "vs-mac-version": "8.8", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-linux-arm.tar.gz", - "hash": "b186bcf68b1fb6fbad750e0716b323e6f474f1977ce413646ecf2b009e2590c66956c44b883cc26263e65d9356ae8cd6f738476cb66a9434cc50d1fc4b11e790" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-linux-arm64.tar.gz", - "hash": "c7a5ae2bd4e0edbd3b681c2997ebf1633bfa1cd30a4333cb63fc9945b4e7c9278282516fb5bc22c710ce6fb59dc2e28230c07b0e99826165fa148406ab8afb0f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-linux-musl-arm64.tar.gz", - "hash": "b2858df7e3bc9d45f2014e0d1cab4490b511694881c713dc5af8e472bca6b218d6a9fc94776727310a8e14a38a29d66475f67d3d02783132125c7e9d285d1379" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-linux-musl-x64.tar.gz", - "hash": "c112bdc4308c0b49fa4f4f9845bf13bfcfe2debed9166e6e6922f389c043d6f7f55a7cc3e03778c08df3ffd415059b90dfb87ce84c95a0fb1de0a6e9f4428b6f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-linux-x64.tar.gz", - "hash": "d4d67df5ff5f6dde0d865a6e87559955bd57429df396cf7d05fe77f09e6220c67dc5e66439b1801ca4d301a62f81f666122bf4b623b31a46b861677dcafc62a4" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-osx-x64.pkg", - "hash": "e41d5565b608e2aafc848852bcbf455e9c08023b5fe582bca921839ea79fb5e956916436b4f46cdc1b9a37ed32d322d77a96bcf6e6385a6e8e62f224cbbeabff" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-osx-x64.tar.gz", - "hash": "eba97211e158a0c1c15b03a79b42027319d83456dc377a2513c32defb560cd43fcfa1e84154a43243b77ca6b454c4dbc32be4153f0ba9c954c7b1e69ab5d7c53" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-arm64.exe", - "hash": "b9f17c8a8683710b67e938e65aa90877f2631a54baf02ee1bf8925bf1b858ae9745052209fbdb8b06e4a7289842b44f0342dfe13300be15005a953d12b24830c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-arm64.zip", - "hash": "b44679eba929f66a488e0e47feb127ab4dba3102422c7df5d6c869440c309f85c5decd179a19ec5ba9897ca3b8592453bcd50ac2530cf4f2c8132562d8ab6a4b" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-x64.exe", - "hash": "989d523afe64e927bef95386b06148e685ef387568dad61cd09ad1ce3805308d835ec765089b1fe622d81a5617ae721af5c9064f195524c1b2a9165111d05c31" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-x64.zip", - "hash": "968f2aff18aabc8f9ef0e1a6a3c0c3704d7a010ed453f0d56ded804513ccff913032461f1dbe0ce89522e85fbe5593d444f4310e8fdf7de7c7b72d01912086f1" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-x86.exe", - "hash": "85e657528350fe95996b6f89ab9d836be91d47b82b3c3523c057f61b351c8274e653fef5e77562ef8ac049ed24cd22186b04594828b26dca69a3fcd792d17d72" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0/dotnet-runtime-5.0.0-win-x86.zip", - "hash": "45f31e5709abc69ba29647565ca1abc2a4d3512de257dd178d7efa4ad5715f0e273ae521a47046aaa606c255d007d2764fe02121fa21a9fbdd3ecd612e147534" - } - ] - }, - "sdk": { - "version": "5.0.100", - "version-display": "5.0.100", - "runtime-version": "5.0.0", - "vs-version": "16.8.0", - "vs-mac-version": "8.8", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-arm.tar.gz", - "hash": "c61a0910e34a5d7bffee46835242c24a153bf346e0ef1b048a47d12e60408aa722cec0a08fa1461ab615a4f0d09ef470c479d393f93929837f18699c745c1314" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-arm64.tar.gz", - "hash": "5fceac0a9468097d66af25516da597eb4836b294ed1647ba272ade5c8faea2ed977a95d9ce720c44d71607fa3a0cf9de55afe0e66c0c89ab1cc6736945978204" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-musl-x64.tar.gz", - "hash": "c6c7a505ca4152bdc73869f296b0d8d2f78fd764971656ab5a1d7df24904113280617bfe796b98a1b1cdfe81cb65ccbe0647d4faf3b002b3cc06d18e2b7f0d0d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-x64.tar.gz", - "hash": "bec37bfb327c45cc01fd843ef93b22b556f753b04724bba501622df124e7e144c303a4d7e931b5dbadbd4f7b39e5adb8f601cb6293e317ad46d8fe7d52aa9a09" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-osx-x64.pkg", - "hash": "1faeea85cdeb0abe976f65939cd6a27ffd830c313f1e31518022568f9ecf4ad98bb0512fc39ac898a3d83d8d79d72fe44bad09ff80803f07d1dbdd34ef4a3a7d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-osx-x64.tar.gz", - "hash": "69ccc7c686ac06f6c658d118f59cf1a0e7284b4570375dd88d3e3043098e311745922301f2650d159624d09c4d39a1f3cbdd5daee0e408eef915de839e3bce8f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-arm64.exe", - "hash": "5386b13e10eb2a34be3ede870c9da145fb1b9259be8ed83a22a490f1bc829ac90c1671d328dca43d6d923278d9d1342fc69c5fc23d2407e6cc80d362d365d575" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-arm64.zip", - "hash": "d6f5057d5b31521219aa8c0a3e5195eae1892e5281109343c4f5605ef95553bc35471be92e0a68cd26b7d80b2b9c5653ddcedcba2a84d14a3b8f44457073e15f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x64.exe", - "hash": "14c6a264451c48b6f7b0266adc9a0ffe0ebf9b954068531585e503e0c6b7ed4921822fb64de0bca31bf4065cd3ecf1d61bd6aa242c5e930affbdcb2bb6eaaf5d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x64.zip", - "hash": "6836916bc6f3f9f7c183eb49fa1f6130640bcf623f310785466cb36c98f0554d656ec69ce3524f22d1e0d21528796182c7b4f0ed7c66e37cbc0ecbcd9f59bcd5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x86.exe", - "hash": "66b2b126cacde2ac31f66aae091a472ab336b14802bb04c54d70f794ac67392c318644ea393e8dbc8b493dfbc5f0c6ddcdd13dc01f17d900650f32973558a999" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x86.zip", - "hash": "66bb16f536d7223544c97a33499ab35d35ca0648b80012a9fa7ab13184ac84ecf4b0a2ffa9b2c7829cf525777bca873f62d57989a8c68baa1f0ef327b1b3763c" - } - ] - }, - "sdks": [ - { - "version": "5.0.100", - "version-display": "5.0.100", - "runtime-version": "5.0.0", - "vs-version": "16.8.0", - "vs-mac-version": "8.8", - "vs-support": "Visual Studio 2019 (v16.8)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "15.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-arm.tar.gz", - "hash": "c61a0910e34a5d7bffee46835242c24a153bf346e0ef1b048a47d12e60408aa722cec0a08fa1461ab615a4f0d09ef470c479d393f93929837f18699c745c1314" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-arm64.tar.gz", - "hash": "5fceac0a9468097d66af25516da597eb4836b294ed1647ba272ade5c8faea2ed977a95d9ce720c44d71607fa3a0cf9de55afe0e66c0c89ab1cc6736945978204" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-musl-x64.tar.gz", - "hash": "c6c7a505ca4152bdc73869f296b0d8d2f78fd764971656ab5a1d7df24904113280617bfe796b98a1b1cdfe81cb65ccbe0647d4faf3b002b3cc06d18e2b7f0d0d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-linux-x64.tar.gz", - "hash": "bec37bfb327c45cc01fd843ef93b22b556f753b04724bba501622df124e7e144c303a4d7e931b5dbadbd4f7b39e5adb8f601cb6293e317ad46d8fe7d52aa9a09" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-osx-x64.pkg", - "hash": "1faeea85cdeb0abe976f65939cd6a27ffd830c313f1e31518022568f9ecf4ad98bb0512fc39ac898a3d83d8d79d72fe44bad09ff80803f07d1dbdd34ef4a3a7d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-osx-x64.tar.gz", - "hash": "69ccc7c686ac06f6c658d118f59cf1a0e7284b4570375dd88d3e3043098e311745922301f2650d159624d09c4d39a1f3cbdd5daee0e408eef915de839e3bce8f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-arm64.exe", - "hash": "5386b13e10eb2a34be3ede870c9da145fb1b9259be8ed83a22a490f1bc829ac90c1671d328dca43d6d923278d9d1342fc69c5fc23d2407e6cc80d362d365d575" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-arm64.zip", - "hash": "d6f5057d5b31521219aa8c0a3e5195eae1892e5281109343c4f5605ef95553bc35471be92e0a68cd26b7d80b2b9c5653ddcedcba2a84d14a3b8f44457073e15f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x64.exe", - "hash": "14c6a264451c48b6f7b0266adc9a0ffe0ebf9b954068531585e503e0c6b7ed4921822fb64de0bca31bf4065cd3ecf1d61bd6aa242c5e930affbdcb2bb6eaaf5d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x64.zip", - "hash": "6836916bc6f3f9f7c183eb49fa1f6130640bcf623f310785466cb36c98f0554d656ec69ce3524f22d1e0d21528796182c7b4f0ed7c66e37cbc0ecbcd9f59bcd5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x86.exe", - "hash": "66b2b126cacde2ac31f66aae091a472ab336b14802bb04c54d70f794ac67392c318644ea393e8dbc8b493dfbc5f0c6ddcdd13dc01f17d900650f32973558a999" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100/dotnet-sdk-5.0.100-win-x86.zip", - "hash": "66bb16f536d7223544c97a33499ab35d35ca0648b80012a9fa7ab13184ac84ecf4b0a2ffa9b2c7829cf525777bca873f62d57989a8c68baa1f0ef327b1b3763c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0", - "version-display": "5.0.0", - "version-aspnetcoremodule": [ - "15.0.20300.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-linux-arm.tar.gz", - "hash": "998b4a4b6f8f945b7521f560b3ca330c1d6e5e7f60d31727389cb1adef45a818846bf083dd8735fc9996eb030ecd1cc93f799ed7ab531ce0d11ef01bcfdde95f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-linux-arm64.tar.gz", - "hash": "13e174de1cf10135531468c2a76852de2c37253f4d8b487ff25d249c2d7a1c590475545ca246515338baff2950422ec6c5ffe2180e8327f25cb5f9fede696ccc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-linux-musl-arm64.tar.gz", - "hash": "fb0703d66b223fed4d9d7d18c943e3a56fe7048b747a98edfce5abbebf37bcbf9e76bba50822704d028ecd004a48d72a1cab9a1ef4f2a99acb3f7fa6480349d9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-linux-musl-x64.tar.gz", - "hash": "1f36800145889f6e8dd823deffce309094d35c646e231fd36fa488c83df76db7b6166eea1d50db0513e0730ca33540cb081f7675ea255135e4e553e7aa5ef2ce" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-linux-x64.tar.gz", - "hash": "402046ee144915ef7d75a788cf19552eea56cf897681721b74bfc403fd366f71eb7e56f6b83ea299b6b812c6b87378c15e7bfe249415427dcd147dfeacd084d0" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-osx-x64.tar.gz", - "hash": "b47a9958f5412b22edb2cb47702ad442c389901ede3ca2a7f75d901f8ed608494431849f498c2191327065ff1db52a1658b1a8c0feb53aaec4c814fb0baf6818" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-win-arm64.zip", - "hash": "4a2b3739dc0b1dd8577cf68aa3d382a52bb9be0470552213b658f3a59d504823d83a903f774a34470220f058cdc3dd068318344a1104950ad5ffc8c0d13cef09" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-win-x64.exe", - "hash": "723ecbb1158d6b2878c1983b48f4dc4e8487b5dac15992ed1fe5bf1ccb5ee2c9332eb8cad8a452d585fdc2b99e38c337e87d03eec9616694f1e6e99825ba455f" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-win-x64.zip", - "hash": "ead6b1e12361261124bb89de1e77dba9469ce00483d963b237ce1e2a17500e420c2bd078c2732e7ce269e23ee3922b880f88ade9c1426c7170045fec1818ece4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-win-x86.exe", - "hash": "594e013abc6fbe96f0d95f6c69be9522da985c8e627166492c39f5db0ffcffb445549ccfd61171ef6e8be374afcb477455ed7b189b91eb9aa6656ac7e0f65da2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/aspnetcore-runtime-5.0.0-win-x86.zip", - "hash": "a36b96c34c0c6a7e47f484a45c9ba02f1e7b44ea7dfed9289d0e37ea4af366bb0a8e0a4dd5a67efab5d1fd01a42d67ece1a001ea7b15b050ef35eea67094df60" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0/dotnet-hosting-5.0.0-win.exe", - "hash": "a887fa32615237d6174f5b8c537c25d2413f928d9f24c0414356b2d0a01bde7ee5874db45e344dbf7c8de4ce1c7034a175c29bfd0ce1f27820412098adc5b64e", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0", - "version-display": "5.0.0", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0/windowsdesktop-runtime-5.0.0-win-x64.exe", - "hash": "243986604ea7ec1332960536e6a534b7755d2bf29a585ca7e5bcd60570ab72c0f8ace0755b0e1a0a5972dc77c28bb3a5f152f8ed84d2acb2fa76c22916ac4376" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0/windowsdesktop-runtime-5.0.0-win-x86.exe", - "hash": "144df140b566aa76b4bbc6259288d832df36935325c90af4cb9c28027f8625bdddd8369b03787d78e7a0502597ed809fbd20411549b4b93b127e88ce94b36e27" - } - ] - } - }, - { - "release-date": "2020-10-13", - "release-version": "5.0.0-rc.2", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-rc.2.md", - "runtime": { - "version": "5.0.0-rc.2.20475.5", - "version-display": "5.0.0-rc.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm.tar.gz", - "hash": "37b0f89157a748bca6c8d7a01f5e8d6438d60208e77b6734d4624ac3c1c29997aa28b7f01a86c5d6e1fb187ab3d61643a655cc6db6bb5cd01df3f6039e91103b" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-linux-arm64.tar.gz", - "hash": "0ea8c2461262f27da9ff83877c9f53ba4bc043d829df1978cfdc6158cc58be678fd84f60935a02ad245d70c6e8fff05bb025cfd35419b3d335291688114c0021" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-arm64.tar.gz", - "hash": "015ed92c4a4766a9a2f0e2fd6d138be1a886d8ecef9b1765a4b3c24767d7326cb00cd3d4aabc04921d65827ce72bfbbf17097ebd2a7b3e3c12b9a8fc95970939" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-linux-musl-x64.tar.gz", - "hash": "2e4baec3c3746210cae4e920046ec6bede9caed1cdf30382295fd1b203bf08e6bee5bee0da3067f0317b31d5d836b6ce63b63fd163d599e71d71fc30f0ef37f1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-linux-x64.tar.gz", - "hash": "945d35b5e375a722fba6ae2986ef70bf1940ea3ccfe16f5e2211250354e2585ca4211589e0d14c127675c46c0e66df28046ce8f820ef7a71c9712c19c3f4c13d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.pkg", - "hash": "cfe08de2fc74e6b429954c215147e412f2ca54b80c7276c987e05eb11fb608c355765477e3d6d2ee728d20151496e5485f3c431ea8d4ecbc7ba03c9aaaaf38d3" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-osx-x64.tar.gz", - "hash": "cd5ae708568ce888d2a846a61aeb07a7ddba3b4eb5325476465c07b6be3853f4f085d46136e43c8eed1591931c3409df3cd4c09b358efafffd7f0c9977d18d90" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.exe", - "hash": "fda592d6d227ed6a823e731546e4ffad9fae198a32e0f70b0830dfc600a572d95902c94f2ee110ff59d4265c04972e977663582b04f4119261c490d4c40ebc3e" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-arm64.zip", - "hash": "3c85c0269ff67374b4fb3e1bdc5cc8ef5b100b4bc440860dc9c279211fb14139c1660fe2f2abdb311107f86ac6196c487b53d78523143dbb900efa23c40b7873" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.exe", - "hash": "2949b61cd69261b736625a7e3772a153f1d6f9e0fac2a10527d39ca77dcee50cd52fa03dd06fd40bc961e3acbee7e4f6038bc222697ff95fd42ca89986a4d889" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-x64.zip", - "hash": "c30f33faacf5c2672339a29337984b7dbf64ba989a19396f9bb1858e5dfc4ce758787cae3c08580f864f30c491721d5a22a6f54ebd89deed1135b44181f901fe" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.exe", - "hash": "fbe2633fadf447850db137bdbd8fd55efb2918314b3f74d1c677b2f096ef4fd2e112931d2b33822807071a55c1dc6ec4ef3f69f5f74c1f911f88db51d776e262" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.2.20475.5/dotnet-runtime-5.0.0-rc.2.20475.5-win-x86.zip", - "hash": "aefde8e640b85a414e4624f81359df451bb7581cbc76098503df8f2ba1795274e16dd6687001f00bf7bf3c8acf01ba206556e5610bfe53513c4b639f9e3416b4" - } - ] - }, - "sdk": { - "version": "5.0.100-rc.2.20479.15", - "version-display": "5.0.100-rc.2", - "runtime-version": "5.0.0-rc.2.20475.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 4)", - "vs-mac-support": "", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm.tar.gz", - "hash": "22e97c15393a4f986563f5e8b031b49983eb55531170b86594d7caab819b41032393a9b3db4ee96cb88fae3971ba243bb64187606e3a00fc64d2e434d906a637" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm64.tar.gz", - "hash": "1aab49b2c328c4de8c40e790df99aa327a3aeba5d904696fa151acbfb7b5620ebf3d1e2e9726895d92b6146295840ffe3f2fb7208a81c7b73d2c92c9fcf50dbf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-musl-x64.tar.gz", - "hash": "1d44838a39810112e0c5b96ae8234e84f805ca4913888c18882ed7c0e291a7677672f593037a2dc94c6ad08c4d869394df72a4d42e0c668337df89327026aba1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-x64.tar.gz", - "hash": "e705043cdec53827695567eed021c76b100d77416f10cc18d4f5d02950f85bf9ccd7e2c22643f00a883e11b253fb8aa098e4dce008008a0796f913496f97e362" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.pkg", - "hash": "53aec8d6486dd9f903ac59b68e711dbfc5eb4ad0250496098e96cbb2dce2a08244b61114faf1feeca6e343dbd510c16438852abbb693cc5a5d4db026bf17b3f9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.tar.gz", - "hash": "05a60dd57a0fc7a4d2cd517aff1c1685665009775a270e1e6ba2f632d24bd3439f026f4e287cbff4c22dd98f7713d8f34d785e3bbb73f6d0e530fd324b8c761d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.exe", - "hash": "fca159e140de6786b7290383356671424e2c15efa7b89b82826cbcb58c499fd3292dcb61f47aac026f57f93bdcd902309681b9aa434f16c3309d80e10ce300d3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.zip", - "hash": "6d1488d2cc4f8bb2a935f5e0ff501bc21210c601d4ca0faac9dd603675b03cd71c20d15fea8ded88ac40b0ca0d3824a9097c98e05a3edebe53ba42b861efd9ee" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.exe", - "hash": "c9668250d1bd1017d1d847e380bd28eaa6b967cc952c1933e8978e9fbeaaf9b9edc24d48cb932296a8c1749999345b07d8167ab1430930732921c896ca2dc27f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.zip", - "hash": "49ea4f9e0fdc51bfd46b1269b84dd09f26be957c3a81c80203a0b0d521c8ec190d0d2d631a4e1899c83b604bf9a529698f19eccdf4aed3d0fd2f89102f6556e1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.exe", - "hash": "fd635f153c6bb4b1a4ed4839f50775dd3f4ec44dc6c3483b9640b1e2ae61c85051d52fcf774d815cb35260b35e11403ba7399520e6eda61442b64c16e4e9715b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.zip", - "hash": "44d25f3c304b50dfabf03b21246432fee397ce51948675e0b66032e5d87d61820134cff353ef05125ececb91f04d0ed8b7b049936adfd7eb6cd975a259bc51cd" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-rc.2.20479.15", - "version-display": "5.0.100-rc.2", - "runtime-version": "5.0.0-rc.2.20475.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 4)", - "vs-mac-support": "", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm.tar.gz", - "hash": "22e97c15393a4f986563f5e8b031b49983eb55531170b86594d7caab819b41032393a9b3db4ee96cb88fae3971ba243bb64187606e3a00fc64d2e434d906a637" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-arm64.tar.gz", - "hash": "1aab49b2c328c4de8c40e790df99aa327a3aeba5d904696fa151acbfb7b5620ebf3d1e2e9726895d92b6146295840ffe3f2fb7208a81c7b73d2c92c9fcf50dbf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-musl-x64.tar.gz", - "hash": "1d44838a39810112e0c5b96ae8234e84f805ca4913888c18882ed7c0e291a7677672f593037a2dc94c6ad08c4d869394df72a4d42e0c668337df89327026aba1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-linux-x64.tar.gz", - "hash": "e705043cdec53827695567eed021c76b100d77416f10cc18d4f5d02950f85bf9ccd7e2c22643f00a883e11b253fb8aa098e4dce008008a0796f913496f97e362" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.pkg", - "hash": "53aec8d6486dd9f903ac59b68e711dbfc5eb4ad0250496098e96cbb2dce2a08244b61114faf1feeca6e343dbd510c16438852abbb693cc5a5d4db026bf17b3f9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-osx-x64.tar.gz", - "hash": "05a60dd57a0fc7a4d2cd517aff1c1685665009775a270e1e6ba2f632d24bd3439f026f4e287cbff4c22dd98f7713d8f34d785e3bbb73f6d0e530fd324b8c761d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.exe", - "hash": "fca159e140de6786b7290383356671424e2c15efa7b89b82826cbcb58c499fd3292dcb61f47aac026f57f93bdcd902309681b9aa434f16c3309d80e10ce300d3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-arm64.zip", - "hash": "6d1488d2cc4f8bb2a935f5e0ff501bc21210c601d4ca0faac9dd603675b03cd71c20d15fea8ded88ac40b0ca0d3824a9097c98e05a3edebe53ba42b861efd9ee" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.exe", - "hash": "c9668250d1bd1017d1d847e380bd28eaa6b967cc952c1933e8978e9fbeaaf9b9edc24d48cb932296a8c1749999345b07d8167ab1430930732921c896ca2dc27f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x64.zip", - "hash": "49ea4f9e0fdc51bfd46b1269b84dd09f26be957c3a81c80203a0b0d521c8ec190d0d2d631a4e1899c83b604bf9a529698f19eccdf4aed3d0fd2f89102f6556e1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.exe", - "hash": "fd635f153c6bb4b1a4ed4839f50775dd3f4ec44dc6c3483b9640b1e2ae61c85051d52fcf774d815cb35260b35e11403ba7399520e6eda61442b64c16e4e9715b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.2.20479.15/dotnet-sdk-5.0.100-rc.2.20479.15-win-x86.zip", - "hash": "44d25f3c304b50dfabf03b21246432fee397ce51948675e0b66032e5d87d61820134cff353ef05125ececb91f04d0ed8b7b049936adfd7eb6cd975a259bc51cd" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-rc.2.20475.17", - "version-display": "5.0.0-rc.2", - "version-aspnetcoremodule": [ - "15.0.20270.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm.tar.gz", - "hash": "4e5b0babd454c321c67844a08111f7fd0fd1b594e61ee4b90b76fe05a51abfc8e0989758cf2b7260469e878f1911da22fd731db66dc65e53bcb74e3f82e35cbb" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-arm64.tar.gz", - "hash": "e3989a514d38efb4635beb745fbe383d89f7043d32272cd7760347a8d662013e1e2fcec6fc8f84c41f3421593c1922730c21829a8dc3b3246277c14fd8454305" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-arm64.tar.gz", - "hash": "5f169b7497baa523cf6f7d1e8605619dc90886d7a9d5672d6226d77a9d003af3827481317c30992a0781972f78de191472a31bf10f58cdc81ee95b0d2b710099" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-musl-x64.tar.gz", - "hash": "35e85d3e822317a96dbba0aa239fe05e4f85e77031e3ba0c1fbd2a0800898bdaf377b800ab2a02510d2c0e0e6c51da1659b5afa919ebd0540fea2e02a8d7fa92" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-linux-x64.tar.gz", - "hash": "d60f0bd6218d00bb86eb0882fe0c823dbfca464d2647c01d0c8f128e9ca430c4d4fae47b3f961ac93115b0343300e58f8c81dec2f6dbe9f36accc5ea28d2cc7b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-osx-x64.tar.gz", - "hash": "18860b6f3f7770373b3c95926a70021b94b785cb41d267e77e55c38e1a107aa7ade99b2d0df0e95c8e7cda552b2bb78cfd2b323eae9780af612a1329a4f4354d" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-arm64.zip", - "hash": "2a89545112a619d9becf621a00bcc5ae32e7ad58fa41414dfbcccab4b58aa4548cd200dfe7f54210cac7e2cb3b589365488fc09a8726ec7ef5fd4f799a833257" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.exe", - "hash": "0fb4c3c92a034340393e8b8296351530a7329b1e7f71673242c4003df75fb47dcce35029a613aac7dcdbea3f6a6a99198731862f94381f8fcdbac5a784e90b8c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x64.zip", - "hash": "0085b9fa0580a3e35e7bed3fbcce313750abed3acc62a2d9a295d4f2fa144434ef5b47e352d43586bb48fe356c4f3eb4eccb0edb8dd3e6f763dbf7e50963ea73" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.exe", - "hash": "7db366209c25b544345d0c65e63118748a739a411ddaa4403a7f192fc667fa0c3c7ce0103f41853c607965bcc8db2246c89d6e6fb0ec64a9beb3d2c1e2a040e7" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/aspnetcore-runtime-5.0.0-rc.2.20475.17-win-x86.zip", - "hash": "503dc312b8c04472d18ac639351b9918f34bc27af968d88edff55c101103c2deccc622d9ddef5af504078e6af85c4b7de8dd83a799902f6726c37a6f3d6ab7a8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.2.20475.17/dotnet-hosting-5.0.0-rc.2.20475.17-win.exe", - "hash": "49ac516fe6fa24bafcfb71be5fe8480d107c474a10bdd5d4da33c5d16e7e22bd42f9757f678ff8c681ccf82e579bcdda2edfd988a01e2c48940b21aaace86d6b", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-rc.2.20475.6", - "version-display": "5.0.0-rc.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.2.20475.6/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-arm64.exe", - "hash": "94c958e7f6d30c032b7b4469f826f3ad77efe2c44ad9cf6aa8edc99dcd7eb860d348001ce4490346284383995b0aef96b66faf31b44fca0b35814bd0e1aae98d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.2.20475.6/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x64.exe", - "hash": "e3f2c851a9793b11b3ce6c8454804111301ff2254268556c9b00610973b4580d2849e85cad91996a3dc98454f9cf63cee035f8c8da1cdbdcc3ee57b7222d3081" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.2.20475.6/windowsdesktop-runtime-5.0.0-rc.2.20475.6-win-x86.exe", - "hash": "9bba9c7fe5e76509df6f6afc985ae4cb5d40fac7338fa12dc56388777bdeef21aaed3f178168025ea56549e55392257f12ac0a1cd4fb13654dc60271f4973844" - } - ] - } - }, - { - "release-date": "2020-09-14", - "release-version": "5.0.0-rc.1", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-rc.1.md", - "runtime": { - "version": "5.0.0-rc.1.20451.14", - "version-display": "5.0.0-rc.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-linux-arm.tar.gz", - "hash": "5aab173d86f267f9a5b2ded5c9990c92c1f60ec512157390752f9f3ed5b64bdbd7ff9180db9398b09c2184bfb8ffb30fb1a54b8934fd81d11c15c53c1a06da7d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-linux-arm64.tar.gz", - "hash": "a03154f8a3e4a21685dc7f0d3d43bcd6bf7d590e67b2f232597cd360cd956261686c90cda0d871b4735fd2bdfee97b6e82828e41807091921c7cbee5f3720fd6" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-linux-musl-arm64.tar.gz", - "hash": "81a1515131785746a92ccb5e592776b408f5c99c89d36828898efbd49b1fc88e56f77213d56b4f49fc69ab0eaa79931ff8f20c44b75be6ef71bf4281f49ac83f" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-linux-musl-x64.tar.gz", - "hash": "a7a393d31e8cc27def0f74ee743de2cdec3f8f8ae27e542c4517815e83dae7f5715f806fb169e8675126023efffbbb28d46cedac2c727b2bd1f8419598d25716" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-linux-x64.tar.gz", - "hash": "c8f6c24029c2d3ef07ea1781a6aac4d51a46aeb33886091df038b76b49830272afe7ac97484e0372e2d3ce2e6c32ba842142f0d1194791922c08445d7ff4cc95" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-osx-x64.pkg", - "hash": "e67deaee44859432274fa71f4b7e99c884729f3e2fab89980f00ca7fb7d0ec1880e6d6ecdfcca29df575caa89540488395e77bd706ce85acace748cdfb6f251e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-osx-x64.tar.gz", - "hash": "c14a1e1e069a346fabf5a247a5b71b9bb5c4ea78c9ae81ae7bc0eed1bf17600d347cfb10c7208e2b05dfd7a7efb2dfe28497058b881758c95f27d863d90bba3a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-arm64.exe", - "hash": "2331ee31fe8d14fddf9fa2822b3959089944e57b3c8a5fee65472c2294f3b42c84d3b2a845b85b0c719ac9d6874d798327b62d6b2a2bea6540cd37efac9edc7b" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-arm64.zip", - "hash": "07dabeec549a7d18ccfc2b2ffab3f4d01427431822ff9ffd322824592c04094ce121613c560389efd546dae028c74c317986239572dcf31de653479f0110f7ff" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-x64.exe", - "hash": "3ac337da864e1cde907484bb6ea26088ce9e1ce63fd3f0034e10f39337d5abf030a8bb2891c59b65695f1802aed3eb9c283ed5dad9e622ba98061e7e7f01ac1e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-x64.zip", - "hash": "7f21e60e173ef609b979550613a3d07ddf0541e59dcf2ac5f20270828142bb84c40ddeaae6177dd69888e8bc4c64642af5a8c3e3e7e037a79c526da2367cd180" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-x86.exe", - "hash": "487F80AD3E8F40950E744965507B4D2913CDA2CA03B0F7C4046410EF2CAFC0D199A17CE1DA66338B14ADEA4550DFEC5EA72A95BB3E2423099A6253AE7D0C2EFE" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-rc.1.20451.14/dotnet-runtime-5.0.0-rc.1.20451.14-win-x86.zip", - "hash": "8d1998a6222e5f570ddeda6bf1955c912b5dd591d69fae1d4cadcb0bf55cbf66958a4e727393bf5aa5a62d0a350cdbd9657fca48abbbd86b9b2dfe43d7740581" - } - ] - }, - "sdk": { - "version": "5.0.100-rc.1.20452.10", - "version-display": "5.0.100-rc.1", - "runtime-version": "5.0.0-rc.1.20451.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 3)", - "vs-mac-support": "", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm.tar.gz", - "hash": "b0e6627497ced9d09fad9c48d266bd4cb94727dc254d8b4a79d445732669c14f5d9592a98c0452cb25ae5eb4f642373f544418e36873b33f0f3dd94f14003e26" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm64.tar.gz", - "hash": "2d04890c71e845d1eb08f5dfbbb9c93024d7a52fb1cc3fd50bd51bc6bd44e455c5c82abc8f04eef23bd012984ae5f86143c600ceb49c4c733935d95d5b68785f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-musl-x64.tar.gz", - "hash": "68481e880bf0d5a46eaa02d6498bbd3b98332afd275f15ef7925effb2b01ea8a89e73b268299eadcb3d64dc3df7095a1fded5d405fee96b9fb1b1b09a5883eb9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-x64.tar.gz", - "hash": "d7e709dacc4bb188c2380060d24bfb5b791240dc33af8499fb4a31e1885a9377dad1d1ebc76847432ea67d5e4ac832a31679dc293e09fa6dade28f5fbbe4db9b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.pkg", - "hash": "44bd8fefaadd3142adf84ca7cf7e7fd34022a65c8f2ca5735794266ff68d9356bc3babbcdf90b8a36ee0b9aeb6ff9cd98791691bded646f07283cd20917981bd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.tar.gz", - "hash": "06bb40273071f3dd1e84ebf58abc7798795d5f1ac298f24bf7109d1597fd52ff31bcbf2b81f86d91d37ae293678d07f8da0469d7cbd318d19a8d718b6629dcac" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-arm64.zip", - "hash": "4a0340155583fafc5f67a761c0858f646dbe1f14c5c43377d1f8e625ec1a182994e4d6f9d831020426ab4aa777d5d854e793c31d3ea0884b2117d9af59f5cf00" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.exe", - "hash": "5631F81D9F06D0199FD32F3C98467DBB4AE59F6160C3EFA6B2BF572509F4178BE50DB9557BA89BD234758F01CF38A26BEF85D24D03E36B0571C47A4394E2EE4F" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.zip", - "hash": "299c1b232ba5a8bdcfd3b890816a3aad806cc22551f6a17554fd3a0220b2168af011431c191e2e33f9dd8a50194cdc207db5dd70708bef45b560af9eb0b20f5e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.exe", - "hash": "6e44fd1ecc91b568f625f85107157ee75d7d9db5a1489e7d18e40be9251ad27ca48345505bd4c0c58c41a9dc67e6b7c9d5bc5e0d46ad8d9ade14adf847c40dc7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.zip", - "hash": "1609b77e47c8237661d2861222a1bbbd9f13f886bf6bfc40fc48e546ba3502ffd2ceebc1a0e03b614c8d744db08bcbf9c7f835f51dbecdb5e862306e913ad66a" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-rc.1.20452.10", - "version-display": "5.0.100-rc.1", - "runtime-version": "5.0.0-rc.1.20451.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 3)", - "vs-mac-support": "", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm.tar.gz", - "hash": "b0e6627497ced9d09fad9c48d266bd4cb94727dc254d8b4a79d445732669c14f5d9592a98c0452cb25ae5eb4f642373f544418e36873b33f0f3dd94f14003e26" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-arm64.tar.gz", - "hash": "2d04890c71e845d1eb08f5dfbbb9c93024d7a52fb1cc3fd50bd51bc6bd44e455c5c82abc8f04eef23bd012984ae5f86143c600ceb49c4c733935d95d5b68785f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-musl-x64.tar.gz", - "hash": "68481e880bf0d5a46eaa02d6498bbd3b98332afd275f15ef7925effb2b01ea8a89e73b268299eadcb3d64dc3df7095a1fded5d405fee96b9fb1b1b09a5883eb9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-linux-x64.tar.gz", - "hash": "d7e709dacc4bb188c2380060d24bfb5b791240dc33af8499fb4a31e1885a9377dad1d1ebc76847432ea67d5e4ac832a31679dc293e09fa6dade28f5fbbe4db9b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.pkg", - "hash": "44bd8fefaadd3142adf84ca7cf7e7fd34022a65c8f2ca5735794266ff68d9356bc3babbcdf90b8a36ee0b9aeb6ff9cd98791691bded646f07283cd20917981bd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-osx-x64.tar.gz", - "hash": "06bb40273071f3dd1e84ebf58abc7798795d5f1ac298f24bf7109d1597fd52ff31bcbf2b81f86d91d37ae293678d07f8da0469d7cbd318d19a8d718b6629dcac" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-arm64.zip", - "hash": "4a0340155583fafc5f67a761c0858f646dbe1f14c5c43377d1f8e625ec1a182994e4d6f9d831020426ab4aa777d5d854e793c31d3ea0884b2117d9af59f5cf00" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.exe", - "hash": "5631F81D9F06D0199FD32F3C98467DBB4AE59F6160C3EFA6B2BF572509F4178BE50DB9557BA89BD234758F01CF38A26BEF85D24D03E36B0571C47A4394E2EE4F" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x64.zip", - "hash": "299c1b232ba5a8bdcfd3b890816a3aad806cc22551f6a17554fd3a0220b2168af011431c191e2e33f9dd8a50194cdc207db5dd70708bef45b560af9eb0b20f5e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.exe", - "hash": "6e44fd1ecc91b568f625f85107157ee75d7d9db5a1489e7d18e40be9251ad27ca48345505bd4c0c58c41a9dc67e6b7c9d5bc5e0d46ad8d9ade14adf847c40dc7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-rc.1.20452.10/dotnet-sdk-5.0.100-rc.1.20452.10-win-x86.zip", - "hash": "1609b77e47c8237661d2861222a1bbbd9f13f886bf6bfc40fc48e546ba3502ffd2ceebc1a0e03b614c8d744db08bcbf9c7f835f51dbecdb5e862306e913ad66a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-rc.1.20451.17", - "version-display": "5.0.0-rc.1", - "version-aspnetcoremodule": [ - "15.0.20246.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-arm.tar.gz", - "hash": "dbbf0e8e9f96f8c9257d829534932416f13f54023d205b4b68eb04ed9a1a02985902631a43f2e45b063590a39b3a54f0f38b72fa66e023845b75614532a27343" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-arm64.tar.gz", - "hash": "0af8b2292f973ff6c2262f1d5bb2a7963a13bbd952528b931eaa1289b7c62625c896889b74885e55bea633f5f310617994c181a9a8f9cf2410a7de7b14ed80a3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-musl-arm64.tar.gz", - "hash": "32a41290a049c891fcc52195be8f4e1f708a3a187ce5f3a811173a1b21433d8acadb7c69c926c4229a55f87598aac1e1ebc9ecf7a4a046c60273bdecbaad17d4" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-musl-x64.tar.gz", - "hash": "963ad9dbaa48e1224d53b7db3d8869de973e2d576368cb87ba95f3fafaa49cf36e1988eecaafe1e0efbd36f2cd3d9d171c39c5205ad93cdcdcf5a7c13860cef9" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-linux-x64.tar.gz", - "hash": "7fd22ab229dd8b17fb086334843ec6c5d2aa5e15bdbc7a101f14426b497edef6e209eba5b103fb54fa56e3d4077589c774cf7ef1796d0b7e209ab39d6688aaf5" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-osx-x64.tar.gz", - "hash": "332c971b19aaca0fefdd3838d297edd4c4982f4a50ed80b87b2dcc0a16bd06d72b522118d0ea94739703c3d1d0692407c8ef1011caef6390718a701122ca35f3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-arm64.zip", - "hash": "df9480a488b2be74331074397da1df02c4e2fcecc71e648263aef867114ddbdfd5dce9d2a6986a188b9faa5d6a266757f2edabc48808d4846fa3d9dfc9efbec6" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x64.exe", - "hash": "6e86df24ac7db8741605c92eecd6e47a618bd41a40cfdd5cefa6f8f4d6b3fbf2a14f820d56cecbe1e0478b3c8dfa482847e88368280a0d3ca9eabe46a8d33d35" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x64.zip", - "hash": "f1c20497158c17541ffe07a4bc203e01ec14da71eaa70d69b184a2c10508ae5dfd2680d84f853c220a11c0ad35ddab6cca97b064e53aea43dd190138b95b57a6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x86.exe", - "hash": "d77506b22f2b035a1d54c5388a11f3e9723cab7a119510047b170519a9c7da4a993681e0c42c40ce036428e1dd6ad76f3e33ea33aeac44784af3a5994a749606" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/aspnetcore-runtime-5.0.0-rc.1.20451.17-win-x86.zip", - "hash": "e577dee573a25ed74380e2aa7e379623f46d6b6ca9cc1cbf45f32ef02a075b1363bb465444edb36e15f0ab54eec2444ddf155c6edb1962ecefde866f2052b8c1" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-rc.1.20451.17/dotnet-hosting-5.0.0-rc.1.20451.17-win.exe", - "hash": "db9850174d4780ea04319eafa219d916abb2ee124241ca756ce9a3937a966d1fbc14122629412973b73e6b5417288cc63dff7030fb7a00334e9b2ec607d70831", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-rc.1.20452.2", - "version-display": "5.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.1.20452.2/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-arm64.exe", - "hash": "ae7d4ba20c42de38d1205a7deae0cb9f659631437eebc0fdce51de9e19d2d8dd32d09190ca64a635892deb4944fd10fcac7b6913a296f52693930b42973ec642" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.1.20452.2/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-x64.exe", - "hash": "7814723aeada9ed2f0c5d1f5df3db2e8c34933d497e0d831fbedd5f58999d64d1d5300e370128e3a302f586538244aafe36646e8285a42bcad808a65e505d0be" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-rc.1.20452.2/windowsdesktop-runtime-5.0.0-rc.1.20452.2-win-x86.exe", - "hash": "e74e8da2cf4d5ead67d43ba2d4ba21828e2694ae70ccd8c0bc02372089e4955f3b6cf129378751691ae52c97116b90ab546227109fd5cff68f00433ade05f259" - } - ] - } - }, - { - "release-date": "2020-08-25", - "release-version": "5.0.0-preview.8", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.8.md", - "runtime": { - "version": "5.0.0-preview.8.20407.11", - "version-display": "5.0.0-preview.8", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-linux-arm.tar.gz", - "hash": "16c5407f377d923b0fd06e116586225bf8ac108d8b81227bc515aecbffd7f780ff89fd05afaa637a2dd77d09992b6dcffc5b91584cde43a441d6d811ac3b1041" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-linux-arm64.tar.gz", - "hash": "cf5becf396e6455358b1e662b722381a9f30125f23736e49f70b39b89d3a2b9c28f9632d2fa871cea6b2762e226dfa88f59b1ee41c9f620ea711a809fb3cd58a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-linux-musl-arm64.tar.gz", - "hash": "81d23a8d00203140356a29509335cf59ef00dc3062c663541c16f0d21db57f845195cc6012265903230ff91d9cd2c745c06e01a5adb77515f3f373d334f2aa27" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-linux-musl-x64.tar.gz", - "hash": "fa301f0809a44f2ba6119ac2e39798ad004ed30bf92d1996ea848f50bf06fc9a18d53eaaf907c89690c763b8ab31cb300ff9bfc6dbf2fe115f77467ef788eb35" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-linux-x64.tar.gz", - "hash": "1b609d1bd928fc2015a7148c340d648f80f0e41d39284ac73a5a9e701425ec2c933958e3d9977e780866654876a7c7b3cb2af9f1ec1a426c6aed8538ab15925c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-osx-x64.pkg", - "hash": "d24e62a88591e82872fe253e84ddea4fdee61c6a48c6bc522e6146fe1164caf1adc18d5aee12b209f39ae909c93e46ab557e94c1d8ee20131e3e690cc49c7a7b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-osx-x64.tar.gz", - "hash": "c5d8c47bd3919c50641a3577a03b6364a620388d1f1e0ac2f1625c416781f13954dcd5db8f6d97b85ae1e9dc9ff16d83e6d9631cb0437f207af406e49ac5d498" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-arm64.zip", - "hash": "04338fb73396688d0ae9c2ebb430a950b9c5410f7901111cda287397f71b0e322d5d20d76a5e2f48c1f49193a668eb67f7e6ec0794f4124977f2f513f0919a3c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-x64.exe", - "hash": "9a5d138b21f2485459c9aa5926698f4019c795cb6ff8b9cf847d00193fd93fb010ee64388ca44052bc02fe1dded722fa3a93f92606b78cf887afe7fd38a8a6f2" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-x64.zip", - "hash": "c88c804428c3e91c825c4c88e2fa8097740bb359cfdca6906f34939dfa6f3111f3a4b4753d5584aeeb4ef4ff127eab62b05a0b758a59813945e18177730d8d80" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-x86.exe", - "hash": "7ebd5ac02a84a4e2523a62ed00a46c2ea4f70f4a9dce791e3b60ccbf9b04cf4f0986e2710af8e8df10dff51f1ad07eb2fb5c5b473dde0de0b604499cf7787b62" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-x86.zip", - "hash": "83a5b1f398031362a5097fd1806d742db3694e2afe6b679aa52e897417403ce523ac9c683bfade23e3093b33b6e7b34104371c400e66eeffe87b8d5e10590665" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.8.20407.11/dotnet-runtime-5.0.0-preview.8.20407.11-win-arm64.exe", - "hash": "4c63c192fcc03fc765e410f292f92d83a09cfe85552a1fd488176c1a06d48d5ceab440da67841d0d7a1d305a4bcc48af7079d82bc76d1af13ae431f3923d9a01" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.8.20417.9", - "version-display": "5.0.100-preview.8", - "runtime-version": "5.0.0-preview.8.20407.11", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 2)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-arm.tar.gz", - "hash": "d6ecc2b9d58deb758a5662b1f2234163375f5893f68a922bbff0764e8848c158867087733d4c1d7f056a9f3141200694c7bb7de5d3b044a89edaefa75e8416d5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-arm64.tar.gz", - "hash": "129e654636f84a23d486efb5064951128af6e691b3a00010a873721c28c9e88220e0f1e20b8c1c4515d36b018fabc1ec88cd496e6793d246c625198571b8b27e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-musl-x64.tar.gz", - "hash": "72f73241456c7dafa11dfa4611461a9d83903c8407f447f0a504da5a518063f5336fcf0efc1ba86f979373ea8eac20c75da5c05e4c992ffb8a5fcdc8f427bc00" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-x64.tar.gz", - "hash": "0d86c9c2663b635154238fe39fbe32b498a75102851017f27152dccd856e9a1ed48ae44cf1a2b19a5388ea3c4c3f8f2c01a35cd978e52d2350c060394b924a94" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-osx-x64.pkg", - "hash": "d62fd95b984693f955882bfe6b86688590e3dd23d8d36d905aae90289a18a9c5ad0e3b406b1494acde1b53319260891f582bf22a96d72baca5921286b5c422a8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-osx-x64.tar.gz", - "hash": "db916df98a5cfd0753554d70cd1e1af2f2e86b4df9e2ca4718c9d4ccd454dd043d233ee38351cd72f8da69da33b92f6c55f98111aaaaeb4b674bd804cb485618" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-arm64.zip", - "hash": "e52d0cb02357c0256cf2a2f17bc49603ee7d779e9ba9ee05aa8b7fc4c92ea56dd1cf7eda297eab7fa1e9dc27bfbb45b47543b4080e133e9b9d3b757f64596d48" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x64.exe", - "hash": "1a28a02904108654adc5a7772347b65394793a9148b780aa358416dfcfdf13b9d2d20cce4bd7f99e9fb7689eeec4938aea20d99d7b7928150ab615860c603cf4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x64.zip", - "hash": "dab0eb2c2aa29fc8d952e155a9f744e48f6155cb2dfbc1240ade40da22c882df299274a770d3d4002a8e22cb17a45b1aa63baa4edd7bfb70d41f8bbeee4a105d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x86.exe", - "hash": "b5976b76057c2dd99839e02e2b40633105503627d85083ec81648b04d2c6813888f2c895d92d29649eb09c983108d314b317664f220d0808d16b2d63cbb7f094" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x86.zip", - "hash": "c7dd10d1ffb8d8edd29e6ca34c1964202ddd8d151be3dd60a13d2d73409b9834ebf923119f43e7d4fcf6ffcb9a3a1149b1c8e2f20b302633d3102b392a8c784c" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.8.20417.9", - "version-display": "5.0.100-preview.8", - "runtime-version": "5.0.0-preview.8.20407.11", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.8, Preview 2)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.8)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-arm.tar.gz", - "hash": "d6ecc2b9d58deb758a5662b1f2234163375f5893f68a922bbff0764e8848c158867087733d4c1d7f056a9f3141200694c7bb7de5d3b044a89edaefa75e8416d5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-arm64.tar.gz", - "hash": "129e654636f84a23d486efb5064951128af6e691b3a00010a873721c28c9e88220e0f1e20b8c1c4515d36b018fabc1ec88cd496e6793d246c625198571b8b27e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-musl-x64.tar.gz", - "hash": "72f73241456c7dafa11dfa4611461a9d83903c8407f447f0a504da5a518063f5336fcf0efc1ba86f979373ea8eac20c75da5c05e4c992ffb8a5fcdc8f427bc00" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-linux-x64.tar.gz", - "hash": "0d86c9c2663b635154238fe39fbe32b498a75102851017f27152dccd856e9a1ed48ae44cf1a2b19a5388ea3c4c3f8f2c01a35cd978e52d2350c060394b924a94" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-osx-x64.pkg", - "hash": "d62fd95b984693f955882bfe6b86688590e3dd23d8d36d905aae90289a18a9c5ad0e3b406b1494acde1b53319260891f582bf22a96d72baca5921286b5c422a8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-osx-x64.tar.gz", - "hash": "db916df98a5cfd0753554d70cd1e1af2f2e86b4df9e2ca4718c9d4ccd454dd043d233ee38351cd72f8da69da33b92f6c55f98111aaaaeb4b674bd804cb485618" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-arm64.zip", - "hash": "e52d0cb02357c0256cf2a2f17bc49603ee7d779e9ba9ee05aa8b7fc4c92ea56dd1cf7eda297eab7fa1e9dc27bfbb45b47543b4080e133e9b9d3b757f64596d48" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x64.exe", - "hash": "1a28a02904108654adc5a7772347b65394793a9148b780aa358416dfcfdf13b9d2d20cce4bd7f99e9fb7689eeec4938aea20d99d7b7928150ab615860c603cf4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x64.zip", - "hash": "dab0eb2c2aa29fc8d952e155a9f744e48f6155cb2dfbc1240ade40da22c882df299274a770d3d4002a8e22cb17a45b1aa63baa4edd7bfb70d41f8bbeee4a105d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x86.exe", - "hash": "b5976b76057c2dd99839e02e2b40633105503627d85083ec81648b04d2c6813888f2c895d92d29649eb09c983108d314b317664f220d0808d16b2d63cbb7f094" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.8.20417.9/dotnet-sdk-5.0.100-preview.8.20417.9-win-x86.zip", - "hash": "c7dd10d1ffb8d8edd29e6ca34c1964202ddd8d151be3dd60a13d2d73409b9834ebf923119f43e7d4fcf6ffcb9a3a1149b1c8e2f20b302633d3102b392a8c784c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.8.20414.8", - "version-display": "5.0.0-preview.8", - "version-aspnetcoremodule": [ - "15.0.20228.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-linux-arm.tar.gz", - "hash": "e64f2a609d34cdd27c402fc4e303c4ce8a6ecd243d9343f3c4dcc76110f17f8c2330b4627c0c2635c677ded8b360f62dfedbb364f2d0d977b318b55f09ef45b8" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-linux-arm64.tar.gz", - "hash": "dc08a7992478d1ab4ac882290bc9877a8ce2f4e67649b856804b4b8e8d702789defd950a57398d0c94682b0f7a813e8dc984f42abb91924bf62410085fa15dee" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-linux-musl-arm64.tar.gz", - "hash": "0ddfe6891b2a9782e3a173bb2bd95126755a62df11af4ddd7aeefc113b53f4373fd33a6d87322fd0ece6a99370e6cf63efe0fede6eeb7e905208d12ff8a6ef04" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-linux-musl-x64.tar.gz", - "hash": "d1d4538373b353063cf3f7eaaea6a5aaada6c0b0fd20bbfdc34c38d0a1d0f4b5dabf559ec2add86aa4617122ec46fbdf8833b1b4e1de8df521b1d77dd484545e" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-linux-x64.tar.gz", - "hash": "c32970cc75f337648c53c32c6c0ff1ef5b025ad3bc58ec23e5e931a4958fc8213fb5d8cb924664dc356aca782cea96066aad93b7f49ecb133ac7c00def01611e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-osx-x64.tar.gz", - "hash": "1fa620a7375da978226cff7a077b8c43031204c819d3eea31cf75a9a96d7563a7d92f52a23b791ed679d97b4d3dbcd7a8d60f33efc42920f93df8da705fce301" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-win-arm64.zip", - "hash": "cfbc630320469eacf506aac019e9fd4a9e6646b14e32b6ccf207556d5cb29d37be240df98ed5b0f9afed975af34ab157a3d4f6cc47421797259586b844fa55bc" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-win-x64.exe", - "hash": "41da533bd2b9b3f5202247de65b5e7917785ade4ec27540aedebe777215af0f3f96d9b858333dd748be6738fcde9d91a925e38f941dc6762ee7afa93785c0ff9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-win-x64.zip", - "hash": "63badf80f0faf78ed6d4667cf832df48961d6b970b01439d029c17dc6391ddd435e11cda4d26abafc2823ed7dce6a5545a7b07d0fabd60fb518208403c3f80a8" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-win-x86.exe", - "hash": "2f97435c0fb5b04e45294c638554a57ac12e1000fd4cb73e502231fc0e309b9c1acec829e796c26b5030489c6f8406666d0a20f857bebaa611b1dd838f8b511b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/aspnetcore-runtime-5.0.0-preview.8.20414.8-win-x86.zip", - "hash": "52a1b25442330b044340d0f554da0fb63035d87f84262d77d63af95918381b4c466124aeb5a255fe34ba2bbd77523366e86892910ba749c51c54674cb2af69da" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.8.20414.8/dotnet-hosting-5.0.0-preview.8.20414.8-win.exe", - "hash": "d6605ed3b498863e8fea05b132870c1840dd66324b6b89ab7b347babb034de10ba87a8adcf0ef2246463f17afbead2de1148fea7aa585581bc844d01f94ee323", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.8.20411.6", - "version-display": "5.0.0-preview.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.8.20411.6/windowsdesktop-runtime-5.0.0-preview.8.20411.6-win-x64.exe", - "hash": "ebf8593f71ac130df9e2f67ee5aa2edc5e347f2fc65f200e1951c72f1f065ec6e69104f207e1d22b96e28afb2bb1ac99ec00860071caf6c1ed2093e7e578b4cb" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.8.20411.6/windowsdesktop-runtime-5.0.0-preview.8.20411.6-win-x86.exe", - "hash": "caf9e40055f0f97d7f90888c8b980b4386fdc4a482ab20a6384fede3c56f9aca88a74aa9ce4d24cdb11b9b0e5c2b0868a12cf58fb74eafe660b33e735420af16" - } - ] - } - }, - { - "release-date": "2020-07-21", - "release-version": "5.0.0-preview.7", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.7.md", - "runtime": { - "version": "5.0.0-preview.7.20364.11", - "version-display": "5.0.0-preview.7", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-linux-arm.tar.gz", - "hash": "1d65f3e708da676c5b9295048af240143c7efdb34dfe616edf50fbcaea3747bb4607afb5af5dfda664a512004ad3c31aeae4c142cda3d06ef51ade1832655bd6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-linux-arm64.tar.gz", - "hash": "ea62c09ce3de2732dc94c3384dc7c6ae580703b671dd2670b53a587603c778ba5d399544d3a5c8cbcaad95f4bdc4cad905776247000265bbc6a6ee647f83a96a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-linux-musl-arm64.tar.gz", - "hash": "813b804b3a88aaee78b887e565b05c34e9c9aa3d2dd99f9265caa10639a3f53c999df0f6e3260ddd8c4784cb9fb8b1f1aa4bd1754978570ffba778108dffd10f" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-linux-musl-x64.tar.gz", - "hash": "8b68b7601ceddbc513272b3c80ba2439046b397e96ffaa07b24efcc5bb32c7854f5a4f851c4f08cc9201167d07f17427e750a51d7392cf2eb9f6e4d0fbbb41b7" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-linux-x64.tar.gz", - "hash": "409802189c72820e67a5b064b8f2997095bc5b0be7a4c6734473c6aa56220ff60c758e4c12d2e99e2cf93cf8510e9bbe66e26e68abbe85085c28c5bc9428e77f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-osx-x64.pkg", - "hash": "5b28d31df77416b44450dd057aed57e1a6d54ab0504c330608c3c305b100f631aa188636757f054154b1a4d30ad74ee0b7bf514fa95c856d8ab438fda6f26dca" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-osx-x64.tar.gz", - "hash": "867d9a30010dc8513427b24d50530a26b87ff68db68054cb01181b4d3c46c27479304cdddb005d75c8a998d5bbc7880a06dfc05a1375793ad474df52a614ca2a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-win-arm64.zip", - "hash": "1dcf95be852426bef33920b6a61052b560a18a229da56e6df8eceec01d41771342ece153d96a07a59cc64f88b566dc4879eab8cb136fcac79f56ba14b8f63960" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-win-x64.exe", - "hash": "b849e082dbf15ec0c5058e1a2fff96ad825ad60fa35f5fc1c263f63968f739d047e59742086f7c63d3fb83fe56681820cc99689237f13b49d4168b5ed103406d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-win-x64.zip", - "hash": "f4769be164dd465b957db9308a5478f5089f8d8736b08940ce9a09c5adcf03734ad5ba8dace9b5ca85604665afa0c20c5563a7ed5fc97bcc7c18971206bbe4c7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-win-x86.exe", - "hash": "60c5f049bb444a1f364f03d6d166bbc5a8fe47cfad44bb48b5861c473dc78a9d03ccdcd3fd8b31971a86217d8182b12b094949f2dfe876bd2b087b94cde3e1e1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.7.20364.11/dotnet-runtime-5.0.0-preview.7.20364.11-win-x86.zip", - "hash": "963a1728dd579104272d2b0b5bb906fa5252a4c11861cea676c9306661d9a27ec25709a8d8d714bbe0806f344725aa5c9d51dc00dd2d9d8b854a7902e9d52568" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.7.20366.6", - "version-display": "5.0.100-preview.7", - "runtime-version": "5.0.0-preview.7.20364.11", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.7, Preview 1)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.7 preview)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-arm.tar.gz", - "hash": "2e473ba7d2ed706313a02438da2b338fa91785cbbd68d1c15268641b3d547b7183e9f5be02df8f6d2af537e02280dae94cee63a4d3dd42bfbfb3cb4ce5fade59" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-arm64.tar.gz", - "hash": "34cc65a879c8dedf854e0bb5b8b3f415c7db1ea9281a868516b6c0fdbb6d356dbd41ca258c10aec0c33339a5bc3be6cdf4e4d96099b6e3f73abb841e9c8d2dae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-musl-x64.tar.gz", - "hash": "5dc8a07ed8964ed88588b7310ecaeb75be711604334ce6d06b6a6400a28780cbb92264a5022a7acf4b6dbf18c08110a263309dd3adfef3dd1aa20eebbe9ac959" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-x64.tar.gz", - "hash": "a1369d4e9e6281a3656acf6ba8357fbb9b25824fa63b42b55700f4d7ab58b2dc355b91c356a13c7d76da92e30dd3a5ccefd1d3396eacc1ac62cbae608b5eed86" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-osx-x64.pkg", - "hash": "fbfaf8900fa35e4656a92981a2d14a578756a2b6fc6ec747d4460be316c6fe07efffeb1f842126b37111404a70f2c43aa516f97494a66b49801710553a62c917" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-osx-x64.tar.gz", - "hash": "eed62702c03a3011ccb534f75d4986d09948cf64d601c083759e6770f549cf159bb9adff9c34865e1caa15179f484d22772a4ca79c591823b1ac26025472bf35" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-arm64.zip", - "hash": "2c4bee81067deabb53f37935096e81483584f3b634a176824366a647ed1271b307a11ff34f3b0b280c7e2e19c12c4d1d3a37d19c87a51611348fbb04f48733ae" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x64.exe", - "hash": "93400774be604fa238d86fbbbd52eb8488eab317085c6864cdc730e9ea572be46691fa633c5f46bcbe8f7245c5ca722fe23e5d43f654c6d7781cdd292cd2af97" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x64.zip", - "hash": "a77458590193d71f4c7f483b765fc16495fbb9a83f79cfb943ce46a67c3e9049eef7da87398d8637a4f547cb57a64857584b2b43009593d24daea9f5af6d31cc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x86.exe", - "hash": "d505ad12efc18d0a09ccb484136f9aeddde06a85caa37822a81aade1bb8f5b42369cdb4dfe67d62c197cc623383f5566f06be89e06ff5e8e4fdd1db96a4a02b3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x86.zip", - "hash": "eba7c98457d91fecdcd303961866033415631f28088ebd3b43e49c2356aab89b77709c144a8c28939d53edeaab8bf26c9681de79e9df7fb73350f4b92529f497" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.7.20366.6", - "version-display": "5.0.100-preview.7", - "runtime-version": "5.0.0-preview.7.20364.11", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.7, Preview 1)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.7 preview)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-arm.tar.gz", - "hash": "2e473ba7d2ed706313a02438da2b338fa91785cbbd68d1c15268641b3d547b7183e9f5be02df8f6d2af537e02280dae94cee63a4d3dd42bfbfb3cb4ce5fade59" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-arm64.tar.gz", - "hash": "34cc65a879c8dedf854e0bb5b8b3f415c7db1ea9281a868516b6c0fdbb6d356dbd41ca258c10aec0c33339a5bc3be6cdf4e4d96099b6e3f73abb841e9c8d2dae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-musl-x64.tar.gz", - "hash": "5dc8a07ed8964ed88588b7310ecaeb75be711604334ce6d06b6a6400a28780cbb92264a5022a7acf4b6dbf18c08110a263309dd3adfef3dd1aa20eebbe9ac959" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-linux-x64.tar.gz", - "hash": "a1369d4e9e6281a3656acf6ba8357fbb9b25824fa63b42b55700f4d7ab58b2dc355b91c356a13c7d76da92e30dd3a5ccefd1d3396eacc1ac62cbae608b5eed86" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-osx-x64.pkg", - "hash": "fbfaf8900fa35e4656a92981a2d14a578756a2b6fc6ec747d4460be316c6fe07efffeb1f842126b37111404a70f2c43aa516f97494a66b49801710553a62c917" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-osx-x64.tar.gz", - "hash": "eed62702c03a3011ccb534f75d4986d09948cf64d601c083759e6770f549cf159bb9adff9c34865e1caa15179f484d22772a4ca79c591823b1ac26025472bf35" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-arm64.zip", - "hash": "2c4bee81067deabb53f37935096e81483584f3b634a176824366a647ed1271b307a11ff34f3b0b280c7e2e19c12c4d1d3a37d19c87a51611348fbb04f48733ae" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x64.exe", - "hash": "93400774be604fa238d86fbbbd52eb8488eab317085c6864cdc730e9ea572be46691fa633c5f46bcbe8f7245c5ca722fe23e5d43f654c6d7781cdd292cd2af97" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x64.zip", - "hash": "a77458590193d71f4c7f483b765fc16495fbb9a83f79cfb943ce46a67c3e9049eef7da87398d8637a4f547cb57a64857584b2b43009593d24daea9f5af6d31cc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x86.exe", - "hash": "d505ad12efc18d0a09ccb484136f9aeddde06a85caa37822a81aade1bb8f5b42369cdb4dfe67d62c197cc623383f5566f06be89e06ff5e8e4fdd1db96a4a02b3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.7.20366.6/dotnet-sdk-5.0.100-preview.7.20366.6-win-x86.zip", - "hash": "eba7c98457d91fecdcd303961866033415631f28088ebd3b43e49c2356aab89b77709c144a8c28939d53edeaab8bf26c9681de79e9df7fb73350f4b92529f497" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.7.20365.19", - "version-display": "5.0.0-preview.7", - "version-aspnetcoremodule": [ - "15.0.20198.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-linux-arm.tar.gz", - "hash": "22862455eeb0061c2f7e2e976149be3f5e037128f226e0f1e080b5c75af84a45549e201dddc17a226994b460b8c243d401e0351f8bd7e5b48a6bd74c220b1c42" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-linux-arm64.tar.gz", - "hash": "8b153075d62e3cbeb0878f4af0dee2e8fd76888a17ff02ece60b98905c69f057236e8c9aa6e99d512f2e256513e111ecb1acbbf42d48c949e21c60d744812694" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-linux-musl-arm64.tar.gz", - "hash": "733d5ed7fd90eca31a85980dc64d1298a89d17157323b7eacc79e0e83592235de68b083ce03cf280608233fc3a5b6a27e8d52516ae543bf29d2d0258a3e156f9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-linux-musl-x64.tar.gz", - "hash": "ff63042916c597820fa93eac34a6c0d889b9498aae554067010a94af367b8291f59fcd0832227274bb864209de486ba1cff87967388147b6f9433be1b5ce0953" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-linux-x64.tar.gz", - "hash": "6a6bbe7848e835b6dbfc183eb30dad2f88aed5b7a4509584b5309bab5ef6f6f0b5fc4b09d7b557ca4e30b31a93a6583dbe904c185772b8bff58d3d4d7134053e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-osx-x64.tar.gz", - "hash": "12f41424c67b0fa557a214a6a21de6aedee8734b9a622ccc83c2093dce16dc1e7919242ec60ced50aa3695bc2330623ccf41c813426f04d742aec89ecd4012fe" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-win-arm64.zip", - "hash": "e0bc8c07fcdca781ba6bf6783b4d6db5151883bc3be11a3fddaaa8a7a752732c04cf938c8a36a494cb7b0c9c517755eb350b36bee2671d8d8045ea8925a2c0b6" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-win-x64.exe", - "hash": "27795c11defee0ec1d3ca531e05a42e0369f8129cdbc9965c2f2f9dfd0173f58260b88a812677917f656395f2170541e7d6dc9ee99fb0d84126c9e1da9299d50" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-win-x64.zip", - "hash": "2d50901aa5329a00ed339b8bd683a0bfdf115bb6f9bc3b29f408e72c99a27c530812939e37ec467eb5f7756be6153bb314a9e13e10788dcb4d3a3b1377a1a73c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-win-x86.exe", - "hash": "dfbad08ed65fe4c9b6c098c4455b88ad12e6cf3cab242b4fef0d6f07c09f007385b51ef37741ff6e4c2a21e23503629641c30485cfb52fe2c29c957e83f17bcd" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/aspnetcore-runtime-5.0.0-preview.7.20365.19-win-x86.zip", - "hash": "49d153656f367287b2763b74782fbec96a4391da067a6533d44b3ff204aec76cda3b723ce847af3be8f9be1f61b84e06a70ca8f5dc663f0c36b3380f703d223a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.7.20365.19/dotnet-hosting-5.0.0-preview.7.20365.19-win.exe", - "hash": "8ab6111bf8e4905189ea69a72bd295e1fa6a14627d213f88f35885e71022d336ca544c4bffaf8c0a954b6240b8a9e61483e24294553477b13c112c4a5aafe71a", - "akams": "https://aka.ms/dotnetcore-5-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.7.20366.1", - "version-display": "5.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.7.20366.1/windowsdesktop-runtime-5.0.0-preview.7.20366.1-win-x64.exe", - "hash": "31bb3a26fed1ff39afc5308a52350bfb3a1bdb5d3a8cac33628ccbd8dd22291b193fcde79a76d8cd3bf69f4e58b3e53716b63fd8434b8ecfeb0e7d7ca3e3bbb3" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.7.20366.1/windowsdesktop-runtime-5.0.0-preview.7.20366.1-win-x86.exe", - "hash": "cc464d76b8922ba8f8e5e97475f05b01123952e8410d3f8a7a417c5bc35cfbf60e984a760e8687dc72f40fe545ed24bc6e346bb7a9cd144393022f8de2e71dea" - } - ] - } - }, - { - "release-date": "2020-06-25", - "release-version": "5.0.0-preview.6", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.6.md", - "runtime": { - "version": "5.0.0-preview.6.20305.6", - "version-display": "5.0.0-preview.6", - "vs-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-linux-arm.tar.gz", - "hash": "7e9a70a13ccd56d282e336beb57e7714c4cc8dadf88cdc77c15be91eb3a24c10742651f07960aacd1ff84402120f7e75652403b2e00db2c5011634a30fcf5811" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-linux-arm64.tar.gz", - "hash": "0890f5e1f54d38a8e4cd99637eb9155da663ae4b466bf56fc36bb9100c688201d814547400859614e41c4946ff05e789a87575ecbe1f15e63b578c8ef4d765ce" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-linux-musl-arm64.tar.gz", - "hash": "0db9e2b02d42557854d080dad21f027e2967ee2fd0c6a368952526e6b8af1c3f1768d99a642802166201b40ab084a4040588993b6231d65b6edba8e068ae9f72" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-linux-musl-x64.tar.gz", - "hash": "416eeebfd90d66f68cb6e68842b3b89c080adf4a4773d3af822d1cdc4469c3e3f3ff1171bbcbfec0e4e1ca1f2357fa694fff97770bc72893cf375cf9c564e1bc" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-linux-x64.tar.gz", - "hash": "355a0a3e02970a5ecd2bfa06f4690ed8f7ee23bf5544470787c79c80ec5ff7d3a0296fed06d311d2b970fe00db0345856b5cea4e8e0cc3abfab8f2e89d0755e6" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-osx-x64.pkg", - "hash": "00f3beb35aab5b81bf9b72d0a96e15f8dc40afa1c34fd49fb8ab288d888799f818f332352eede62585122d3386b71d548456b1c6aad13d6217f8f57414cb9fe7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-osx-x64.tar.gz", - "hash": "1c2b545904528872ee0b8012903b7a42e8980de4296a72f102a2cf696ca6c79acd5710f81d919c81c7fa9dbb5e3f23b2989c4c7799414be39a3a09a5e9fe5534" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-win-arm64.zip", - "hash": "136a875a809d6d7bb54ae6b215ca96b6059504e9bd0cba0f29f8e1b660b52624d6c8ac77cf483131070039d6239b41614bdbd43aa591cd7e62ef209a63d5a76a" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-win-x64.exe", - "hash": "6821be7a59b0d21521a33ca3841a4132ee1f471c779ed353ef766c340818140156befd636a4a15fc76ac5aa0436697c251cf2a97db3dab07172947784d53a683" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-win-x64.zip", - "hash": "eb7b8db4de0149ef14e367e7c8fc92f160be5aabf5380280b6b663afeec993595b674ccd4ece5032dd0187587cb97a1a39cc0d0b1284e913c537ad23aebe1ac7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-win-x86.exe", - "hash": "6053d306567d3c5098194375628d2613e304a0cb09e50d20d19345a05106cd98f20353717ec0f68d44034df8abee8ebdc0c1bc15d6feb3a47184352d206c52da" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.6.20305.6/dotnet-runtime-5.0.0-preview.6.20305.6-win-x86.zip", - "hash": "ae3bff284b855735a7589402d6c3931bc9a2d236a3fdcd717a0406b3d8e3a8dd5601983c205b99fc72e496def942f26ae89cb8bab57cf5ddc6cce699c2b71f3a" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.6.20318.15", - "version-display": "5.0.100-preview.6", - "runtime-version": "5.0.0-preview.6.20305.6", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-arm.tar.gz", - "hash": "1dd5c4f90d43983f1b6ccfa7631fd70afe99b26c1111d191dccb860bcfa232052c3589147f730b583b3f498bcd1116a131fae462267b68a00c10d7e7d832e65f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-arm64.tar.gz", - "hash": "2a1039c4a94abd33949176407edee84dbd54053b56c7e2d8b69e7cf28e16f89013036cf662403ea8f2ea593b9b1b702e464762d9670da12507d1c1e06a58c04f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-musl-x64.tar.gz", - "hash": "e0c5283cd1758f921e25f4653c8c8a3076dd83602c8f036b347450695717ad3c071222b2467df27b8854c55e555f4ed095f9dc072d595caf6fe7b4abde6332d5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-x64.tar.gz", - "hash": "ae68221770e8f199880f00a29d72c624aaedc0c3ca61a7b543a6555acf27eca4c0c24fbd4eddc1322d7dcb4f342325b1d1521c590556bd95c3c2ec653b914dbb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-osx-x64.pkg", - "hash": "7c3f50b2b7fac2c41fe5074d706d67ee6e8edaa3eb464425ea884add51d92ae82f1a2571ff41ce3114abcdb91ebaa3df893bbf4f9ce2d666bb8a9577551004f5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-osx-x64.tar.gz", - "hash": "03bf06a62c040840825455abe6a94ee6833bc19fe8fb7a38012638a6d7e12dd2b0f0a5efb761c84152cbb09dd659821d2897153918a2dd3ed9d1b07de437e719" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-arm64.zip", - "hash": "8c0ec61a02daf5ad04b8286b50e90280b45179115400d2375b909d9241d857bcb73aeb929a5a9f42f6981de40252608a980e5118bdd7627686026653f891efea" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x64.exe", - "hash": "cc112b2d93337f70e490861c9f0325d55fea51867b1b53d0157778ec61e776e7dad99a929724aec2d35d809b2c4f80c47e4783150fd6f522dedebddbea71a9db" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x64.zip", - "hash": "46ecc1e10aa9c9296675af55fe93bf003d3984b761e1c1d2af823a24b355ca99e0bce9ceb8856ec29ee1c3dd430c01c0b55901a853a1ef763397eadf9045e01e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x86.exe", - "hash": "ab14ae0af4103083a4794ca514ba6c5e9ef69d110b099b0ef60df9ffec8a8f1bd5aad280138da9cdec36664f03b83804e1c90bc0c4a647731e190cb8847cad4d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x86.zip", - "hash": "231a0fb7b959b8ea90e16fe03806920d6f60dc54eb537698c0acbbd68a30d92bfa1aa31b1c00798d08d2b0b28554907a0f467cda06fa78d398144f2468a596e6" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.6.20318.15", - "version-display": "5.0.100-preview.6", - "runtime-version": "5.0.0-preview.6.20305.6", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-arm.tar.gz", - "hash": "1dd5c4f90d43983f1b6ccfa7631fd70afe99b26c1111d191dccb860bcfa232052c3589147f730b583b3f498bcd1116a131fae462267b68a00c10d7e7d832e65f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-arm64.tar.gz", - "hash": "2a1039c4a94abd33949176407edee84dbd54053b56c7e2d8b69e7cf28e16f89013036cf662403ea8f2ea593b9b1b702e464762d9670da12507d1c1e06a58c04f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-musl-x64.tar.gz", - "hash": "e0c5283cd1758f921e25f4653c8c8a3076dd83602c8f036b347450695717ad3c071222b2467df27b8854c55e555f4ed095f9dc072d595caf6fe7b4abde6332d5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-linux-x64.tar.gz", - "hash": "ae68221770e8f199880f00a29d72c624aaedc0c3ca61a7b543a6555acf27eca4c0c24fbd4eddc1322d7dcb4f342325b1d1521c590556bd95c3c2ec653b914dbb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-osx-x64.pkg", - "hash": "7c3f50b2b7fac2c41fe5074d706d67ee6e8edaa3eb464425ea884add51d92ae82f1a2571ff41ce3114abcdb91ebaa3df893bbf4f9ce2d666bb8a9577551004f5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-osx-x64.tar.gz", - "hash": "03bf06a62c040840825455abe6a94ee6833bc19fe8fb7a38012638a6d7e12dd2b0f0a5efb761c84152cbb09dd659821d2897153918a2dd3ed9d1b07de437e719" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-arm64.zip", - "hash": "8c0ec61a02daf5ad04b8286b50e90280b45179115400d2375b909d9241d857bcb73aeb929a5a9f42f6981de40252608a980e5118bdd7627686026653f891efea" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x64.exe", - "hash": "cc112b2d93337f70e490861c9f0325d55fea51867b1b53d0157778ec61e776e7dad99a929724aec2d35d809b2c4f80c47e4783150fd6f522dedebddbea71a9db" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x64.zip", - "hash": "46ecc1e10aa9c9296675af55fe93bf003d3984b761e1c1d2af823a24b355ca99e0bce9ceb8856ec29ee1c3dd430c01c0b55901a853a1ef763397eadf9045e01e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x86.exe", - "hash": "ab14ae0af4103083a4794ca514ba6c5e9ef69d110b099b0ef60df9ffec8a8f1bd5aad280138da9cdec36664f03b83804e1c90bc0c4a647731e190cb8847cad4d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.6.20318.15/dotnet-sdk-5.0.100-preview.6.20318.15-win-x86.zip", - "hash": "231a0fb7b959b8ea90e16fe03806920d6f60dc54eb537698c0acbbd68a30d92bfa1aa31b1c00798d08d2b0b28554907a0f467cda06fa78d398144f2468a596e6" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.6.20312.15", - "version-display": "5.0.0-preview.6", - "version-aspnetcoremodule": [ - "15.0.20164.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-linux-arm.tar.gz", - "hash": "5243d7e3e68f5d0e4ac334d00405b3a4a81b6700f5897e3a68cc388c42f70ffbfe2bb41c39466c76ad98996591e88190c079c03dbf23704be6144d763020985a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-linux-arm64.tar.gz", - "hash": "8bcee151e9a0d41654fe641e9c949ba053394b345ff8250d591929ffb44e9163e800093d1eadfe810f608f87217e27051ddfb284969db71bb386db9ff8b2389d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-linux-musl-arm64.tar.gz", - "hash": "2fc1bafb3963ee7f0a250f980434d47b81ce7bad41311eda1391c1d72591bb18b3e49f8aca1331fc4ae2a928d840c4b56809579bf835a427ac4a4208e3ce6136" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-linux-musl-x64.tar.gz", - "hash": "157b73945e553947147622382fdacbc0649523c383a3bd5a1c65bfbb026e6fead39ee1260af41f1a8c574be0f87d462f18bca540c594422c1f8b4f09e52b2c93" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-linux-x64.tar.gz", - "hash": "237019e067d89f0b62d68793f17607fd484a2a9e06ab2423bd31d17fc42933f0d3e1112399309c93da243b0943bcd7317b389efcf83e6cda544dab1a82101bbc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-osx-x64.tar.gz", - "hash": "330e12e8c52bd4fe07756a6bc3871a5e8838be736f97a238e26d5d53a74d53069a6c330e475bcc38fa68b44cdd6be585d382d20a817a8823783db4428ee352d2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-win-arm64.zip", - "hash": "b576a35e31503b1b5d1c2e8b01f64bd4047b4ec76cd528ea6b0552be44318c50a4db276767c0e3852e162b6a286222302440cad57ed1599f83ce10181e023222" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-win-x64.exe", - "hash": "41380dcb37876ad7ad4111c872887e67343ad2087072ba634bec4e0544c68c8dd99a2f252530a711fa23cdac00a03528533ad5e305632fe8398df0e518b5a0fd" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-win-x64.zip", - "hash": "d46f3b92142ed50ba9352bf36c100657028c67700f56617f3df5a050ce2015e8156b1739ec67e49c2d4fb425be2e08c7083513a2a950698027af6bd486e181c6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-win-x86.exe", - "hash": "2a75a810a696020a8fc8fd1d8a9d27b53cc3bcfd55fd318925169de8a7db0776032f81d074288d766072beab924108c7f70abec60a054d7bcd77d28591025539" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/aspnetcore-runtime-5.0.0-preview.6.20312.15-win-x86.zip", - "hash": "81b5f72b496b917d1b8977a9cdbf30bb305bd3d6f812e8180a80c20ca66ebbb12251ae549429a76c2a551b65f98b4e88766876ef70e81abc5da1e9113cf36a6c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.6.20312.15/dotnet-hosting-5.0.0-preview.6.20312.15-win.exe", - "hash": "8ca3235e36655127a0193d6c88a8a812c1795c1e254f0b41223759239843b5cd6275d026fc30ed7678bbe50fa4c90d2318e974a57f9e6394861f39d9879e8a09" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.6.20308.1", - "version-display": "5.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.6.20308.1/windowsdesktop-runtime-5.0.0-preview.6.20308.1-win-x64.exe", - "hash": "4328aad877464821319960ad5ec4795ce8c4f8a99be755c0757326a56e25b800fcaadbb255ed5e91cff018f25b89823bd4b424c0112535263dfc5492c95b47ec" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.6.20308.1/windowsdesktop-runtime-5.0.0-preview.6.20308.1-win-x86.exe", - "hash": "a14182c51ea60db77c0428a8b4fa2c8f4c18c48f3d282a67815b3e1929dfd1f5fc9fbf5d191033192a131688fb43988a7d0440fc27518bc1b1f4ad3d2054c7bf" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.6.20305.6", - "files": [] - } - }, - { - "release-date": "2020-06-10", - "release-version": "5.0.0-preview.5", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.5.md", - "runtime": { - "version": "5.0.0-preview.5.20278.1", - "version-display": "5.0.0-preview.5", - "vs-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-linux-arm.tar.gz", - "hash": "fbe871f82c7c61195fae789af415c2efd03dae982e131c10cacd95b744b0f498774b014bcb3523cf52153104fdad81759f84e2e72bcda7eec48e3530ffb03e60" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-linux-arm64.tar.gz", - "hash": "d081750334a49e9ed6b75468d937e02ce247d8a8f0c66505d048174591a35fd433fc0febb0b551dcaf8a823190cd92fb6578c140f0fa4af859c911f622963724" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-linux-musl-arm64.tar.gz", - "hash": "249ea41018c76972c2f3e54dbb515b75721a603435cfa9d1100e32a05c3c832674d110729f63d9cbb44768d8444e4799df1bab407f836eb10cd1b3c554259b9e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-linux-musl-x64.tar.gz", - "hash": "4e1b8147d82045fb58812a90ae9e70810646dde335844be390ac6adb839f1219fd19811d63e345881532a0d27af91e633cc462218ca7a34d429a3731f7b5a686" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-linux-x64.tar.gz", - "hash": "1bed1c8ee4185c0ced69e415dc25a5040eed68d0d6a7c35c6a83fbe1eb3f71e99e8c9b631a34825141163b9fe105b281f6c7d5d39bbcf40f20b9d81fdb7384d5" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-osx-x64.pkg", - "hash": "c4d17cce8804fce39e731bc6a95bbb08bb8a175b6c43bcc2e1bf73c8236b11cfd32cc8ac953a1c15c5f7e15da9013dcd3f25a0996697706316b4ae185ab0a11b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-osx-x64.tar.gz", - "hash": "d672ee9f489a10b33b26626b5959d9dcee8f54079004991615367492eb2c2232299bc3655b1a4f9270b717feffac54466d74a1a8d6e192a367b1e5cfe3a78d1a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-win-arm64.zip", - "hash": "0d8e5f049b5022d3ece6e2d8c244f819ade33bcbd4d251cdbfd97811fd2da271eca32cadea65f3d1ac99ec4b642ce16dae8b089b3869f5cc2e8db958490a43b4" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-win-x64.exe", - "hash": "908cb1b453e4bf7f4f03e088f84ecae0ce20e4903527584a246fea75278b9eba48716bec35beef011718efb8518df1067c6937ac20606e41f206dd914b69610c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-win-x64.zip", - "hash": "6178f4ba6a4bd578eb0a3338621cb26bfb0d92936b1b9af2dbc66d9dd028d1f4e20e58f191eef5e52293b46e3e84a3332a123494bc572822ac68ec05345e8204" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-win-x86.exe", - "hash": "ecf24922e05b7e155356171b7e85393284a840d313e83ec9db52a804555d381afaf97759a9d6a59e2459ff20ef9071dcbfaef483485ba22f6895c53fb11cccbd" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.5.20278.1/dotnet-runtime-5.0.0-preview.5.20278.1-win-x86.zip", - "hash": "3da31d2e6e923b4d56b2920d68a8bb1463e0c733f0309835b6a54c15506be21aff64ecd35e762f9208eb2e001b512e3e32562f6a0dbbecd17a9d82547bc52b50" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.5.20279.10", - "version-display": "5.0.100-preview.5", - "runtime-version": "5.0.0-preview.5.20278.1", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-arm.tar.gz", - "hash": "6256e013e0e1a153671b9ac3afb49db2646d5e9710112626f52f91070e9832fd17c475414387c6d544dadf2b62df342400d7c34ac01e7a1807d53587ac2d0bc8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-arm64.tar.gz", - "hash": "426caa42f586f5213169828c8ee049f10bb8ee0aa1c8961d006396e74c995f0cadc88c9dffeb13f573f3b21bdd9a11279adb0f00bccd20f38da66153b8be43d0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-musl-x64.tar.gz", - "hash": "441ccd3e724599d187363fcc3217e5077efa68218a86b2c7dc24ea776de6618ba9beef3ee2c856e4bffd39aeb4d7257c619af8f8db4ec94cacb2aab35f920b50" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-x64.tar.gz", - "hash": "0ee982dd7b6015d05c04a33ffba77fa9f61863578c5fd7c4b3847043da2fd17c36b2f8535af53f46dee66e9e59a52f5e7c995af7f9a69fbd3abbc524aca5931b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-osx-x64.pkg", - "hash": "cf9f15e8a10fa44988efee31d6a5d610e088555c6116736528682ccbe4ace6791f68751efbfded7c55e1d8202abc77dc1c9a1656a5783b13db9acc95894a615e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-osx-x64.tar.gz", - "hash": "91b693142b8e7551cdb9cfd304cf62ec01dfc6d429fca9635976355528319199c5e072d8b62b2e7341ef449429fbe12ca992b9802725d4ebc7a8139b99203775" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-arm64.zip", - "hash": "007032f39d8e52b1e77a2e0f1a1829d51631ca6b6f1dd25b522dcba8abcc474f87e80d3eb4aa00ef3ae19caa8f13f2cdeac3b2fda2369477ef5efb2a188bedde" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x64.exe", - "hash": "82fdb454f78f659dc43f94cbab034396e10bb1a16ac0101bf9bf473a5e88b3ce441f496a91a89e102deb3b356bd6717128c5a8fb7266896a823f22f95df65083" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x64.zip", - "hash": "086927a537acd60cfe71cfb760d01659c77a7f918f1848b9b5776759043e45d3ead0f394aff6b45cc01f8c0f5f0fc22d0fca5a8ba478b9d514d56547492789be" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x86.exe", - "hash": "87027008020a566c53621c6bc7b67a7ddc6bf621c11b5cbad01c38c4a74958ef904161e35d48b985ab0d5bebdbc792029ef8f62eb8a10b3680ba20c91ca97461" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x86.zip", - "hash": "2a906c071d3c32f9f2be846675dc3a487ea6e9127ca5dc9cbcf35d3f57cfd4817df1b006360c0455bbb6cd2e711296ccf4250733013b0740ca04509186c8e549" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.5.20279.10", - "version-display": "5.0.100-preview.5", - "runtime-version": "5.0.0-preview.5.20278.1", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-arm.tar.gz", - "hash": "6256e013e0e1a153671b9ac3afb49db2646d5e9710112626f52f91070e9832fd17c475414387c6d544dadf2b62df342400d7c34ac01e7a1807d53587ac2d0bc8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-arm64.tar.gz", - "hash": "426caa42f586f5213169828c8ee049f10bb8ee0aa1c8961d006396e74c995f0cadc88c9dffeb13f573f3b21bdd9a11279adb0f00bccd20f38da66153b8be43d0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-musl-x64.tar.gz", - "hash": "441ccd3e724599d187363fcc3217e5077efa68218a86b2c7dc24ea776de6618ba9beef3ee2c856e4bffd39aeb4d7257c619af8f8db4ec94cacb2aab35f920b50" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-linux-x64.tar.gz", - "hash": "0ee982dd7b6015d05c04a33ffba77fa9f61863578c5fd7c4b3847043da2fd17c36b2f8535af53f46dee66e9e59a52f5e7c995af7f9a69fbd3abbc524aca5931b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-osx-x64.pkg", - "hash": "cf9f15e8a10fa44988efee31d6a5d610e088555c6116736528682ccbe4ace6791f68751efbfded7c55e1d8202abc77dc1c9a1656a5783b13db9acc95894a615e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-osx-x64.tar.gz", - "hash": "91b693142b8e7551cdb9cfd304cf62ec01dfc6d429fca9635976355528319199c5e072d8b62b2e7341ef449429fbe12ca992b9802725d4ebc7a8139b99203775" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-arm64.zip", - "hash": "007032f39d8e52b1e77a2e0f1a1829d51631ca6b6f1dd25b522dcba8abcc474f87e80d3eb4aa00ef3ae19caa8f13f2cdeac3b2fda2369477ef5efb2a188bedde" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x64.exe", - "hash": "82fdb454f78f659dc43f94cbab034396e10bb1a16ac0101bf9bf473a5e88b3ce441f496a91a89e102deb3b356bd6717128c5a8fb7266896a823f22f95df65083" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x64.zip", - "hash": "086927a537acd60cfe71cfb760d01659c77a7f918f1848b9b5776759043e45d3ead0f394aff6b45cc01f8c0f5f0fc22d0fca5a8ba478b9d514d56547492789be" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x86.exe", - "hash": "87027008020a566c53621c6bc7b67a7ddc6bf621c11b5cbad01c38c4a74958ef904161e35d48b985ab0d5bebdbc792029ef8f62eb8a10b3680ba20c91ca97461" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.5.20279.10/dotnet-sdk-5.0.100-preview.5.20279.10-win-x86.zip", - "hash": "2a906c071d3c32f9f2be846675dc3a487ea6e9127ca5dc9cbcf35d3f57cfd4817df1b006360c0455bbb6cd2e711296ccf4250733013b0740ca04509186c8e549" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.5.20279.2", - "version-display": "5.0.0-preview.5", - "version-aspnetcoremodule": [ - "15.0.20150.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-linux-arm.tar.gz", - "hash": "bb021d67206f48bfb21151181bed0f1b5455a2216c9e9852b0872f8e13d316bb389aeb3cdbe96023f0623d841f7eec0c12624af6749b431175034a883bfe30b4" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-linux-arm64.tar.gz", - "hash": "68491c16bed5f7fdebc5c806daae3857462b6589cfd2dab0d84f753eefa735a705f72beb1914fe189b40ff274bd658b7c3fefc6ff7c0f9178bdd46e88584c7a6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-linux-musl-arm64.tar.gz", - "hash": "0a25aabc07122423ad034809b2806b9322c4e32f965704cc34e828830ee1e6466d117617c37f9cb350d6fe4b7d6165d6eb2c974161949870274f4246800d9121" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-linux-musl-x64.tar.gz", - "hash": "6377ac079540d502902b4ff621638400411f3411839cf711ac49c0f9be63c9eb408febea6e01ef9a81d2c4700263e5d5e57752226f3be0e7980894e9211e2ec3" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-linux-x64.tar.gz", - "hash": "5f1b1475f27a07b4d1af2c4bb293f53dc517ed33208669f74f468cbb42773cb4cf01649a13bcefa7070532f5881fe2a61709d029c6f00233790a5205a355e9db" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-osx-x64.tar.gz", - "hash": "4e9a7ef33a18ba242c751a289ff67446ec7295bdf32df9670ffd4e4fb7fcdf4fb09318e8ebb0f3afe0743303f240ffddcf979f0f860054b6c7d08626dda37bbf" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-win-arm64.zip", - "hash": "5783850847619a6cbb3a50acf9b2b6df0d9031b6c1a18769ffee44c320953f88e56e78ff5537a37f58ad0108009dff90a79702a463f90e6f2adc304b32e8897f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-win-x64.exe", - "hash": "fd5e74efd0c8ccddce9777f0425656b90b402d6fcf249afe4a0aa22492182819e34583b89d2725bcc682a919efd66b0d32c510a1e20891557dcbbf1f95198aff" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-win-x64.zip", - "hash": "09646e89c04993ee42a5d072e5409fe6f389df41f20df30f6c3074d066725606b3958cc9ce07aaa444d4e3b5880800b69dcbeea2a9112059a8ab0b02b5cdbcd1" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-win-x86.exe", - "hash": "c1afc15206ba8d3db205b8e8f79be31be720424377b4ea223b187f2b813310032906328248479e71d4f7826d9852985e876161d61ff1cc02fb889911674d7a95" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/aspnetcore-runtime-5.0.0-preview.5.20279.2-win-x86.zip", - "hash": "3aa29bc08ab2845e74d56957df90c8daf977a26bd394b75c274e465c4c3a9d678e950e98e444239e85cdeff6aa116242704ea9d45133955d8b53617e9ffe7440" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.5.20279.2/dotnet-hosting-5.0.0-preview.5.20279.2-win.exe", - "hash": "9b8074c8ae9d4ac511d765effddfc61f7f023fe1cad8158ee707c1b3db4e496de329449b95c1d32204986efe19e2d06626907b6848335bd8e9cd21bfa2f3b39c" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.5.20278.3", - "version-display": "5.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.5.20278.3/windowsdesktop-runtime-5.0.0-preview.5.20278.3-win-x64.exe", - "hash": "196cf646072177d62b964bb71c480eef7c25e91658e9a2ac4de885f058ea9068b6d05bcac0383a9f03c7c559838458ef01c3d1ed7309bc0e25127a124f9e8004" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.5.20278.3/windowsdesktop-runtime-5.0.0-preview.5.20278.3-win-x86.exe", - "hash": "83a54b3a503b2d27972fe96d9a4f7185e8857561f65c3b9d1733d015a66cf1651cdf5973d53537ba85b0cf75204e27038159431c94532f9c4db3a4872c05a63e" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.5.20278.1", - "files": [] - } - }, - { - "release-date": "2020-05-19", - "release-version": "5.0.0-preview.4", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.4.md", - "runtime": { - "version": "5.0.0-preview.4.20251.6", - "version-display": "5.0.0-preview.4", - "vs-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-linux-arm.tar.gz", - "hash": "1648b613453cfafb755cfb43bbfe81ad7102f181b3a96e2b4ee3b71065b59271f2a1461a90961d416efa098bae223fde0b56e06d3b44ff60b36c0ea3394080fd" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-linux-arm64.tar.gz", - "hash": "c691e817b72377027936311c7fc8a7a04867ad50fd5189e41caa9222178248d01ad69e8b0fe5e5400815d06c740d9f0ff207e46ad9655dcaa032ee2a2a0c0ec6" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-linux-musl-arm64.tar.gz", - "hash": "9c3a7b23dd4a0967c66807c899e3ebdc703d863f970ad98cb1ff8950f46a20304db5ba05218bd0b965b28cce5b07b2e790c3a8b89b2c787fdf93713ed8949151" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-linux-musl-x64.tar.gz", - "hash": "cdceee3294bbf995b0ff78d6a498be158bcf19d6fb8d8f68d5ec07288e12abad368047298b299e367aa88e00fca796aab70dd3d1ac5b0310f8d1b3ee2476660a" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-linux-x64.tar.gz", - "hash": "7b3e90ccab3abd95bc678551a1778abf8d672978c598974669ba84418adc37d5bf2393a8c194adece7e86998418713e18571953f8ff7bb5780026d8814d882cb" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-osx-x64.pkg", - "hash": "47f022a71c21bd15c21eea4c0a47abb2ed92a117a9c89aa03cd2c7262aef2996102d228e8d0c8e5a7d93beb7cb9205cc8259056e2e402662f72ae2a2447dc0a4" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-osx-x64.tar.gz", - "hash": "a7cff64708e6ac4432c485677650fb6e7805b24088aa448db9ebe0ff2b474e051cef87e6ef2e3ae8d45e84e3db98c082a90de677f9d95f809cc1f7c2b725576d" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-win-arm64.zip", - "hash": "e636004e3970e86478b2986252a50e34a2c32d92d4e5472b214fba4f81bafd929e37354f0e01212a6ba9ffacbf76d6f73429452c4e90f7ce525eb0b3dad2506e" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-win-x64.exe", - "hash": "cbb041821cb1cb8512854f1361a5c662ab1c680ef308ec7d15df7acf15fb540c4c68ef60453bc869661194b618fd27d98c85e03afb981966e0aec299161a24b3" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-win-x64.zip", - "hash": "c666a02299e2aa6f20dd5718c90cea1f496712cb93fc7cc300d2184cdd84509647c60daa48f4db4ef4d2e3ac2718c9c50b5d1d8fc139f89e74f1e87649c03c42" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-win-x86.exe", - "hash": "fc921133a0e8b1f7a24993701f969f32bf9450659cb5c4bbfd5ea828716425887023ed507d938aef52db60e3d8d79cdd85e950e907e5d47c90bfc806a019739e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.4.20251.6/dotnet-runtime-5.0.0-preview.4.20251.6-win-x86.zip", - "hash": "ae6edf9a4b9c3a0d25f1e4445fd5fb5efff5caec602c004392b2e399ded86b1ffa05152efb00d9128bf6b32ee9ec6050dd3f7f325824c48c1f367d758056eb8d" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.4.20258.7", - "version-display": "5.0.100-preview.4", - "runtime-version": "5.0.0-preview.4.20251.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-arm.tar.gz", - "hash": "912f33feb15a00cc7d983e2ed7c42750de013f072e5c6f0162410cca5b2aaadb146bfd09f0f4cc7c90ccaacbc5a5301bc91cfbd964312d3e44d5ff6c944baf64" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-arm64.tar.gz", - "hash": "36e13d6cf4dce12d5f5aa6bf4fa903a2bbe1b816b896ced4ae388514a3ae7a40fdbd918893e7cacfb3f8c8e328995c5c0cce49973785e05568b00aaf6eafe9b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-musl-x64.tar.gz", - "hash": "2da9779628928b896a4285494349fa55efc987633d918d2c136017db6c4179f9ffbce871d1840bacc2c9e06dd54023bfcacd1cc51fbbeb2eaf1ff2cd175a91c6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-x64.tar.gz", - "hash": "d84fc2795ae6128299d318485a5e9ed8717f38aff83cac57ed9baa95785c33db7153e1d44aebfb21ab128f73540d09a5ecd58983345656c33c77c757faa4f624" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-osx-x64.pkg", - "hash": "5db580ebe00145f73f881ce8ddec1263bc926d1a87eec7fd6209aeb18564c2d3ab415d547a2cbe28fd71b630de3877955e813e5011e3cc39050d2e1c039ea30e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-osx-x64.tar.gz", - "hash": "6d2d00d319ad496074aab863bc3156d564872ca46c54bf1b3ed59ed755071c533733a863120da5b533e9bbd5843e276bba6a535e2c7f93a57bb9e858f7fae932" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-arm64.zip", - "hash": "055144b345e3920318477e4eb7e1c14706612beb5dc05bdf97e81ae657a525a769cc364d6671ca3d7803bee67931d120d6e27a6b5960c6e4c227aa4e9f09ee99" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x64.exe", - "hash": "d201ff295c76b41e7a20fef8a79d1a0135d98ee08af472d2e5f565b0163f10a2bf99faccfd27a79ea6e2b0b9089a1aaf4cbb7cf3450975f6ded64b7800ab9a41" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x64.zip", - "hash": "45be2aea1c493c42db6f3a69e36a798e436effc686507a52588030cbc8a39b45445fdea85759f7b7f53ab862b4341da19ef9be1fe0519a4ddac02b2d057a38ed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x86.exe", - "hash": "f56f11baee88e4706e049e31c64007bc7df1d8321c2b05c5a8281e6ca039d60b48422cb3a28463d280c0a458f3f4e2f9c10717dcce26d2e8980a27ecfdbf355a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x86.zip", - "hash": "a64bbd3f0a6197bbc004c1845bc43f02595d5682839202e17146ec040727f920fff9a1f2866f65931bc9d5796f663c01ab3282418d4b72e5c7a217324e5258bb" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.4.20258.7", - "version-display": "5.0.100-preview.4", - "runtime-version": "5.0.0-preview.4.20251.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-arm.tar.gz", - "hash": "912f33feb15a00cc7d983e2ed7c42750de013f072e5c6f0162410cca5b2aaadb146bfd09f0f4cc7c90ccaacbc5a5301bc91cfbd964312d3e44d5ff6c944baf64" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-arm64.tar.gz", - "hash": "36e13d6cf4dce12d5f5aa6bf4fa903a2bbe1b816b896ced4ae388514a3ae7a40fdbd918893e7cacfb3f8c8e328995c5c0cce49973785e05568b00aaf6eafe9b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-musl-x64.tar.gz", - "hash": "2da9779628928b896a4285494349fa55efc987633d918d2c136017db6c4179f9ffbce871d1840bacc2c9e06dd54023bfcacd1cc51fbbeb2eaf1ff2cd175a91c6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-linux-x64.tar.gz", - "hash": "d84fc2795ae6128299d318485a5e9ed8717f38aff83cac57ed9baa95785c33db7153e1d44aebfb21ab128f73540d09a5ecd58983345656c33c77c757faa4f624" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-osx-x64.pkg", - "hash": "5db580ebe00145f73f881ce8ddec1263bc926d1a87eec7fd6209aeb18564c2d3ab415d547a2cbe28fd71b630de3877955e813e5011e3cc39050d2e1c039ea30e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-osx-x64.tar.gz", - "hash": "6d2d00d319ad496074aab863bc3156d564872ca46c54bf1b3ed59ed755071c533733a863120da5b533e9bbd5843e276bba6a535e2c7f93a57bb9e858f7fae932" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-arm64.zip", - "hash": "055144b345e3920318477e4eb7e1c14706612beb5dc05bdf97e81ae657a525a769cc364d6671ca3d7803bee67931d120d6e27a6b5960c6e4c227aa4e9f09ee99" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x64.exe", - "hash": "d201ff295c76b41e7a20fef8a79d1a0135d98ee08af472d2e5f565b0163f10a2bf99faccfd27a79ea6e2b0b9089a1aaf4cbb7cf3450975f6ded64b7800ab9a41" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x64.zip", - "hash": "45be2aea1c493c42db6f3a69e36a798e436effc686507a52588030cbc8a39b45445fdea85759f7b7f53ab862b4341da19ef9be1fe0519a4ddac02b2d057a38ed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x86.exe", - "hash": "f56f11baee88e4706e049e31c64007bc7df1d8321c2b05c5a8281e6ca039d60b48422cb3a28463d280c0a458f3f4e2f9c10717dcce26d2e8980a27ecfdbf355a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.4.20258.7/dotnet-sdk-5.0.100-preview.4.20258.7-win-x86.zip", - "hash": "a64bbd3f0a6197bbc004c1845bc43f02595d5682839202e17146ec040727f920fff9a1f2866f65931bc9d5796f663c01ab3282418d4b72e5c7a217324e5258bb" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.4.20257.10", - "version-display": "5.0.0-preview.4", - "version-aspnetcoremodule": [ - "15.0.20129.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-linux-arm.tar.gz", - "hash": "368b5ed98f8fb6a80142564ff705571f037143036ed36ef95f235fa67c94fb86038e60601ad1d82a0ee32b2c17fbe33e5cddf358124be30f09ffb452830d5654" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-linux-arm64.tar.gz", - "hash": "5cfe08a85af590d05f1a384938f13bb471b07d85a2572b622bff77e004f95366c9f347fe384a682480d7fe1547aabbadcf8d82d16605dfd8cf4688a3e082e676" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-linux-musl-arm64.tar.gz", - "hash": "71fd4f2cc5e3dcd41821be6a82675ce7f3f83637153d438160de51dce48540aec494ee4907f7e48e952bb05db8b746d357308419e6ea9355a3fd430e7dec4708" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-linux-musl-x64.tar.gz", - "hash": "8ca2409c6a44d2ad5949d7107b5855ece12cde95b159f6eaf051f9eb991359fc6c47ec146a100e4169c34f1ee5f98de4b2afadea285ee74748f2cd373b0908cb" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-linux-x64.tar.gz", - "hash": "4e1fcba63e8ed494e29da789a6f737d59769b5be8eca038c070ec1a26ffb6601a14fae53be9e463e45b36957dd3b2e425d02d77c36d8682a93c3e3d9ef2742dc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-osx-x64.tar.gz", - "hash": "55a3c09c2ed29013ed70b25c76f6cf88002a291a6dfb6d0442dd49f6c1ef86ac7667ddebb4907a938722a26daaa6e05f631191857829d39f797ed53ec18f8177" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-win-arm64.zip", - "hash": "3e04855b0d57743aee5980969eceabfd95dda5b4554924cd48a9bb6d67598e4b372588fc582485e082a9aca0dc7a87cba6bf79fab24e923b1f2d8292188b9c9a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-win-x64.exe", - "hash": "e8173192d7a27380b0b8ae1647a07da21c89eaf15a7f2e0ff8389ace9618bb2cfa00a73dee5bdacd0ee77f35eabf51e2d1915d671707442ec45568f3796f4794" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-win-x64.zip", - "hash": "eca3ecb2d6bc2af36a514adb3cf7031c0183a0358d2b4b0092716513faad848d118b619e7f710b90aa0854ffb3b324fe73d4d19f451422a694e8bd4fa95ca480" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-win-x86.exe", - "hash": "356b63ad570bf07f08bcc686badcfdecd5a509b04746ee72e359d5fb76ab697937b59986aedc15636fda17702a1cc22e4829a9c8ca7253ccc4754a7c1ac5a5be" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/aspnetcore-runtime-5.0.0-preview.4.20257.10-win-x86.zip", - "hash": "ea126d6cb4147e70fb5aeb0c6e52cee6e7ca78eef48975e1fdbc0112557235e0ae16845d51981a4ad8c88443c9d773966d5818d9ae9c22ffc0cafc9d5545d70c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.4.20257.10/dotnet-hosting-5.0.0-preview.4.20257.10-win.exe", - "hash": "9241e9020cf06bc70b44677a6c562676649833edf4edc02e359d0229fa8e28f06ad9ee3294434815b385ede7f7846c4d0abf0d52ba1d80c139ea7ea0555b5b27" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.4.20251.1", - "version-display": "5.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.4.20251.1/windowsdesktop-runtime-5.0.0-preview.4.20251.1-win-x64.exe", - "hash": "f720f676df221e74280899e9c58774b97797d91b9dd2bffc9056ce4e8fb14b57026730d350dec03deb4c3755417046aba37800c2943b3a2ac05dd3a3b28510cd" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.4.20251.1/windowsdesktop-runtime-5.0.0-preview.4.20251.1-win-x86.exe", - "hash": "cecef9c570348f31fe66206726b4db444fd71e24f21c65eca749f483bbe8d8c8cb5b2f701306b1db0f6b477821fb3ab3dc93bee3a582ceb2d3d80e561e3f6a42" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.4.20251.6", - "files": [] - } - }, - { - "release-date": "2020-04-23", - "release-version": "5.0.0-preview.3", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.3.md", - "runtime": { - "version": "5.0.0-preview.3.20214.6", - "version-display": "5.0.0-preview.3", - "vs-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm.tar.gz", - "hash": "ebcb583f3900dad27555461a0fe2a871d047004d6feba1026d540d3887b3d9f116533d1f3247d90fa943a9d819e6bc78f084a248574ec33e6d57e2079b18b397" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-linux-arm64.tar.gz", - "hash": "392a9550b50cd01b3a33ff67022dffc6827320a1036a923c513ff87a9a4166c85c4a93fbede1608db43cf3083916268aaf4e782842b7618b99d429ca0762862e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-arm64.tar.gz", - "hash": "91f27c9d67ed88b54f0fe5869222fedd081ed89c227d2fadeebe48228f501b5bf36b98b84b9926eaad6d8a50bd44958e1fc30d0cce3ffb7d3deef6cf7a57e677" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-linux-musl-x64.tar.gz", - "hash": "bd6ff3556e4096842a582511beb216a91b2576c6b6b12ab668e581d610611ec682bf1c00181a330a0117a068883f043b51d54e8f3fe00a0f1bef49df74ac84d3" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-linux-x64.tar.gz", - "hash": "459a5aab9dea6d27e15a55f8fdc4e44e6ed05b20c6d1bd9aba4fbc3b9176ffe79d9ae57b7757401e7c4ed0a11e483c6729b8a25f5af8dd6346dbb0fd025d0f2a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.pkg", - "hash": "5b8bddfb1406974c5ad328f9689b2a692edefb821d743aa3dd5148ee6a53b93f21aae3d6f781a7a593f9ec3db86c746f72dfe5e48d7fb3299bf0cc782bd42a15" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-osx-x64.tar.gz", - "hash": "78a6fa0b9bae717c945e58ae04f30a64d015031f9a474e2dbf23e54625f615d55adf377d334b7fb9f78caaa6cab9a6722d78b66e44faf73878185c3e73864c7b" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-win-arm64.zip", - "hash": "3e50ff8d24154e4140003fbd255f4f746995590bb8b19939025d795a5927e9ce5c9dce11ed51a94f2cb97faaf7724ae11876294c5273087211e3b2952075199d" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.exe", - "hash": "7f9fd0452ef178f6df58e5de619dad7effbfd1985acc4fc6dd718bb26c228dd1df999af2482d80a925fd84e8f22f6f74a38f0d1c801c8417255abd766438d3c8" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-win-x64.zip", - "hash": "d7660d441063e6eb2a289e9953d9102742efc88d1de73ede25cce0df687b02b9db2b89e61423c5fa90902b2d001e1e81b3ebabaad69815049a2641ba7b36b6dd" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.exe", - "hash": "72d90cb5a1317e1a9f939f5341fc396368a99c528074d689cdcb6082a60323663ce59f4840f47c94641ce8184195135ca81f2ee6bcad83b34c601fc3b101f1a9" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.3.20214.6/dotnet-runtime-5.0.0-preview.3.20214.6-win-x86.zip", - "hash": "fdc8c090bf98f481e28d34f0ee0b61400e65f3ec1c1b56fb5d7105e0d500ead7e6afbd34cc0da7682ffcba2c9c5bf2137c9b212543a4688a28de593878924aaa" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.3.20216.6", - "version-display": "5.0.100-preview.3", - "runtime-version": "5.0.0-preview.3.20214.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm.tar.gz", - "hash": "608c204bced8e6c6d315c0e1f418b7c7b9bc794a2c2eb70e1bd55f0ffec5782a1006175f1a50f23e2cd2d004fb22a5bfea61dd7d0f573c2352c71e322163b02b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm64.tar.gz", - "hash": "595ed5608ef0c7ba1cae7298ea540b9c165f135afc7126b46e3263de3753f8da6edd6459b5c4a8ec5edb5b00964c5228a2d070cb9b037106260d5b4a9bf8962b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-musl-x64.tar.gz", - "hash": "4466be190e90ffd85b4dd0a2abc5cacad188ea8f29d7019a2915f98b281a06840a1636f464e6a4a4f871399ca7e1fe00f937cdaa1dd11a27753b606c76c28bdc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-x64.tar.gz", - "hash": "0ee4a4f3eb082dee321ae4fbd61c3d425225dfe3c0947108bbb2df9f3644e0eeebd0fd4db237cf6b06aa56b0a7ca10eb45c481558ffe4e7422e7e7c4f7369804" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.pkg", - "hash": "78cc44d2af20e7278d5cd5dd11ca8cc957c225023555f060e2e54d11a3b5add2c2d9c8012552d45aa27eafcc20c10579fb15180e7c906b1382c583abb4fe2316" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.tar.gz", - "hash": "341462f073f3642291a65fea8e7af98655aababb7b5c6e0574b7d0e16ab38f20f4bf84cbac24120f1bc22df12e426c4dec5d5353a3f69f748d4f68215dcb081b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.exe", - "hash": "ab652850ca80fea4491888c114802fdfd37715805fd297b842dd087828119b17c332adc388c2321de5cb9dd5f091f2fa22ac2c46e76bc33ee0dd377c8a5f1415" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.zip", - "hash": "f9268b2007e5f7df5048b3e9e3f1edd5dc63d5aa3431b497285cf5c5c90dca93dcc247b3b6eef5966671431d0f11419584ff25c4a8c0b9faf210df61bf8553f6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.exe", - "hash": "7f52de73342dae67ac09d362b87087d2dc6de59e6470ab67065ee95da9d97dc8863cee62fa1d425814aa9ea622e16e02a49cb962295fdfa917e26b6846ea4f47" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.zip", - "hash": "bf89fb973a9b37f7ffb6c37ed9ff513bb13f786f7225ab9eaac3ae16a43f90b249881926e1bf020fcdd7db94027586811b21002e374be3fed613424d7e06f328" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.3.20216.6", - "version-display": "5.0.100-preview.3", - "runtime-version": "5.0.0-preview.3.20214.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm.tar.gz", - "hash": "608c204bced8e6c6d315c0e1f418b7c7b9bc794a2c2eb70e1bd55f0ffec5782a1006175f1a50f23e2cd2d004fb22a5bfea61dd7d0f573c2352c71e322163b02b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-arm64.tar.gz", - "hash": "595ed5608ef0c7ba1cae7298ea540b9c165f135afc7126b46e3263de3753f8da6edd6459b5c4a8ec5edb5b00964c5228a2d070cb9b037106260d5b4a9bf8962b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-musl-x64.tar.gz", - "hash": "4466be190e90ffd85b4dd0a2abc5cacad188ea8f29d7019a2915f98b281a06840a1636f464e6a4a4f871399ca7e1fe00f937cdaa1dd11a27753b606c76c28bdc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-linux-x64.tar.gz", - "hash": "0ee4a4f3eb082dee321ae4fbd61c3d425225dfe3c0947108bbb2df9f3644e0eeebd0fd4db237cf6b06aa56b0a7ca10eb45c481558ffe4e7422e7e7c4f7369804" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.pkg", - "hash": "78cc44d2af20e7278d5cd5dd11ca8cc957c225023555f060e2e54d11a3b5add2c2d9c8012552d45aa27eafcc20c10579fb15180e7c906b1382c583abb4fe2316" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-osx-x64.tar.gz", - "hash": "341462f073f3642291a65fea8e7af98655aababb7b5c6e0574b7d0e16ab38f20f4bf84cbac24120f1bc22df12e426c4dec5d5353a3f69f748d4f68215dcb081b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.exe", - "hash": "ab652850ca80fea4491888c114802fdfd37715805fd297b842dd087828119b17c332adc388c2321de5cb9dd5f091f2fa22ac2c46e76bc33ee0dd377c8a5f1415" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x64.zip", - "hash": "f9268b2007e5f7df5048b3e9e3f1edd5dc63d5aa3431b497285cf5c5c90dca93dcc247b3b6eef5966671431d0f11419584ff25c4a8c0b9faf210df61bf8553f6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.exe", - "hash": "7f52de73342dae67ac09d362b87087d2dc6de59e6470ab67065ee95da9d97dc8863cee62fa1d425814aa9ea622e16e02a49cb962295fdfa917e26b6846ea4f47" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.3.20216.6/dotnet-sdk-5.0.100-preview.3.20216.6-win-x86.zip", - "hash": "bf89fb973a9b37f7ffb6c37ed9ff513bb13f786f7225ab9eaac3ae16a43f90b249881926e1bf020fcdd7db94027586811b21002e374be3fed613424d7e06f328" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.3.20215.14", - "version-display": "5.0.0-preview.3", - "version-aspnetcoremodule": [ - "15.0.20077.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm.tar.gz", - "hash": "d81b656b357b16e9a4bfbf095c0641f56fe5276a0ce587ca8b31c4792f8b782aafc57d4cf97837901ff1dca8f6eaad462ba137967a6c2f36d90f277fbf4aa8c2" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-arm64.tar.gz", - "hash": "01e30fc2ee685e1f2bfcff9abd862d353796a25757cdc60598060dc84cbce8b057ba070626f0e96385c0a34d00f9e41861cfd12a782a9ea2a253c32c7bca9d5e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-arm64.tar.gz", - "hash": "35efa93b5dec1184510bcb1ab454770f577c163967933257bfce56be5596633f6873671350819044b737e4fd6f6ff19d5904164f496ad633068a39efe77070d3" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-musl-x64.tar.gz", - "hash": "ff46d723137d1b60717027035ee597ae993bff17a43f88e00fb44e8f271c7267f1e639079cfe03a717b9e42baef84cacfb464b25791165f94573f504d8ce7b89" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-linux-x64.tar.gz", - "hash": "1839e36b03c7c1da497f8ee6f2b484591513742a8aae897281a4be17f22d1d7ca5e9d877e4b90ab6100136564efc41c47287ef9fa071441f7d2e203816e0f1b7" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-osx-x64.tar.gz", - "hash": "d269cb1627a175e6d33486c4f8df8873b9af5a67d8f6794fba7b8bc320338bdd2e29872120e0a86ed5f5de081dc87a025d46c0c0b6393b92ee0ede127b061d5a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.exe", - "hash": "7f99511598257374de2f05c9eb2fc2ebfccee6bf1638408106f0ec15b6e8741ed614948f54ed63178d9c4a96439d5be30605a32effc7da1112fd56216efbaf65" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x64.zip", - "hash": "d26caa3490f4a62921733a28a464f049fa812d94b19332c5c4106ac86b044e28a625ce5d966cdcb5ba3a4929845bb2cbf847f95714e4efa253dbc92d16d55128" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.exe", - "hash": "cfee7eb241919c56db6b099c768b2835274f4a42a866c79f5dc572c228fa0393e6b8bd0cfbe50f37fcc99bef6f65dec49fe49165ce5a1b4f5fc2c90b10fbba33" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/aspnetcore-runtime-5.0.0-preview.3.20215.14-win-x86.zip", - "hash": "1e954e62fe4c64805a5b9b5c3ff1eaf2b5f707b93394da0fcee7f40cdf8425a9457fe8e00336d3eadd060faec5816906fe5df1d333634462659f07a546724af4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.3.20215.14/dotnet-hosting-5.0.0-preview.3.20215.14-win.exe", - "hash": "460832918ab1ecb158f5c756e7c6eda468d0b997ec0467e946c6b64977485ab0470f54297164c6f182348eaac77b3b371382024f06f94bd3b26fd49cea5cd139" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.3.20214.2", - "version-display": "5.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.3.20214.2/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x64.exe", - "hash": "131ceeae5b4b00baa572865c7402dfd5432a865bf493b46db61f196679d14847b64afee73cffeb3a7d19db5d3886921987d6b5080270ec4ff08dc64d29df9a15" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.3.20214.2/windowsdesktop-runtime-5.0.0-preview.3.20214.2-win-x86.exe", - "hash": "6fda214d9d80feec7867fa0d9285400fbc9fde0fc263ab2d00924a4f8386824adfb7be8dd7f6ef17a902a33cb8f68dae1a4486a089d101270eaa09950919653d" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.3.20214.6", - "files": [] - } - }, - { - "release-date": "2020-04-02", - "release-version": "5.0.0-preview.2", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.2.md", - "runtime": { - "version": "5.0.0-preview.2.20160.6", - "version-display": "5.0.0-preview.2", - "vs-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-apphost-pack-5.0.0-preview.2.20160.6-x64.deb", - "hash": "979220a6468bcdae67a0886d1ae8b4492b30d2e24ae3795087214c33bee4c368a58febbda7194fa9fed471f8d74e8b3107062ecedd38138ecf159f9ed31ad17a" - }, - { - "name": "dotnet-apphost-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-apphost-pack-5.0.0-preview.2.20160.6-x64.rpm", - "hash": "14dd10bfb83f20b04306188f86bd75c27c2b39d6f4bf2fe49b2343cfc265c3e71a71757ca2765f79895791d4026cc480f92de938dc127a9fd3224f03060955e4" - }, - { - "name": "dotnet-host-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-host-5.0.0-preview.2.20160.6-x64.deb", - "hash": "8a470a4e0336d563edf447373c40983360f513e5f08b44747c67c851acfb162d5d6c9c427edc67e5c5db3a44f367fc9b64294a8cf115bc9a085b8dd1e6eaf1ad" - }, - { - "name": "dotnet-host-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-host-5.0.0-preview.2.20160.6-x64.rpm", - "hash": "f6aa1db3b7b2ee706aacaef43cc0c4e6872243be7de3afd9bad7774929004c66693dcbcb1b2ccda39f371c20fcc338a2b458a242fe2df195ee1161ce7addc7b1" - }, - { - "name": "dotnet-hostfxr-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-hostfxr-5.0.0-preview.2.20160.6-x64.deb", - "hash": "bf04bdd0fa17a3b197da2360d36cad723898fbacca53fc614b0154a9f60c37a1e314daea1291757d187a4a54dc424fcb223572585d516e0e10d4c337d6f6e9c0" - }, - { - "name": "dotnet-hostfxr-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-hostfxr-5.0.0-preview.2.20160.6-x64.rpm", - "hash": "edcddb1da7aaf6c2f68c0a9a0e3a606080db9c9a51150782050ad1153b049cf4f0aa278041cb8c3c40a3e8c12ccfe7a5aba8365ff1e0f942ea1214ef3128b9e9" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-linux-arm.tar.gz", - "hash": "4c8256f03d3d1185801cb8d58cb456eece964e9d0e87c57ac1ba09316ae0808929f63cb73dc029eb2519ffda7f6204c2c40c154621c2dd02d32164b2860f8080" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-linux-arm64.tar.gz", - "hash": "f06dc6c0166b154d87eaa581691bb8cdbace4c38eed25faf23f21fcad29688d45cc9b6905bf3de9891bcd2ed1ac85e571c799174d480595e6821e7d9ed0fe250" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-linux-musl-arm64.tar.gz", - "hash": "ed87ce53b2b22c8e4b407657546182217905e39d7ee43cf9baa31d9598303e1bebddba1f57f77298c6131e413334b58c62254a0c7c7ce27f622367430b1f69b9" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-linux-musl-x64.tar.gz", - "hash": "f8dcf9f498feffbca4b0649086cffd298cd98189b2950c32dd52b07179b7f33e1acfe14ae59a266502a3518089ca55f224e007628d16194f94be7dc419c1b2b4" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-linux-x64.tar.gz", - "hash": "4454d8cb79f9a14ee9f0aa5c6b91a2d26de8e3748add0396f65f59a78b5c96e8ff2fe5bc0156915a7eebcdcb71bfc3b60d7a5cd66d28b96cc043357c9b07f106" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-osx-x64.pkg", - "hash": "acb3a49ca2f20b320f427951886971ee810cb9e66a1ab525c826dba3fa4defc55ea59547b51855038c9b1f440a856fb99b33c157b64318eed50606fd86d4c0b7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-osx-x64.tar.gz", - "hash": "970d045fc325b1f74d1f092280b320a0c800f8632bdf16cc1f7e29a3145135dc22a2a05709bae2ab3c2ed7e7ecaa18253628fe1bc2b25665fe20fb3c9015f3c0" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-win-arm64.zip", - "hash": "9461a367ea1c550552be08fb09f1eb352793e029bb13073761860ae738b9561d1ed51c2a4892226347a51cc189e6ddd376e09fd27eca973cc5bf8c3a15cd73f7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-win-x64.exe", - "hash": "6d0b38f55014111755982bf71f9cc2d071018e1230279abc3ac2ecebc73ba8d4f7182b97cb35b829cd533fb23d044ab53bc05b04a60e6e480d8e54e826374b3b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-win-x64.zip", - "hash": "db4f24db1e20dbdd0242b8c5730a98612954e28ebc18db655147d80cf4865ecad7ad6a72952750638b4205870ec86eee5a1073fd2f13b98811fc4e8b420f5082" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-win-x86.exe", - "hash": "24373413835460e0c972318b11692b4cbe8e6cb997d108f6ec45d9b0b8af16328ef99e08cbc2b42337c48aee1caeb7461eee06c0c0445ab575b65f89cc2d2d84" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-win-x86.zip", - "hash": "ecb6323acbb0dbe340fd11e1a19b339595c26063b75be3a7cbe2cb5ad8dc15e62526d827e7f9e64a3333a02a6c01f49813bb16950744fe589b4e513a9996d5f0" - }, - { - "name": "dotnet-runtime-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-x64.deb", - "hash": "a927d064084e0081d8603e8d7d934fbd19768e305f0f9f0c589c2b9902001277ee523df4e928a6dca26304f461a965d5fcd9c75456b267a95053473f92af15e2" - }, - { - "name": "dotnet-runtime-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-5.0.0-preview.2.20160.6-x64.rpm", - "hash": "7cec60a908e3dc8af3805a915894ee39c0f2c18fadfd039b6dfa57165c9ba713ba972710396d36c69a4655cd14b9aea148bf60d9c698057f8e50e750a21dbc74" - }, - { - "name": "dotnet-runtime-deps-centos.7-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-centos.7-x64.rpm", - "hash": "f312459b881887b189e6ccc839bae4a29ec2d5f4520f789fae27e51ff2112aa32afb4fe7160c3526b825ac2a07ce691f810655d17b2f85960b865c2b6e54df7c" - }, - { - "name": "dotnet-runtime-deps-fedora.27-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-fedora.27-x64.rpm", - "hash": "4d29ded139c046d7733a530e1a8e995dee65c0b5b1b8dea4aea5e42763ae0a4f5979a96920856ac1e23b2ee008ab216a54f78d2f29b860572d7deca8221ae4fd" - }, - { - "name": "dotnet-runtime-deps-opensuse.42-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-opensuse.42-x64.rpm", - "hash": "c2437ceb83413aebf1505e4018a3077da701159134a2da9b23a77163217178f2e1c8b723ccb416e1ad0bbf81719240331211c031f8ef46e49003b71ddf3be112" - }, - { - "name": "dotnet-runtime-deps-oraclelinux.7-x64.rpm", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-oraclelinux.7-x64.rpm", - "hash": "64a14417e0402796f6242bcab6306b07da015dd9612280cce068e9e78f40035d4a9ec3a74d06cb03a91e476f6c60a55a5baa9ac3a720320b55f9f92723caaf51" - }, - { - "name": "dotnet-runtime-deps-rhel.7-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-rhel.7-x64.rpm", - "hash": "afd2c1b50828c644bc289faf982106a3c753fb46281256f8a4b8d3ef26475838ad3db9870721925117420ef64728fc843e37b8269fa4acb6d133b2eb959f6250" - }, - { - "name": "dotnet-runtime-deps-sles.12-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-sles.12-x64.rpm", - "hash": "8e9109572fe21308f202d8cd338773dd52bef7c8c802e2b2c7fa6a6a9265757045a3f328e58918e8208c44a7b412fb67e77896766dc371f8dc1527355333bfb0" - }, - { - "name": "dotnet-runtime-deps-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-runtime-deps-5.0.0-preview.2.20160.6-x64.deb", - "hash": "1a59f6efe4de5812c421356118215fd82b9d8e75df3d2ae92dcfaf6a824366c25fcd689db0e2fa1d3a2570e77649e3e750a04842a74fc8aead4805f9ee09352b" - }, - { - "name": "dotnet-targeting-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-targeting-pack-5.0.0-preview.2.20160.6-x64.deb", - "hash": "247d7c0da1ce5e82e56965e82cadd03cce22ec32e6a041ec3a261be707718350926389c58b6843a61e08694d8c41c152182593d132ea7632fcd9cb91e4cef267" - }, - { - "name": "dotnet-targeting-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/dotnet-targeting-pack-5.0.0-preview.2.20160.6-x64.rpm", - "hash": "21de82a79f02465896de9b10f487354931f3e9f207599180fe7bbde28516b5b3c0dae040f0028207c37e45848cd3cbbd6f18a1e32362ae5f301cc675cfe33670" - }, - { - "name": "netstandard-targeting-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/netstandard-targeting-pack-2.1.0-preview.2.20160.6-x64.deb", - "hash": "483d0091f151677d5407fdd9fd718a606ba33ed25f895f4b76b45b020e2434b9b4f8a660783b031b022a1d1e6d877c5e8159121915c0e0fd158081afb4d5727f" - }, - { - "name": "netstandard-targeting-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.2.20160.6/netstandard-targeting-pack-2.1.0-preview.2.20160.6-x64.rpm", - "hash": "25374b1deb14bba20d1b97ab557274aa58278957d271c046a7ba41f84a073aa6b7c5bfac5337f7466f3f0b562748fa512a8c56fd8576870bb6ee32fb4a8dc759" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.2.20176.6", - "version-display": "5.0.100-preview.2", - "runtime-version": "5.0.0-preview.2.20160.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-arm.tar.gz", - "hash": "0d11dc0dbaa68278021491ee1327a736e353be6891de48e276283f9ea74ccc171250df170f5981737e9826bd49fdaf80d0808dd7c1c939e3defb2cbdc5dd32db" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-arm64.tar.gz", - "hash": "53cbf213e2e97b909b256d931f061178f26e5647424f144266d4af2e12d6443ef7398207a8f4e6f220c61db9ce49de3dc09d88417288a6a61d9b05e1def6b279" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-musl-x64.tar.gz", - "hash": "83b65c6d95d04213685761cbb36a65c1b4c2a2991deeee421446f8e5956acfd1275243f3bd1ce95726b8564d7d88c6a48aa1f7f728b406a385c41e506fb13d29" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-x64.tar.gz", - "hash": "fface8ff5facdec10d11f8249b426a71cd5bc17aa4e4b1fbe85f4a462e55bdb648a456973a3257f0a700be1aeb0f9bb41639ceca12c2e67d1571e4544ae62bd7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-osx-x64.pkg", - "hash": "895f31e3c46081f66a24704a4483cb76abc2ae2c4c790f134650c02be9aee7477a0e0de2329e36c05b6267bb19260e7e32b5b8b7b7a9be36d9d06972d43db7ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-osx-x64.tar.gz", - "hash": "7359a8ae35265c47a8e893e6b32f13063e4d139ad4a9e89f4e08e01acff2aa92b32d40c19e1b117b5e24e2eda132ea46bfb4a9ad3f409c7b60bc70f9a97a492f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x64.exe", - "hash": "c3f511623b89662a95ce08ba00d0b7f588591eed62fd0c205c4916c8e540fdbfd9dead85da31b50aa085702dc5dbe98f8629f99ff4bcc49a2e115d48b7534d38" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x64.zip", - "hash": "94ec391e19232abc419e4327bbafe9e1f1b363bdda8c280da97f8cdc9f511747d3add76e0fb9909080c554f5acc61ebf7292d84ec5a81acf22d49760bf36ad72" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x86.exe", - "hash": "d9a4241a782913a0e371acf25744e40f16a469e19b80054387c1eef911aceb7d71794910a0e9629d593b0d16371a7d66ea19651701c6ce1d8d1db52f036774d9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x86.zip", - "hash": "0ea68fa63d537252436cd2721a2b0fbb256549b5f0d093536d5aa1692697fb17e62df36a22fd19daa47f8b20bbe1ee85aafb5a8c47298c45ddafe27e56223fc9" - }, - { - "name": "dotnet-sdk-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-x64.deb", - "hash": "d3527bbea25ce0aa6eeab39d997dd8c2fba8a7b0c9b07d8a523205edb4dfaa5bc4c15c018354c4f812a5c26592f3becaca80bbb793d9535ce49a0ae8c2fac832" - }, - { - "name": "dotnet-sdk-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-x64.rpm", - "hash": "31f3ede22c545003bc371806eab559bba5c5d5ab1816a5e9516cc80540be77997094db690ba0493e8b3804c6fe474995d2a5ae343db28961b3e60651fada8350" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.2.20176.6", - "version-display": "5.0.100-preview.2", - "runtime-version": "5.0.0-preview.2.20160.6", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-arm.tar.gz", - "hash": "0d11dc0dbaa68278021491ee1327a736e353be6891de48e276283f9ea74ccc171250df170f5981737e9826bd49fdaf80d0808dd7c1c939e3defb2cbdc5dd32db" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-arm64.tar.gz", - "hash": "53cbf213e2e97b909b256d931f061178f26e5647424f144266d4af2e12d6443ef7398207a8f4e6f220c61db9ce49de3dc09d88417288a6a61d9b05e1def6b279" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-musl-x64.tar.gz", - "hash": "83b65c6d95d04213685761cbb36a65c1b4c2a2991deeee421446f8e5956acfd1275243f3bd1ce95726b8564d7d88c6a48aa1f7f728b406a385c41e506fb13d29" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-linux-x64.tar.gz", - "hash": "fface8ff5facdec10d11f8249b426a71cd5bc17aa4e4b1fbe85f4a462e55bdb648a456973a3257f0a700be1aeb0f9bb41639ceca12c2e67d1571e4544ae62bd7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-osx-x64.pkg", - "hash": "895f31e3c46081f66a24704a4483cb76abc2ae2c4c790f134650c02be9aee7477a0e0de2329e36c05b6267bb19260e7e32b5b8b7b7a9be36d9d06972d43db7ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-osx-x64.tar.gz", - "hash": "7359a8ae35265c47a8e893e6b32f13063e4d139ad4a9e89f4e08e01acff2aa92b32d40c19e1b117b5e24e2eda132ea46bfb4a9ad3f409c7b60bc70f9a97a492f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x64.exe", - "hash": "c3f511623b89662a95ce08ba00d0b7f588591eed62fd0c205c4916c8e540fdbfd9dead85da31b50aa085702dc5dbe98f8629f99ff4bcc49a2e115d48b7534d38" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x64.zip", - "hash": "94ec391e19232abc419e4327bbafe9e1f1b363bdda8c280da97f8cdc9f511747d3add76e0fb9909080c554f5acc61ebf7292d84ec5a81acf22d49760bf36ad72" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x86.exe", - "hash": "d9a4241a782913a0e371acf25744e40f16a469e19b80054387c1eef911aceb7d71794910a0e9629d593b0d16371a7d66ea19651701c6ce1d8d1db52f036774d9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-win-x86.zip", - "hash": "0ea68fa63d537252436cd2721a2b0fbb256549b5f0d093536d5aa1692697fb17e62df36a22fd19daa47f8b20bbe1ee85aafb5a8c47298c45ddafe27e56223fc9" - }, - { - "name": "dotnet-sdk-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-x64.deb", - "hash": "d3527bbea25ce0aa6eeab39d997dd8c2fba8a7b0c9b07d8a523205edb4dfaa5bc4c15c018354c4f812a5c26592f3becaca80bbb793d9535ce49a0ae8c2fac832" - }, - { - "name": "dotnet-sdk-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.2.20176.6/dotnet-sdk-5.0.100-preview.2.20176.6-x64.rpm", - "hash": "31f3ede22c545003bc371806eab559bba5c5d5ab1816a5e9516cc80540be77997094db690ba0493e8b3804c6fe474995d2a5ae343db28961b3e60651fada8350" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.2.20167.3", - "version-display": "5.0.0-preview.2", - "version-aspnetcoremodule": [ - "15.0.20077.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-linux-arm.tar.gz", - "hash": "f3397ddab68b19c0fb479835a98275315250c09ce0e2445d322fa743327bce3fd21580bdd6f480a650d9f0019afdc04df68ff689623fdc6b367589c840ac6c4e" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-linux-arm64.tar.gz", - "hash": "d8c08a4b104b1d9aaf7c88e09c48cc2b17af7fa218c895d6dcbd9bf5c3afd2560ff8d647389ba7d8d5416e178897e128bd14c3f4598e821beb3bb8964dc862e8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-linux-musl-arm64.tar.gz", - "hash": "3d40c20c865dc7a686cad0f30810052387222f5840e81a3b1f352294722335aa44ca29b62106f8161790c7a92f663a934197b5890d641cacc05e886d76f1f7e7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-linux-musl-x64.tar.gz", - "hash": "029ed32f8a7dfdb258438177b7fd40c187830db35b3d973dec296d8948f99d30a74269c45d31876c9b4533b8d7b6af65dea319299bd9a7081c6881cf026274b4" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-linux-x64.tar.gz", - "hash": "c155a94b463020f413b9cc6650219b27c08f331f9d1926966e4c4471b1a3cc79e199fbbd4747e8ad89bd03d66cd90cbc68a5554c54e931ac59f7508810303327" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-osx-x64.tar.gz", - "hash": "774911ba77a3c7868a87ba34784f71f3ff7899d806e1cc1d7e1f5d53bcd7d9031addf75d062efbc5f8a5f38506c09ff8ae17deae191c8b8dfcb708a9b28a4fa1" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-win-x64.exe", - "hash": "ddc7128e48440faced3081367f506d9b85dc26ad2f3b2655ab5059769702762fffd36efe086d3215be21fbd44f8fdb0118776322a0de53ab58ead006b282e426" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-win-x64.zip", - "hash": "559adef282a0f5f70986a27672bc209278791952307cd0442f85cb249ee330ba3998cd4fd57333b057f1cb4149ecd2c1036db09cb8af78d6139ed45665722548" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-win-x86.exe", - "hash": "de1ae921ed53d01eed636cde1894555d077d97299d3736416a4e861216c47ffe90e19bc3634431addd8e8c96b057fe8c79847c4ab6fe862ed96daaa2348c838d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-win-x86.zip", - "hash": "cb9c9a0b15e514fc8c65ef22e56eec4a82b1d95214a997c2d353f6312df6602086968e057a60ac1f5fc18d9bdafa4cad2975cbbc5bed38babe9531f064dcf0d9" - }, - { - "name": "aspnetcore-runtime-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-x64.deb", - "hash": "5f0445df666983228431744dce9919523952fa4ce3a4fddd41bbbfc907202d6d9a39cf52b1f5879b11e0bce9a820a415028757a2ba803e694e90357d04993b2d" - }, - { - "name": "aspnetcore-runtime-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-runtime-5.0.0-preview.2.20167.3-x64.rpm", - "hash": "346303c4384afabf5367b748415721ed9262e3af7b1ed0de62ef453161a69f35a553fd66e38c18e06269172870a799bb9dd1818a9abef9cd0afc06193a9a06ba" - }, - { - "name": "aspnetcore-targeting-pack.deb", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-targeting-pack-5.0.0-preview.2.20167.3.deb", - "hash": "3b1c444f0e0e2adbf4f338c183ddd631d6694c91118de30c2d879ebf1e4b00b8a8a0afb6783c7cc31b3481d5a183a9151234804d6efc88b3b47061d6ecde2ecc" - }, - { - "name": "aspnetcore-targeting-pack.rpm", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/aspnetcore-targeting-pack-5.0.0-preview.2.20167.3.rpm", - "hash": "c6c0c92ec89244ff10daa92e559746f2e3364659c343e318bec64c5dc4f3c4475dd6c67d33e7d0de90c751f9b273484d4703583980c50e0f3f79a9728bf72603" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.2.20167.3/dotnet-hosting-5.0.0-preview.2.20167.3-win.exe", - "hash": "d087a4e6c25608bb384e032cc1cd37bf8ea420fa2f249f5279755cbda9ca6b6c8f3ebb7cb7bd731da8440d758aae2f40ba7a5097da371da1035cb34e66076b8a" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.2.20160.6", - "version-display": "5.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.2.20160.6/windowsdesktop-runtime-5.0.0-preview.2.20160.6-win-x64.exe", - "hash": "1b083768f30518cd63748a026c19d2624324f4438c4c00118d241d2b6bc5236cf0308cb366938dd748d68d3956091ab996fc3267666c71d70827886c7054e4cb" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.2.20160.6/windowsdesktop-runtime-5.0.0-preview.2.20160.6-win-x86.exe", - "hash": "4e16206556e3944899807bfd914962e9422b5916dd794bb67bf11997fbed78525e20337f0029f66f01687b17492d97feb5f93b317c09d12a23fe6a37554184ce" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.2.20160.6", - "files": [] - } - }, - { - "release-date": "2020-03-16", - "release-version": "5.0.0-preview.1", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/5.0/preview/5.0.0-preview.1.md", - "runtime": { - "version": "5.0.0-preview.1.20120.5", - "version-display": "5.0.0-preview.1", - "vs-version": "", - "files": [ - { - "name": "dotnet-apphost-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-apphost-pack-5.0.0-preview.1.20120.5-x64.deb", - "hash": "ed117b0c19b53641c960e16f028c1fa17fadab377ffb7fae6de75b8d23f15ad22f8f5f124093a723cb3a2d7877963b4264a316aa3ca6140feedb4f399050b1a7" - }, - { - "name": "dotnet-apphost-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-apphost-pack-5.0.0-preview.1.20120.5-x64.rpm", - "hash": "6ddc9e4cd7ca7bb78fbb9d88ba28acc978e4a2abf7ac01a82b0ec842c51df63679591cde194e3ea28e1655054248c044c2d6f0e0cdcbfbc85f60586f250c6b12" - }, - { - "name": "dotnet-host-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-host-5.0.0-preview.1.20120.5-x64.deb", - "hash": "350f664500eda05fbd207c3260739291b7ef5aca24f19d9de4d0126d843805de59f6774c75b55727f93f4a4bdda64ae6333c7e41c17a97671f1b2b5e5803492b" - }, - { - "name": "dotnet-host-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-host-5.0.0-preview.1.20120.5-x64.rpm", - "hash": "aafb470c8f29a4db82f8fc36f3a5b840016c6e87e11de12b606127f931328e72a6fb193b6164cf51850bf6206e314dfee6f55f74968f7590ecdf09ff6d0a1c9c" - }, - { - "name": "dotnet-hostfxr-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-hostfxr-5.0.0-preview.1.20120.5-x64.deb", - "hash": "605103f3ed2ae03b4d32d65102e84d3ed363e5ddcaaa72caafd9c08885e1317bc76df499e05fa7ecd29f42e3dc52f307400c045028467a52c7bc786479bd6b2c" - }, - { - "name": "dotnet-hostfxr-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-hostfxr-5.0.0-preview.1.20120.5-x64.rpm", - "hash": "e6592b38ce4cbbe087eb0075990e7b3d9c7ed6aeff5d5164e86b0e6468d4a0c9af3ab67a5b1880354131dbb219c49b8e434fb19ebdec6645a727c9c3c711b2c1" - }, - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-linux-arm.tar.gz", - "hash": "4dac1fee28b385c4e9fb133eb5ab7cf281f72c99d8cae3ba1f1b8b077c9424878da4a6d45cc72a3c09e5a37e1c93ac2f78dcc902838ea9f9875848dca78b74de" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-linux-arm64.tar.gz", - "hash": "bac5b22fc5ad2b633d650fb779e37b29339cbf2a4a764583e58927e95d9ac627f75e532e45ca775ec94859580fb865431abc36efcf7aaf3c11eb373a607e0e05" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-linux-musl-arm64.tar.gz", - "hash": "8329ac14d78f119ab905d8770f52f0ad7b17a8c6a0c880618318aba1106fbdb04a3f7769c76708c5603101c575acfe401df002777b5ca8e4ea7a0e3604cfe05d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-linux-musl-x64.tar.gz", - "hash": "a6dcbfc86a65e1c7fa58155df7255c5bc8387361501dac79827f98c92146194b18872dbf2d6c75402ffb08bf7b8111601733cfb20edc8f1e037e108f5b127042" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-linux-x64.tar.gz", - "hash": "488f96949f8835b99a688a6ff1699702f476bfd12d2aed5063d89ceaff801fd63e77160838ea57ce9b97f0770e29233e271948f69c790ef5daaa84382ab3d2c3" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-osx-x64.pkg", - "hash": "ed395dab0cbc6036cac52d9c4cc269558263bfe86f49cb36971c130960f6374ba8834ba25b5de1a2bd7cf34d94cad56136ee69c486a26c8d9a4b2cfb0c1585a0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-osx-x64.tar.gz", - "hash": "934eed60b76428a8a16cfe4dd46b72e39a0d413a8155072514a409957a099318a38ffbd2c08330d94fb8d5dd0176d502cfa6c3fb0d82e5908aa368b476b988e4" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-win-arm64.zip", - "hash": "18fc835f51f23d090460b197f08b3262386d9b9037cac93440a6311e65ec77558e15a52f7b9e5514ddb2f1808b736bf379fcd5bfa99e424024ba2e103e49554a" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-win-x64.exe", - "hash": "cef89a83d64aa4ff9b17549439686b40527a0b1e019592b83bb46c641060cfe583fb8889b0ae9ea009aead27673082f26776690685f08798f35e9e6363a391d1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-win-x64.zip", - "hash": "6c3afe3b51b85b53a03b448d6fe122a5e7d7da60d904b10040e99a218092e2632ea25bf58b5c9a3cb40151c41ec0fad158ce3487265df4d7eae67e3768408fb8" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-win-x86.exe", - "hash": "09c5ef8a4f4fa7e7437bc870f47f7e2375ff52b57560076b5f41c58205071b3db478c1779baac02a2bd633a28ee3878634da05bc50945145a7a31244e6203782" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-win-x86.zip", - "hash": "09006d52e8d9f95714c3a2a7a8523f08d4bb44ea99a04db2a8432d986c39b871fac79ec8419727410a7814bd21d64f7282595fcc3db1df5262f8de2c9aa0f916" - }, - { - "name": "dotnet-runtime-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-x64.deb", - "hash": "3f5bcd7c487532caca918ff433eaeeacb7339a87019735285b93546d7cbf0d64825007cb8cec9e6d7923f810b886a812238cc4ada2dd77b7768c61b367d423d4" - }, - { - "name": "dotnet-runtime-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-5.0.0-preview.1.20120.5-x64.rpm", - "hash": "49407155f0dc672150464ca20dedc87e6085090426fcc65b57b5f99fd255ad951d5adfeede8868762805ad05a4784c51f4b957fd802cc3544e9c0580e50686b6" - }, - { - "name": "dotnet-runtime-deps-centos.7-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-centos.7-x64.rpm", - "hash": "12950ed76f3f352f4a7b8fc8cef6320e4f0968ee5db0d67a8f57b66ff3ed44a46d92f83856e8e55dbe601136d5c80449dd75636942651848bcaa0bf098639747" - }, - { - "name": "dotnet-runtime-deps-fedora.27-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-fedora.27-x64.rpm", - "hash": "c4eae900802004f63c076abd5d2eef841f19bd04c14983cd9576febde92d9b76a0f4d81d9f6c5aec32e72652a8ff88eecba974e50ed17999073954ca75ac8c6e" - }, - { - "name": "dotnet-runtime-deps-opensuse.42-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-opensuse.42-x64.rpm", - "hash": "20ae5fc88c113047eef5a65bb86ff2f4a663acc2466451de66fa758c66213e89cb15c31bd0b5c33a6f0a51ab766dc94ccdb7275ae6cfad6e615f2790d0c822fd" - }, - { - "name": "dotnet-runtime-deps-oraclelinux.7-x64.rpm", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-oraclelinux.7-x64.rpm", - "hash": "d4343571ebd7cb391c4a87320817880abf70375ce1f3a633c2549253ff891746cf209c13a25f1c8b44f6871a044c248552682f553b3dbf63d95ccd138cb86eac" - }, - { - "name": "dotnet-runtime-deps-rhel.7-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-rhel.7-x64.rpm", - "hash": "4352bd9d2f1154167493c27a16fa6cbbe4b0e0956497951af86c4ed3643502ac811422cd65125add042756b78ab5498120d4bec1d0948e99bdc042a2ef95589f" - }, - { - "name": "dotnet-runtime-deps-sles.12-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-sles.12-x64.rpm", - "hash": "ac5c52035fe0816909dbe82d562e21d87e6a0f29487318cdf72e5399b51d481b999c06514fc5dc8f082d2a808f62d3835ec80e5b7f7b0639b17f10eeaf92a20a" - }, - { - "name": "dotnet-runtime-deps-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-runtime-deps-5.0.0-preview.1.20120.5-x64.deb", - "hash": "cf9934aeae86f9a12003cb577e395ebd11f0d73369f1d964f08ba382de7ab876bdf5af92fc2c28ebae55874bd4785c6fd23607fe68adc639bfac90d37aa44da6" - }, - { - "name": "dotnet-targeting-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-targeting-pack-5.0.0-preview.1.20120.5-x64.deb", - "hash": "cd7225363d24162561e8b14c83f03bfaf1174b7e9c2e2ccb15ef8f2e4ec43208b0314646069a85332313e34b1628cb976d84cdc8fa2b5e9e03a6eddbe1b03401" - }, - { - "name": "dotnet-targeting-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/dotnet-targeting-pack-5.0.0-preview.1.20120.5-x64.rpm", - "hash": "4a429a1397615bdbc420ddbd195b3053c8c171105c92815496394dc43de28c4fb69e0ddb1957c7d973bd8b169c1a424438e1aae5d9ff39f0b197230efabd4eef" - }, - { - "name": "netstandard-targeting-pack-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/netstandard-targeting-pack-2.1.0-preview.1.20120.5-x64.deb", - "hash": "1085b801e774bfc9c286a33c11983738febfcaedf611791f34285de8ded20f9ed7046dade34fc6a0278d55ea6715f93fe8492dad9bcfd2d96cef758466c26cc3" - }, - { - "name": "netstandard-targeting-pack-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/5.0.0-preview.1.20120.5/netstandard-targeting-pack-2.1.0-preview.1.20120.5-x64.rpm", - "hash": "39956a7c90516e58c0a6bb19c69f5b4a1ee510042c92715914922b8ea67fd47b484c202c564cb1490bed59ef2f0d0bf2155f8cc7b140c9793dfebee66836d72f" - } - ] - }, - "sdk": { - "version": "5.0.100-preview.1.20155.7", - "version-display": "5.0.100-preview.1", - "runtime-version": "5.0.0-preview.1.20120.5", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-arm.tar.gz", - "hash": "40752321856230ec4be50b3900909d002d28415e3ee6b499c605c922713b2867a736bbde9337c8a7e4e84260a5216f644c15d1660a74923ee06aae75bc62a54b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-arm64.tar.gz", - "hash": "022a1f8cf19361f5ac1b7e0635864828266abbaf7bd26955c751a004ab9b5176a71567cba902ced0d2d48265ee0d3468af9ec931c6c9f5375f2d5c33ca14a439" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-musl-x64.tar.gz", - "hash": "a346eeda7140c2d674b5a9b1f777d3d4803d340f28466072c5662fcd0c8f002a411f5525845aeefc7e02ada9e22e05fce387f04260f9c3ec2c352a8155553489" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-x64.tar.gz", - "hash": "e768641ef12604400edf4ba25bd7ea7a2e64c69fa447661b478ceff89f3c77c07ec69f3aa05b966400e88caae4f548a7bfc5a0747f511b5a10e88dd616f73b21" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-osx-x64.pkg", - "hash": "b3807b8d3b8780146c801d8ed0bfd878b5bbdae3a6dbf89e4d97f29c2de4ac1b3cb8017e67174221ee8f4cac8a232060bd99e94a614143d4f47682838e227a4a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-osx-x64.tar.gz", - "hash": "243e84d0c1b61bde82c99c603fc2ef78e556850329772a828095bbbaef8f151c90b5474152fca57a25329517a0513dd22f591cccc853cc2525ce1aa10175cb41" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x64.exe", - "hash": "a485ace9750f845f4037d7ac7c8cd3174f8db4eb2a8b7ea690a03be611fe5b0a2b3d37a696f8c38ab829e63af7a829a84aec3dd46a88ef5f993daa4dca1cc2a9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x64.zip", - "hash": "7f3ac46d09df12788061cfe3fd0ef32eaeeb5656e727f20888113d6028f035b2b724f10b9536eb968c4579b65571c7aba01c8b2b1c5b98ef141cfb5f9c063c91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x86.exe", - "hash": "d47dbf9e46075050a10a0e78830ca901fd667a2a4691bf5fe41ebb805cd6298d5f558178bd5aa5ad07ca2b9205fa4077a548f1a9060cf82f4ae5ebb87d5e0aee" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x86.zip", - "hash": "8b2d7269fe8ae3a70b1776d102c4a84e3fc742be12e548577344146ff9d43193c5addeb847ec0e2c87618ca88721f54787e30d55ea9e970417c8c91e6f0db7f2" - }, - { - "name": "dotnet-sdk-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-x64.deb", - "hash": "77f01a7fdddc80cb92521fc73ca618f1631f7c90a5c1d3531f5876836ce0576567bbf31dfa232b88755c46fb230752a393c8344b238c98b7c143654b0d816468" - }, - { - "name": "dotnet-sdk-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-x64.rpm", - "hash": "54dfbaa8b63cbd79b7e64f6f9ee11e9d22f789e600bd69eacdab3e4946e1136056a9e17a71dff9f913ef62c80559a3e15e6eb05c988413f5275ab822ce7442b1" - } - ] - }, - "sdks": [ - { - "version": "5.0.100-preview.1.20155.7", - "version-display": "5.0.100-preview.1", - "runtime-version": "5.0.0-preview.1.20120.5", - "vs-version": "", - "vs-support": "Visual Studio 2019 (v16.6 - latest preview)", - "csharp-version": "8.0", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-arm.tar.gz", - "hash": "40752321856230ec4be50b3900909d002d28415e3ee6b499c605c922713b2867a736bbde9337c8a7e4e84260a5216f644c15d1660a74923ee06aae75bc62a54b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-arm64.tar.gz", - "hash": "022a1f8cf19361f5ac1b7e0635864828266abbaf7bd26955c751a004ab9b5176a71567cba902ced0d2d48265ee0d3468af9ec931c6c9f5375f2d5c33ca14a439" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-musl-x64.tar.gz", - "hash": "a346eeda7140c2d674b5a9b1f777d3d4803d340f28466072c5662fcd0c8f002a411f5525845aeefc7e02ada9e22e05fce387f04260f9c3ec2c352a8155553489" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-linux-x64.tar.gz", - "hash": "e768641ef12604400edf4ba25bd7ea7a2e64c69fa447661b478ceff89f3c77c07ec69f3aa05b966400e88caae4f548a7bfc5a0747f511b5a10e88dd616f73b21" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-osx-x64.pkg", - "hash": "b3807b8d3b8780146c801d8ed0bfd878b5bbdae3a6dbf89e4d97f29c2de4ac1b3cb8017e67174221ee8f4cac8a232060bd99e94a614143d4f47682838e227a4a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-osx-x64.tar.gz", - "hash": "243e84d0c1b61bde82c99c603fc2ef78e556850329772a828095bbbaef8f151c90b5474152fca57a25329517a0513dd22f591cccc853cc2525ce1aa10175cb41" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x64.exe", - "hash": "a485ace9750f845f4037d7ac7c8cd3174f8db4eb2a8b7ea690a03be611fe5b0a2b3d37a696f8c38ab829e63af7a829a84aec3dd46a88ef5f993daa4dca1cc2a9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x64.zip", - "hash": "7f3ac46d09df12788061cfe3fd0ef32eaeeb5656e727f20888113d6028f035b2b724f10b9536eb968c4579b65571c7aba01c8b2b1c5b98ef141cfb5f9c063c91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x86.exe", - "hash": "d47dbf9e46075050a10a0e78830ca901fd667a2a4691bf5fe41ebb805cd6298d5f558178bd5aa5ad07ca2b9205fa4077a548f1a9060cf82f4ae5ebb87d5e0aee" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-win-x86.zip", - "hash": "8b2d7269fe8ae3a70b1776d102c4a84e3fc742be12e548577344146ff9d43193c5addeb847ec0e2c87618ca88721f54787e30d55ea9e970417c8c91e6f0db7f2" - }, - { - "name": "dotnet-sdk-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-x64.deb", - "hash": "77f01a7fdddc80cb92521fc73ca618f1631f7c90a5c1d3531f5876836ce0576567bbf31dfa232b88755c46fb230752a393c8344b238c98b7c143654b0d816468" - }, - { - "name": "dotnet-sdk-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/5.0.100-preview.1.20155.7/dotnet-sdk-5.0.100-preview.1.20155.7-x64.rpm", - "hash": "54dfbaa8b63cbd79b7e64f6f9ee11e9d22f789e600bd69eacdab3e4946e1136056a9e17a71dff9f913ef62c80559a3e15e6eb05c988413f5275ab822ce7442b1" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "5.0.0-preview.1.20124.5", - "version-display": "5.0.0-preview.1", - "version-aspnetcoremodule": [ - "15.0.20055.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-linux-arm.tar.gz", - "hash": "0592fdc197b07151970fdc64e3f40d5551bb2d0bc821241e1068ee1446606d5f7569bdd74a4744efa29b86b01a6600807c6c31630c6651d44281ab38767fd172" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-linux-arm64.tar.gz", - "hash": "bc4d66c2c81ba81afa63226444bad97d590b08c35a4f13e2bc972fd11f313bc524286384925c1db0d882acd5ef17ea9cc7715331cfaa2394019cd5bca461d6f5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-linux-musl-arm64.tar.gz", - "hash": "1b989ff55f0d63be0f512db1caf1b7c571fcf1c30785a4077f43b4ebe9646088a85ec929fb2242bd1f6f16ae236278aafa9827b10420a81d0466eb83d791c2b7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-linux-musl-x64.tar.gz", - "hash": "05bc089d6587b7d4afda29c793b602b549fbf2eaa631ce7339167f5f5f572267e36414f01755eb34dfc89bfd4081ef1b61b56e322aefccfe1b1c805ad77d5a15" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-linux-x64.tar.gz", - "hash": "4ec2c9e8ed5e8ddaa52ed291c263412b754691ae2b95362ddc6fa75cfe087dbe59c7e4f65f21b0f096bc93967d04f4ea612a0c42c8a124ef4583d0de8daac01c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-osx-x64.tar.gz", - "hash": "79b48ab04f28e173d561bfe0ffd8d1099ae98c6a3a927c68a774a98b123c660cdcd68ea654c3baf3c87e1109a6e48a9fe54d9bcbed17655673789e8bc5c35225" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-win-x64.exe", - "hash": "9b1d72c312b773ca4d7ae5193f2d52123d784186e1bbbe62050887418425201cec440cc0cbf0e7cf398f5bfdb1266eef98270b232d8853cffd20f6bf15274eab" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-win-x64.zip", - "hash": "47ca5820673f38c4ba6760ea87495dc016d832028b4eba3dc087dce3be6c6bd9dd21293eb564870e349e72dd4572cfce442daaec9785ebfec8a3d1cde9b26744" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-win-x86.exe", - "hash": "50c6d8c4e6ab321c613056a7f84bef8f6f6877470b488a8ecac6466c2d99e200a66d07f78109828bf884fb1ab1c924181d8d0d1ad58e3f04bb58b3e7d025b814" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-win-x86.zip", - "hash": "2552ededd8e11ca1d16066351d91abe93ad85f23e9e79e8b855574df160964dabad537356c0e034ca03ad351799610b63a032e32ab0bc65d07ae7104b5c1ce2e" - }, - { - "name": "aspnetcore-runtime-x64.deb", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-x64.deb", - "hash": "8928f0056c579984e63ae13ee980441f34a8d050dbd4ccaa0968ddf56816b74e2ba001df2582746970eeab4d7850522015355642aa0d8b4901f46ccd50d76238" - }, - { - "name": "aspnetcore-runtime-x64.rpm", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-runtime-5.0.0-preview.1.20124.5-x64.rpm", - "hash": "c69518e3dceefc79db961359f5c284e271e22a0a9f348f5de5ee7a72dbbe6001d81d4558671d595d473421e9a6c10dee42a3ce72fa836b708b8864e08c44438f" - }, - { - "name": "aspnetcore-targeting-pack.deb", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-targeting-pack-5.0.0-preview.1.20124.5.deb", - "hash": "4c901f7162b9ffb4dd8ab40f3be346c1001f5cbcaff692a23d0bcdb30aa5fbf8803973ee37be6526291d9d54a2e2c76aaaeb7f3a893c03f80c9ef59835e1c6d1" - }, - { - "name": "aspnetcore-targeting-pack.rpm", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/aspnetcore-targeting-pack-5.0.0-preview.1.20124.5.rpm", - "hash": "f9dad74b74f0dc824554db41ff195d12f7a611be11b873fde9b8d80155ec5108c5d98a8473d7e963cf90ebfa2be5889ba704a716bad3ab29303b5c1f8abd6398" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/5.0.0-preview.1.20124.5/dotnet-hosting-5.0.0-preview.1.20124.5-win.exe", - "hash": "e3bb2502552ed73ff48d7b2cd58c59029321c1b49fe93b43eb37ab7fa90f4cf8a91c01af67e3a46c7991db8d5c0cebab1e6cbeb95e49e0f6f49b5bf2846d7535" - } - ] - }, - "windowsdesktop": { - "version": "5.0.0-preview.1.20127.5", - "version-display": "5.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.1.20127.5/windowsdesktop-runtime-5.0.0-preview.1.20127.5-win-x64.exe", - "hash": "15de7de22fa6c19c06053a8a88fdde52c6fb10fc7e0bb2703f30c42406a28feaa56de9b11fc295269eb4297c0239c9b558640e9963fa891d803a2072baa64387" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/5.0.0-preview.1.20127.5/windowsdesktop-runtime-5.0.0-preview.1.20127.5-win-x86.exe", - "hash": "dfb97c3c85b35ae00b95ad6a60bfdffb9244ec807012d55f0b5bd7696c3600acc006be653ee2045fcf1f368ff4cce26761e504d7cdcf85d94863aa48ce77f4e7" - } - ] - }, - "symbols": { - "version": "5.0.0-preview.1.20120.5", - "files": [] - } - } - ], - "intellisense": { - "version": "5.0.0", - "version-display": "5.0.0", - "files": [ - { - "lang": "de", - "name": "dotnet-intellisense-de.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/1b564d34-d4a5-41d7-8c05-7cce04240209/1fe34c510fab8d0519ed864db08d29b6/dotnet-intellisense-5.0-de.zip", - "hash": "1667ca5aee0c23659ee0252079f147f7cdc805c9a6de2f5569c3edf3ea5f5eee5c51aaa11f6dfe9da1506e298f51bb90bac2ed489608a50bde652a7b22854146" - }, - { - "lang": "es", - "name": "dotnet-intellisense-es.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/537b8862-8ab8-4436-a0ac-5f0ae5c5e057/4ff37ab9681636e50df259a3f854abbd/dotnet-intellisense-5.0-es.zip", - "hash": "89ca4e8c185a0ac7f1b4094de305af554342fd871ea6d50ff243ee1ac223368991954bff7800798ae5a184ec89cc9799fd31bc6fb275d1901317d3eaa1ab2706" - }, - { - "lang": "fr", - "name": "dotnet-intellisense-fr.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/81313591-3cc0-4656-bea4-9b94635c1fad/f2d2ec3cc994db0ba6d79ce8bb04daf2/dotnet-intellisense-5.0-fr.zip", - "hash": "152ee5d4b7ccf24ecd47f25b3fc1e0adc69f2793e3bdccc2142ee7b91d0a4fe6bbee89de4abace6f9d8430a07f778008d0e5acc8eb626e3c70a09930691988fe" - }, - { - "lang": "it", - "name": "dotnet-intellisense-it.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/d7b17452-50b0-47b4-b267-38fad379ac9f/735377318efc6e9872758a0cfe3b3de4/dotnet-intellisense-5.0-it.zip", - "hash": "49ad015460281b18b432e74184a70b287dff6a0c9e6394c58f7f52130bdfd8a7ba1e335484fc8d2b2917d4ff21b299342439756c721fd10e058f2a34c06bef3a" - }, - { - "lang": "ja", - "name": "dotnet-intellisense-ja.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/ce8844a5-3756-4a30-bbc4-6145c7ca1641/65f2a0e2895b11bfab278bb56b10db19/dotnet-intellisense-5.0-ja.zip", - "hash": "5150fcd633c83cb9be5d76ad81159b885ed0bf8a225d2b0b54ed556c6ae68c8d715c3fd592c9e334a01acc7889fbfd3a1119c8caff5d2074483c75506c06f572" - }, - { - "lang": "ko", - "name": "dotnet-intellisense-ko.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/be274342-9aa3-4a48-a25e-d18c775647dc/ba605d02aa521fc040ea92e7526c95f6/dotnet-intellisense-5.0-ko.zip", - "hash": "8f2ac1f126ab62aa20902353beed5cb8162a46f3a9e343f5bbfd7d31072f09f8c069a53ebca627c4ff7a44ecfa1a2a817ac74642d5b3a6b51dd35da73d3e9f3f" - }, - { - "lang": "pt-br", - "name": "dotnet-intellisense-pt-br.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/82150755-fe54-4f16-8ac3-08863a36a435/199031d5ba13352c819820f5d4870055/dotnet-intellisense-5.0-pt-br.zip", - "hash": "f80266fcd1101713dccb4efab0c7113e701157c20b65036697f80c7292009a0d56b385e0df10c41334b5137f3f957598de220029311c01f1c687e924c58f74c6" - }, - { - "lang": "ru", - "name": "dotnet-intellisense-ru.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/73168f84-ea81-443f-be83-84e56eaf4116/732d5441e0ece404c503803e16c38ae1/dotnet-intellisense-5.0-ru.zip", - "hash": "f61e620c735da379312b799c4de004c282a4693bcc8c7a0d8cd85f7718a7b59f2fcd534840b4e9fb7a4d627da49f0f0aeeeeec8cbab07db62cc1fe1dad675ef5" - }, - { - "lang": "zh-hans", - "name": "dotnet-intellisense-zh-hans.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/42239244-de7e-4018-b6b4-f7e4c15ddc82/2856eacff59637019ff16b017504f8e8/dotnet-intellisense-5.0-zh-hans.zip", - "hash": "a9d2659aab2fd6b11207546c1c296dc1edb9df525aeb44578b7e3f78e6fa994b858340c135fac8c147f3ce2c43b3543ec2146d15d4452de1ec65bc89508f8889" - }, - { - "lang": "zh-hant", - "name": "dotnet-intellisense-zh-hant.zip", - "rid": "", - "url": "https://download.visualstudio.microsoft.com/download/pr/c96c3958-a360-40b0-85a1-9f4a349afaca/781241cc39c988e6d27345eadab7aad2/dotnet-intellisense-5.0-zh-hant.zip", - "hash": "4d7b1b2d04828d4c5abc5228c7e1f630bdad8283f5d7a615203663316288fc40e978679ed5cec280c7e3daea72caa6cfd2f1f6f6421b0603225506b58e41afbf" - } - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/6.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/6.0.releases.json deleted file mode 100644 index 1282385054..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/6.0.releases.json +++ /dev/null @@ -1,26433 +0,0 @@ -{ - "channel-version": "6.0", - "latest-release": "6.0.36", - "latest-release-date": "2024-11-12", - "latest-runtime": "6.0.36", - "latest-sdk": "6.0.428", - "support-phase": "eol", - "release-type": "lts", - "eol-date": "2024-11-12", - "lifecycle-policy": "https://dotnet.microsoft.com/platform/support/policy/", - "releases": [ - { - "release-date": "2024-11-12", - "release-version": "6.0.36", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.36/6.0.36.md", - "runtime": { - "version": "6.0.36", - "version-display": "6.0.36", - "vs-version": "17.6.21, 17.8.16, 17.10.9, 17.11.6", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-arm.tar.gz", - "hash": "f3f9199a97db81d3e3ed249e0e9b8f17afb785e8b9ebad00016576382d3d0f2029a31eaf760be2509fde796a42efeb727b156488a42f48cc08013f87479cacfd" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-arm64.tar.gz", - "hash": "aa9a35f181204199ac6c44863c4773f8967b25adce218e23ce2822b40b26c38edc1e4e2ff323dabb81ae049bc187f14d209ef1365e68970fd6c32af21f0a1d44" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-musl-arm.tar.gz", - "hash": "3dd539816405ec2d818f611a7cb98fe4069960e8ac4664ccca04ff8b2e0679387b0a3f2cc5045bef95657626ac1045bedc4e502da304ee54678afbbe83dcc3b3" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-musl-arm64.tar.gz", - "hash": "0830715511ab602242487c5fae0dc7a5b75e0c9d7705e624181ec13cc4726a06d7935df952aeddda0dc2c46db95ab14af9d8229a2302b1e6d2fd7e892b42267b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-musl-x64.tar.gz", - "hash": "56c2161c52901706fd769d2c9168cff5959576bd1a72d89f7c27858f467f59970624ea9a0559368462bc178e7c9ef7d86d0fda08c7dbdb72dd3e9084280823eb" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-linux-x64.tar.gz", - "hash": "afb6018fcabec468ccd7ae2f1131d8c9de7f4de7645b8f0c223efbbdbfdc515fb0642a399ebfe372c02044416c4cae463c9c802cd156b9da4181efff0e33ee94" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-osx-arm64.pkg", - "hash": "67f20090ab71d1b7fd85f984228028d80516439c626746ec8610427875fda9683c8fedf342eb0a5c3d42d015d202ddad21671339d8454509a15b1f176f40efbc" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-osx-arm64.tar.gz", - "hash": "d13fa060270c376307c7086da52cff71a02f8550a3a21812e25127308970c99a32d3c4834e342f23365869600c0b51fce03236906e13fe76456fc78964c531d4" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-osx-x64.pkg", - "hash": "39f6a9351aa3e083e5594dbe5c538b496d061a80bb9c9d7baa52964943e0cf156003cc10d36d18b209a4c88ca45ab8a4121412400782daae8949e7bd33fec63d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-osx-x64.tar.gz", - "hash": "8121a98ac7bc936074c2eb82aa45dae1ba8745c8808870ffb400302a267df71bfaf394e5c6273ad6c7a2ec408740ab369a03ac80aff2d49621ae131f7490ad50" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-arm64.exe", - "hash": "c30e4655a4548d2e27fa09711e085828775aa4fdcab0ba1b71923430342c49b54d91fe929d07ff15f777f86b7697d03bd666674f6745673d6b53aa2bb49d1228" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-arm64.zip", - "hash": "a8e19612f4fb7166459c7d44a9014281504e1de6ccd6e4d54d1ad1c4caff66ede0c0299d9cc500b847a9ecf063c583c205d661c9ceed98aa18a29f554fd19424" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-x64.exe", - "hash": "a8e493587d741dfc5ab3aeb548e8abae1bc180dfa28cc0aa4ddaf159bdd990644a97d5e987a17e25def1a41947938b0fabcfe35cf9d81df29b2619b54ec3a86c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-x64.zip", - "hash": "935db5c6cee19f2c016e67168bfae7b491044735de76c673abb3b125dd325fd5e779d7efe12ba80178d46689ae70a25e558a3fa846417d44c5f4ca256e7f4bf2" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-x86.exe", - "hash": "53b3ad92bdb61478b3c96d85c6c54edfdb472da33c44f9d173ee309bbb92c67fd089c2cd10249c9562118876d033e0d55794eb98ef3641c1532bb5a42926a4a8" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.36/dotnet-runtime-6.0.36-win-x86.zip", - "hash": "1d7ecca39d4d14c27b067358c433ebf90dde716e5c4bdc244861dc7268b23f172d61bf910a4e16b46e4d629f23774b8311ba8d5a45085d995da4ef25b74c75ea" - } - ] - }, - "sdk": { - "version": "6.0.428", - "version-display": "6.0.428", - "runtime-version": "6.0.36", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-arm.tar.gz", - "hash": "c751881dd27ef098428e616b99a9c16e8bf82526484f76987dac1efcb5177534749c8f943f6d9daacc3a91bb086c9cb9c8d535c9881c0be3dc19c647065968fe" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-arm64.tar.gz", - "hash": "cb8454865ecb99ce557bd0a5741d3dc84657a45ea00f9b2a0f0593e94e4e661e898a5690df90cf0175bf5982973c19985a168998aaa975b7ac7a3bef2ecd05d2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-arm.tar.gz", - "hash": "ec82839acf12d26c68f65dfafc9465068b23fef509d3203e7d490e7701a21fdde1ab65bc98272b539d14074b3a20668ad72ad52148921f61c1c22e7f20685319" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-arm64.tar.gz", - "hash": "56ae5480b10886649aac4bb9ef1ee4a5701638483f366b7d4f43108838dd9df8e0199232196dae1dd500c7be3e175ce6de2641a1d2e078de2d106ccb44342c27" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-x64.tar.gz", - "hash": "f57123d1465ccb0a1533b51d0995c513abeb0ffc15788bff8af4144e0dd30a2659db41bd2af4328ad637588156e2e649a0518247eefdf8942403939466561786" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-x64.tar.gz", - "hash": "04395f991ab50e4755ce1ae53e23592a7420b71b82160883bae3194dd1dfd5dcaed78743e4e0b4dd51ea43c49ec84b5643630707b3854f1471265dc98490d2f9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-arm64.pkg", - "hash": "012a237ce9339631130b694568e2cb700d71e78d8bab2a0013e3479b73e3033e65dca49957c58b16435250916c48c2fa8997e2fa809ccdac9cd6f1ece06e4879" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-arm64.tar.gz", - "hash": "b60e74b56efc5bdb05be9c954bca6fddbc6baa79213b120fd803c75252c54cf4a6f45255b532c18ceae8c4c1c2a60d2702309156f9ab1436bd71f68947c37215" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-x64.pkg", - "hash": "bd75f35e93f65394f5a6605dca84e99d6612e3d39d2833806d6e6bbb43a0835dc28b3277c52d7d4fd7b794e196da4f67bc2ca48046cbbf64e79b2c939958f16d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-x64.tar.gz", - "hash": "ffd6d342cc700cad4fe8fd6a29896d55f8bd7f687f5c2ef9ae68449c3c1cee4897d2318505075bab2a92538e0db8605df13559923d861d9123ba59c5fb0e5bd2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-arm64.exe", - "hash": "cbeea2c4406dddadf0cfcf71b08400d18ad7f732f7de9d0c3830eb1963dd844a25c9d1b143879e03ccb43ad79c560ef3978276381c8a098cc8530fbe7e8c7fbc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-arm64.zip", - "hash": "9f3a83a30e22ec49b85aaff4b34ac7708613a92f9fb8b2d9872f701472ace5f83578064f5557b474c6aaa719d692070f69a681586eabd9ae46645dc9ea2db79f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x64.exe", - "hash": "a6706b5c03187922e92fa9307b155255139546d081bf1623faff496035eb707440f13c21798aae06fe8fcfeadcfa046c8606dd452db92e5ed48e2005eb421842" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x64.zip", - "hash": "c027cb47b264a13e529f8c7f3ba33ac91152b56749c8681fede1d6cd48723ae1e5f04a43bac1302ee81e35a5383f3e169654e5bb7c1d331dc11cce5a95052e32" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x86.exe", - "hash": "873919c467377229cffc856a6ad14dde80bcc3d05546f7c8843e61f72e9b208fb88e26ec4591cbf9166c181608864dce685b445355ed14e573e0cba42ced8c7d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x86.zip", - "hash": "281884175c983463d4c5d41e7ae548a4e0a2344fc219368a3c017ed74c8bccb81a0eb72ec8565d228ded30f39951b437e7c52979a59125e1d6f78f25bce0f5f0" - } - ] - }, - "sdks": [ - { - "version": "6.0.428", - "version-display": "6.0.428", - "runtime-version": "6.0.36", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-arm.tar.gz", - "hash": "c751881dd27ef098428e616b99a9c16e8bf82526484f76987dac1efcb5177534749c8f943f6d9daacc3a91bb086c9cb9c8d535c9881c0be3dc19c647065968fe" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-arm64.tar.gz", - "hash": "cb8454865ecb99ce557bd0a5741d3dc84657a45ea00f9b2a0f0593e94e4e661e898a5690df90cf0175bf5982973c19985a168998aaa975b7ac7a3bef2ecd05d2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-arm.tar.gz", - "hash": "ec82839acf12d26c68f65dfafc9465068b23fef509d3203e7d490e7701a21fdde1ab65bc98272b539d14074b3a20668ad72ad52148921f61c1c22e7f20685319" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-arm64.tar.gz", - "hash": "56ae5480b10886649aac4bb9ef1ee4a5701638483f366b7d4f43108838dd9df8e0199232196dae1dd500c7be3e175ce6de2641a1d2e078de2d106ccb44342c27" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-musl-x64.tar.gz", - "hash": "f57123d1465ccb0a1533b51d0995c513abeb0ffc15788bff8af4144e0dd30a2659db41bd2af4328ad637588156e2e649a0518247eefdf8942403939466561786" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-linux-x64.tar.gz", - "hash": "04395f991ab50e4755ce1ae53e23592a7420b71b82160883bae3194dd1dfd5dcaed78743e4e0b4dd51ea43c49ec84b5643630707b3854f1471265dc98490d2f9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-arm64.pkg", - "hash": "012a237ce9339631130b694568e2cb700d71e78d8bab2a0013e3479b73e3033e65dca49957c58b16435250916c48c2fa8997e2fa809ccdac9cd6f1ece06e4879" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-arm64.tar.gz", - "hash": "b60e74b56efc5bdb05be9c954bca6fddbc6baa79213b120fd803c75252c54cf4a6f45255b532c18ceae8c4c1c2a60d2702309156f9ab1436bd71f68947c37215" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-x64.pkg", - "hash": "bd75f35e93f65394f5a6605dca84e99d6612e3d39d2833806d6e6bbb43a0835dc28b3277c52d7d4fd7b794e196da4f67bc2ca48046cbbf64e79b2c939958f16d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-osx-x64.tar.gz", - "hash": "ffd6d342cc700cad4fe8fd6a29896d55f8bd7f687f5c2ef9ae68449c3c1cee4897d2318505075bab2a92538e0db8605df13559923d861d9123ba59c5fb0e5bd2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-arm64.exe", - "hash": "cbeea2c4406dddadf0cfcf71b08400d18ad7f732f7de9d0c3830eb1963dd844a25c9d1b143879e03ccb43ad79c560ef3978276381c8a098cc8530fbe7e8c7fbc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-arm64.zip", - "hash": "9f3a83a30e22ec49b85aaff4b34ac7708613a92f9fb8b2d9872f701472ace5f83578064f5557b474c6aaa719d692070f69a681586eabd9ae46645dc9ea2db79f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x64.exe", - "hash": "a6706b5c03187922e92fa9307b155255139546d081bf1623faff496035eb707440f13c21798aae06fe8fcfeadcfa046c8606dd452db92e5ed48e2005eb421842" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x64.zip", - "hash": "c027cb47b264a13e529f8c7f3ba33ac91152b56749c8681fede1d6cd48723ae1e5f04a43bac1302ee81e35a5383f3e169654e5bb7c1d331dc11cce5a95052e32" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x86.exe", - "hash": "873919c467377229cffc856a6ad14dde80bcc3d05546f7c8843e61f72e9b208fb88e26ec4591cbf9166c181608864dce685b445355ed14e573e0cba42ced8c7d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.428/dotnet-sdk-6.0.428-win-x86.zip", - "hash": "281884175c983463d4c5d41e7ae548a4e0a2344fc219368a3c017ed74c8bccb81a0eb72ec8565d228ded30f39951b437e7c52979a59125e1d6f78f25bce0f5f0" - } - ] - }, - { - "version": "6.0.136", - "version-display": "6.0.136", - "runtime-version": "6.0.36", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-arm.tar.gz", - "hash": "f4e5fe2abd475c22ed484c59480eb60d7a82666f9b71a4ca35abb0824db637901aaf62a7deff50e669d9e60f800b827396c5b1bbab29b209455914396c07a647" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-arm64.tar.gz", - "hash": "516824d8272ade670fcc2dd0ee33154a00738b5eeab2de1532ee3e0529f670a6e5b30a55423ae75f02bd4aab9a75264bddecf735be0305d3b7e7fb6697ec8f17" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-musl-arm.tar.gz", - "hash": "edba61b2f0a2b28946a6e389139b168091db9220aa7681310fb937241f60220e13743e8d69b1ee63b85504b12154bd33fc2bac857e16c3ba9e7ae23a0d336b3e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-musl-arm64.tar.gz", - "hash": "2ccb4e58f9dfa0a09dce1687a60ae4911cf8c864abfc7d63cdc113bd228a253f9545d699e8709d1403ff28ce7cf8db0935e4796b05b0aa80eef6ae43d38b8537" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-musl-x64.tar.gz", - "hash": "a93ba846501707808c6b8ea51aa763faf82cc215325aa310aa05d084caebd2c40f74048b384624a73988ba418bf72a71b57883c2a05a0a087a112d2c26b4266d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-linux-x64.tar.gz", - "hash": "bf9d5a4a8868f6806e7c4a2b13d081fc9c0a1475b52751ca211bc85faa2003fbf63e658e1158911ff1fe25fe3aab691e5a2181b14da919c9114ffdcb9b3c90be" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-osx-arm64.pkg", - "hash": "c8f7e0fc66ed6d8099d7ab3ec6ca958c0cfa2f85508c688232ed8cdbdbc96e52e5f4de8b3e63acff5692427a32f9a67df17fc2ccc528d60e784173a51fad2643" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-osx-arm64.tar.gz", - "hash": "5831dd13195d805b300e5b35bdd8a925d5f53f112522ad418cc8b0753a650626927315321ccd90247df52582612271257698c14e52f26d1b3216688730c01704" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-osx-x64.pkg", - "hash": "fe5086f4093639fcab3377c883ade21d54b5b898b42fe23472c09fdf33d36aa12cbc094ac20168ef0cacffe6d34cc8487846e101aa8f05028b5f26c155c24451" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-osx-x64.tar.gz", - "hash": "a0fc78867c7af7e3b7ecd1d37a858a2df96327ef005ac786537a19403fb01251ab11102319670b19e76b3636a3fd08e5ea01339643d06a044e1752d13ef2cadb" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-arm64.exe", - "hash": "0d29e9fb680b5a1b6e428e0f015ab3ed40a90a0f8b5868a9b45610e645c8f70a5c79f905632969e44250c519a7d9836f174684f90f9673eff44a56f1981b5c7d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-arm64.zip", - "hash": "c7f20a5a4c5fc2cad358ee02cb46ce81a19266d7a97dd3ecc5f2f75063c37c747591854afedde61df418c51bc0670fa17fe7d0506b0384f910b4806afed6c00c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-x64.exe", - "hash": "a8ae2bfd30a3a661c2cdd9a968a41f91b035792638834e12214e9a1f2877a2dad05db48caaf019e29fd7c5ce8a81b4134dbd4e8693c3576d12083c92594b0bd9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-x64.zip", - "hash": "75db535b45a079731759c0c85ff997e299fa979350a444ca3da3b908663940ea7c20d6989f5d68cdf935243a007cd82ae08d7c0c7487456a85d1cd80d7abdbbb" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-x86.exe", - "hash": "f64c09b2dd2e8e035d4a456168f7debdaabd45ea45c7e325aadf05dcf1decad94f88fb5c1be238aceb499782b2f7fb0de777030cb6b5b00a85f4b4ea95cb4bc1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.136/dotnet-sdk-6.0.136-win-x86.zip", - "hash": "2dc9d6502e07d1dad9b7046c6351e6638c34343c6c3f90d4927f7afa6cdfe934b1c4198dc283f072b7fbf97700a0aebc0a28958c342cddd1589f59acf365d197" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.36", - "version-display": "6.0.36", - "version-aspnetcoremodule": [ - "16.0.24290.36" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-arm.tar.gz", - "hash": "5186c654fbd649af0760bfb3be29328df280e04f2128c53157e6c550d06b31970a508ac25cc038c9e1b129dc2a3c002599739c8fadd381cb888f6abbd188ce5c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-arm64.tar.gz", - "hash": "2a6a2dde7ba3aeee9145686ee32f1901a7aa6238ae8395ea3bad51770e227069272be83959b711d238210c377b66661e3cf039965f019b58cd44c08a982404a2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-musl-arm.tar.gz", - "hash": "0f772735acac7258c2af4a67c881d5afac2f841f9ab691a06ba1e34abd81d5831d09fe8886e025f7d1fbe84a1e93415fb8e35511c4bb988dd94cb823c18d0078" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-musl-arm64.tar.gz", - "hash": "cf3dbc687acd27220560baf52d52dd42f4773ddd642487ae84e7a298ac30d9640af86cd0c5ee28ecd0364b35892194dbdfd1df302451367d7472c3bd00202f26" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-musl-x64.tar.gz", - "hash": "18d33df408b7e21fcbda8e1c6d67e745a374062d195467a826032da679784fb30b55fdad2de75497dd0e917b213d788ceb3f1b3481276e26e103f991c7553a93" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-linux-x64.tar.gz", - "hash": "0e3d1dcc715bffbcb8ab8cb4fd72accbeed79ac40b7fd517961797a168f4301505044d2c1494a49b0e68103940bd6c178c8ae7bacf75f4b40ce82cc85624f6bd" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-osx-arm64.tar.gz", - "hash": "c3b569f600a02fb354c851675d5d3fd26d3f8759fe9a9f457f29b8316c5ae4fb47484f354b9a15f3508c9561cfdf36dbdf8af99144e3103a2d9d58581b7e024a" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-osx-x64.tar.gz", - "hash": "8a3b73b75c5ba03ee025921639827805b95b6e5e5c920c544f96769bc04e36f4b5c4807b40fec0c1d6d1a8291afaf6f5e1ae5e8da891d5ad91f8ee4841ef8f83" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-win-arm64.zip", - "hash": "4ad722f12b05e4f3e577057186d8b43cb40737ae2246590bec55434ca42704a46822bbb4a57a7246ad634a9cf2882e99dd6f909d1e7cbd0c6bbcc3bfcebfae19" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-win-x64.exe", - "hash": "339731656db435c1f1aa375f90537f7509a8129f9501fbdba16e85a120ea1c5cb0b193fff171dcb4d9744d5b6a5a0eea1d2128a28cbbf637a68e4c3422ffc53e" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-win-x64.zip", - "hash": "9e43b70aaf6a706894682aa5e0d151d6b60e95dc695aefc68cdbfb850dc77acdf5bb64381c4acc03e98240412087093ce26e94e6f1c38ff00670e31c1fbed09a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-win-x86.exe", - "hash": "dbd5029cdaa86ca5cf65e25a0e7ef1746150f90651ccfdccef1a8bf7e415524950273abd073c33c1865586e8b172852972a5d3b25cffaea5c2facd3a5e05512f" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/aspnetcore-runtime-6.0.36-win-x86.zip", - "hash": "954785c36d38f1994fc96feda3488996ac6cd874319a7d414772964e12028313a03b04350d7de053f524d3a52bfc4146c18c6c8ab48067c407e76613dc7a58da" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.36/dotnet-hosting-6.0.36-win.exe", - "hash": "f2d20a6dc4fd1d923d06838ad118ea5c2aecefdee0004af00db78f2e82a1046d0d8a7872c84d3f5e5a3802ab7d087148eb879c2ebe3fc3a81ca0f1c0f5d64690", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.36", - "version-display": "6.0.36", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-arm64.exe", - "hash": "0d5fd97a305960851ff8527a7db65fadae661411d7a9b6e8dd972180cffce7bfa1b842db2baf1b8affd1843d317a2d640ab465a5876177505a34c75aa4631d66" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-arm64.zip", - "hash": "113707f617e1eaa594f02f71f14fecddf1a3127fb4766ce9454638fb5131836ace07305cce031d11b31c01af0394546379268521912863b8e0cafbd41d6089b2" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-x64.exe", - "hash": "86fa63997e7e0dc6f3bf609e00880388dcf8d985c8f6417d07ebbbb1ecc957bf90214c8ff93f559a0e762b5626ba8c56c581f4d506aa4de7555f9792c2da254d" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-x64.zip", - "hash": "cee88fef07643dceb3d34ea71b64eeae85b8e39e7042bc4d35bc3a1f1df29373681dc48e31c01c9f593ec412699f6762b6fc5817433283c89df35a27ce8885bf" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-x86.exe", - "hash": "a18351aabfe1590e58af79e57ac2414254ba80cb7a1fef19545a6b8418575c735fc1dc164c3c7fed426c4698f099991487fa4f443bab93afd41d1563845fbcf4" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.36/windowsdesktop-runtime-6.0.36-win-x86.zip", - "hash": "c137de6e19760936986fee027696c824e904b4094d5fc882a22593819c8d08715597d89004dd97042b8e89e4e49eb1052c5d79cb0002f0f5fd057f198686d0c9" - } - ] - } - }, - { - "release-date": "2024-10-08", - "release-version": "6.0.35", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-43483", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43483" - }, - { - "cve-id": "CVE-2024-43485", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43485" - }, - { - "cve-id": "CVE-2024-43484", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43484" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.35/6.0.35.md", - "runtime": { - "version": "6.0.35", - "version-display": "6.0.35", - "vs-version": "17.6.20, 17.8.15, 17.10.8, 17.11.5", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-arm.tar.gz", - "hash": "5f41c00f8e60ce2ad07bef75a3ead8986b99b706a8c4bb2cb0fa8cadfa2fabdae3c17501aa9c77f634aad02a28c8c8869235907baf0b9d723d650213952ce924" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-arm64.tar.gz", - "hash": "945e24f9c2d677e65fddaa06cafe8d518ee599ce98883b60fd9d734320fa2f3e1ccbfb46ea26ee925e319fb5430c2e18d64269fdae96030169c4b6d3d811ea77" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-musl-arm.tar.gz", - "hash": "c9af975cecddf45d855fc0e7535764a24b28d64af43a66ac25bffd6be9699a7e5db20f56acdede99e96e46e9f62135e51af136e722559d0c77fbeb87d26deac6" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-musl-arm64.tar.gz", - "hash": "c01365b0e5cc72dfc7bf3c1d512edc74d0ef959cb7a6137d67e9ed9d8a26d8744258ea3005df009842cbaf46844c913626e3dcba15830118acd95e14d3c2e670" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-musl-x64.tar.gz", - "hash": "b2a3fa2656cb255235d886da74753c78c3d6d52b62e10d69053b9c08b66265867d6f369b4a6e133abff21d2b2912722e757438e2e9dbad10b9db6a55545cd415" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-linux-x64.tar.gz", - "hash": "d8d10d600fb664336949576f8ec0534dbffd573f754b9e741f20812221fafcac5f509a7e1ab44e9e63fc31a7b5dbcb19e4ec1930ffd29312212dc7454977090e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-osx-arm64.pkg", - "hash": "51e25b186195a1ca5f822ac4eb1e4cee82c2f0029c349f7c1f712b6edfca64a18eba588241eb3e973673f7eaedd2eacb81a0f3c78ae459f9bfca1f506f90d325" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-osx-arm64.tar.gz", - "hash": "4880cb3c69674452831c130e02a4a12826534d605b1159c432ed3ad04e618e0da076037484c3c34bd8c7391c17305eb76b6957cda14600aef9e72bd47da5bd66" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-osx-x64.pkg", - "hash": "65d54f55d1079f87aa76f48e44ad44256afb83d2b2a03608cf3b38dfd2c9c6ffdf010b676cdf7bf0ed8d9a2e2440749dbd1224d7fe3ef6baba3b42ef09a83f5b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-osx-x64.tar.gz", - "hash": "7334dbf6e09bead6ef2703dde69e6a5a8d9bf43d3ca2d6fcaf393f5c4f4ae5aad7c803d0c4547d01d6f08060f8666fcf2c1fbd5439579d58d9287086c0dc1f4a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-arm64.exe", - "hash": "59e2e186ebbb57fcf82ba5de9e5d07e39557d75a056adc2858f3248c30a08678643674ca9237fbe3203efad17f5125427aae8e81096be96579b8c9049754168d" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-arm64.zip", - "hash": "e66b99d24405b9eaead4bd4825a79e4fa9992a071787cf6efab22f9f7edb0ba98ad665c2b913ca862e5921890230d301f7fe3bcfd0e8873638221dfd61040e89" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-x64.exe", - "hash": "0c3291253123cf3f887b5d964b77f886e2414a2cadc4d0e9051e88cc4c737777c0a0a879532d80d26f49f14e1e5f255bab11dc834c379da62611d484c4bdf416" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-x64.zip", - "hash": "4a0396bd3c201e9015a161de3d4e4e685151eb1b75ad57ec65c9289369b90ad55c7e9704aa553c32e2d5734b642a096a9b9a6797757dde6974ab5ead2bba5b89" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-x86.exe", - "hash": "ee6200ca5a07ca51d35088c79f0b16c9437e51ee2363bca991efaadb794c946b061e2506e689a5aa62bd43f6946fcf0af8da45d5c650656079228be63b99ea73" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.35/dotnet-runtime-6.0.35-win-x86.zip", - "hash": "7edfbde12c19d1087bac7ea44ae94672c6aa564ca2ce27757ea12e2678dffebf7178c5c702788cb490e44edd3e31782f84f23c6534d0d3380fc601679d96842a" - } - ] - }, - "sdk": { - "version": "6.0.427", - "version-display": "6.0.427", - "runtime-version": "6.0.35", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-arm.tar.gz", - "hash": "4c76654d8d2ae98c73b4df86002df07c549a411cf7fa13f11e811501ba47e5ee04282eac75a6fcdacf3af3a33f87f5ab3a8c1f2cb4de6d25e091397979d0f2ea" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-arm64.tar.gz", - "hash": "9129961b54ad77dac2b4de973875f7acd1e8d2833673a51923706620e0c5b7b8c5b057c8d395532ad9da46b1dcb5ab8fd07a4f552bd57256d5a0c21070ad5771" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-arm.tar.gz", - "hash": "4297c488fb0cdf72c4fb3bad057413c173a07066bf651fc8c4075b86c2231612e694947b7ecbec0d43cd6921b83df206ba528d387a36ddd6c670b38afd9395d9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-arm64.tar.gz", - "hash": "670e8c949439aa6d75348d2fa61018c6621d821ceb5f8473ff9b81bc1b21dc293d0b16fa8044c6e5729aadc04912654d1ae0a4a84af4dca0891571311e9d4cf0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-x64.tar.gz", - "hash": "38e63bc2e94b5dfbaa5ffcc31e96eaaf9889a86ae03b2bba72ed73434d79857d56566345c65a20c7a5e62f444b8f13a3ed6a3e7e568a3c34c837cfcecd1ca68f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-x64.tar.gz", - "hash": "a9cd1e5ccc3c5d847aca2ef21dd145f61c6b18c4e75a3c2fc9aed592c6066d511b8b658c54c2cd851938fe5aba2386e5f6f51005f6406b420110c0ec408a8401" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-arm64.pkg", - "hash": "5fbe2e94337d3f8f3fd03e7be369c932bc4fb2b18435bbbe0c1f335508b9a3943fee031f1854b29589a815409befb83ccea36b2de52a24cc728fc1d8d1225cd6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-arm64.tar.gz", - "hash": "8ad7314e1bb816fb4198842931220e9ec8c8885b43596ec890af3c2177894101353afebab63f2b870162304c6a2a20d1a45ceef419f72d904d598a2e4e8d9ce9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-x64.pkg", - "hash": "77e36f86f3b344d0ab29856ce39f0f25096dac25ce437ac12d33187a60907b78c131d3f4fa611493606122882a5231ac09edacbe51dea137eaa4810f9968e406" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-x64.tar.gz", - "hash": "1d5660dd1ece6dc697e467981b2f69c6b339ab93c976d482efa9b42f6b5c83f12c192e5b420f73a9a8e46fbbed935f8364217aa410bede0f032ac992b2d3ea7c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-arm64.exe", - "hash": "0df71747d23b41e326737ad0482fe09ce548b110d5c6254b31dec8d992cb492a3e5d87d0f3b0a06cd53bb431e8968eadf77c1153ea0ffb45c8f6f88455afbbdc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-arm64.zip", - "hash": "cb421e68bde7e06a9f1e3db3c15906b2acf1255aeb520f0654c95cb149cfa97e5c7b93cf5381a746279efc62c45a4fc956a9c4b277f95e774e6b80d5a6224cac" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x64.exe", - "hash": "4b4e1b16fe0e15bf09cb1a524d6ec1582fabc81b9e16990bc6c55fab615e8fc9732dea0b123f73fc6dc87b49ae0488309f1b7a788ffa95bae56513635b122a40" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x64.zip", - "hash": "e92c21f13bf34d8f5892b966950d1f2fe08839e23817a7f8268af36361161b3604a79edab493f7f44033bad2829f4ca57f6afc8e8141aa468c367efe3ba44b38" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x86.exe", - "hash": "378db35fbe23d8786a0718a0795410d51521ef798c9b0718828995c7472703788173c83392f6189697067e41a0d5812a3357f9bfd49f43a191df994dcc541be7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x86.zip", - "hash": "794e624cc80c7f5c387e3f2ba00d022f5f32adc7adabc2e2136db1faa737054fae49fbfc45b68bf1c52c5e4b63755ae8aca9cd4f9f1796d551f3bcfa6ef4c4b8" - } - ] - }, - "sdks": [ - { - "version": "6.0.427", - "version-display": "6.0.427", - "runtime-version": "6.0.35", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-arm.tar.gz", - "hash": "4c76654d8d2ae98c73b4df86002df07c549a411cf7fa13f11e811501ba47e5ee04282eac75a6fcdacf3af3a33f87f5ab3a8c1f2cb4de6d25e091397979d0f2ea" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-arm64.tar.gz", - "hash": "9129961b54ad77dac2b4de973875f7acd1e8d2833673a51923706620e0c5b7b8c5b057c8d395532ad9da46b1dcb5ab8fd07a4f552bd57256d5a0c21070ad5771" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-arm.tar.gz", - "hash": "4297c488fb0cdf72c4fb3bad057413c173a07066bf651fc8c4075b86c2231612e694947b7ecbec0d43cd6921b83df206ba528d387a36ddd6c670b38afd9395d9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-arm64.tar.gz", - "hash": "670e8c949439aa6d75348d2fa61018c6621d821ceb5f8473ff9b81bc1b21dc293d0b16fa8044c6e5729aadc04912654d1ae0a4a84af4dca0891571311e9d4cf0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-musl-x64.tar.gz", - "hash": "38e63bc2e94b5dfbaa5ffcc31e96eaaf9889a86ae03b2bba72ed73434d79857d56566345c65a20c7a5e62f444b8f13a3ed6a3e7e568a3c34c837cfcecd1ca68f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-linux-x64.tar.gz", - "hash": "a9cd1e5ccc3c5d847aca2ef21dd145f61c6b18c4e75a3c2fc9aed592c6066d511b8b658c54c2cd851938fe5aba2386e5f6f51005f6406b420110c0ec408a8401" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-arm64.pkg", - "hash": "5fbe2e94337d3f8f3fd03e7be369c932bc4fb2b18435bbbe0c1f335508b9a3943fee031f1854b29589a815409befb83ccea36b2de52a24cc728fc1d8d1225cd6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-arm64.tar.gz", - "hash": "8ad7314e1bb816fb4198842931220e9ec8c8885b43596ec890af3c2177894101353afebab63f2b870162304c6a2a20d1a45ceef419f72d904d598a2e4e8d9ce9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-x64.pkg", - "hash": "77e36f86f3b344d0ab29856ce39f0f25096dac25ce437ac12d33187a60907b78c131d3f4fa611493606122882a5231ac09edacbe51dea137eaa4810f9968e406" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-osx-x64.tar.gz", - "hash": "1d5660dd1ece6dc697e467981b2f69c6b339ab93c976d482efa9b42f6b5c83f12c192e5b420f73a9a8e46fbbed935f8364217aa410bede0f032ac992b2d3ea7c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-arm64.exe", - "hash": "0df71747d23b41e326737ad0482fe09ce548b110d5c6254b31dec8d992cb492a3e5d87d0f3b0a06cd53bb431e8968eadf77c1153ea0ffb45c8f6f88455afbbdc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-arm64.zip", - "hash": "cb421e68bde7e06a9f1e3db3c15906b2acf1255aeb520f0654c95cb149cfa97e5c7b93cf5381a746279efc62c45a4fc956a9c4b277f95e774e6b80d5a6224cac" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x64.exe", - "hash": "4b4e1b16fe0e15bf09cb1a524d6ec1582fabc81b9e16990bc6c55fab615e8fc9732dea0b123f73fc6dc87b49ae0488309f1b7a788ffa95bae56513635b122a40" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x64.zip", - "hash": "e92c21f13bf34d8f5892b966950d1f2fe08839e23817a7f8268af36361161b3604a79edab493f7f44033bad2829f4ca57f6afc8e8141aa468c367efe3ba44b38" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x86.exe", - "hash": "378db35fbe23d8786a0718a0795410d51521ef798c9b0718828995c7472703788173c83392f6189697067e41a0d5812a3357f9bfd49f43a191df994dcc541be7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.427/dotnet-sdk-6.0.427-win-x86.zip", - "hash": "794e624cc80c7f5c387e3f2ba00d022f5f32adc7adabc2e2136db1faa737054fae49fbfc45b68bf1c52c5e4b63755ae8aca9cd4f9f1796d551f3bcfa6ef4c4b8" - } - ] - }, - { - "version": "6.0.135", - "version-display": "6.0.135", - "runtime-version": "6.0.35", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-arm.tar.gz", - "hash": "8b9c70b2490161bcb50bd8ce8bf822b3e4e856feb6a55257552cc111a68105bd872641c1048c132805848492e84bc472737cea664706fccb790eebbffc049dde" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-arm64.tar.gz", - "hash": "6939ca94a91d6862a7f3eb2155e45720c99eb441c1cd1f2a22ded8351c5fea0981c2ef433b0573c1ed2e43375646666a9af2c8e0a51ac1a6c303dd91e1876761" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-musl-arm.tar.gz", - "hash": "79f1bd78be5b9777b2afdf89f92572d329158dae00faa54f4e7aae471641cce90d431f039a9350da258fcfe3218c5eb6a2f2676f3976e51a8ba74281cb9ab8e0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-musl-arm64.tar.gz", - "hash": "dc9c3b959fd66424fb9c37557ff65db07edd5ec816bcd0524cd60f8a879025ae1b40ecb775792da377adcfc2230e5d20f72e68946414f318bb33901d5e628969" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-musl-x64.tar.gz", - "hash": "e60f244b2c26d40bab9b7af4e5105c42d337f76f1d33371093db2c7ec0118ba665d95a09cd94a5de324f22ca445806b20fe10b30684406387323ad0fa222a057" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-linux-x64.tar.gz", - "hash": "f990fa0636385a3a4ea6b0e1ccaa45613fef442d3610015236fc2474895f2c2446559f2fb942c901171bb847cd825fcc575fb82d120cc5d1cf175d5c0ae01cff" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-osx-arm64.pkg", - "hash": "82cab99287c02c4084122bd382de95514dac4c74273c7dd189d5177abd8e9aab42c8bb3ca603e012fd5ef9d72515cbbb7e63229f73e82c4ccb17bb3841b5f0bb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-osx-arm64.tar.gz", - "hash": "4766ce954fcc09b0c04e1b3e19e559dc9cddc0553c80f2a16a77fb506a2ab610040eed390c9153f3eea76271bb5bafcd696ca1bc7af2ec9cd9204f46ef669c4d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-osx-x64.pkg", - "hash": "11626f88d5a6d75d4930cbb3c566786a276228c0155b5f4adf07e9550d8faa9500b9df4b7d111e340b9d744491eb9b8992939c2f083985b66fa4daaa07af356b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-osx-x64.tar.gz", - "hash": "8f22e6da90ecdaa8b05eee443fe6089fe89682da3ac4e8d3ee2ee2c9fe60a2b5f165aa744ca12a0a71b71eca125d53dafc648be82d1aec4ae33a1443ce9663fa" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-arm64.exe", - "hash": "83da375376f1b39e0c214e4baea3bef81614c49557df2ca15b1c089d87c0432a8473e3433a9f65dbfa5055ab7a01edf43638a3fe52efc9129edc042ba7f2ebf6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-arm64.zip", - "hash": "aef38d38a9586c11144c9ab9fe6367e4355912989ee6ae1ce2e0e38ebf0cd7041271b81b70f83f3b5961d2517ac35f010b054f4b480f138692f2e630aa581771" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-x64.exe", - "hash": "4bd4e75de8a3788b7a890028ae276232c99cc9a2921db38e627aa0948ac354938a0edb8752335fe1765dbee4f4ecd22a3e74f83fe980176a0acf383f7573e1db" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-x64.zip", - "hash": "1ca1ad41d545af36c355c07e1fcb477fc728e225be661364d5a3fb6aa54d5a2e30bb5c0256b42b7c3409e29ac3dec4d683f8676dfdcb6c9f0bf0433a7216fd31" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-x86.exe", - "hash": "ef90d00495794d30c8b36352e46d053afa7e915dbe05fe02320a44b8a610bcdc5b43164e554c6467443e0304d868d97ce5f5bf8126fa7ff0e5a672ce5ad775f0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.135/dotnet-sdk-6.0.135-win-x86.zip", - "hash": "19f51c1b762aaeefe208a7cd612e739062a6c474a5b7fd1a352f56b8eb2be9e339d02613597e2cf20d539021f9ca64af118750e0d2641f63ed771ea584090f3c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.35", - "version-display": "6.0.35", - "version-aspnetcoremodule": [ - "16.0.24256.35" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-arm.tar.gz", - "hash": "2d152301b9bfc5f9cedabc6c9890187575e90c2362bec709fbbde8a423da6f533acf778f34d55fe174906eaef2dc09da570b5a9d25dd7a8a54cbe4e73f745f43" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-arm64.tar.gz", - "hash": "c949fd1b9efe9231e4c6e006ef3c4a5aedc1d4ce64ca9bc1cd52f1ce9884ea23837b49f1e6a7ab4b6df0c6f60a32573e2aefde4e14f205812d004b7b9ebe0f76" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-musl-arm.tar.gz", - "hash": "45ba3c29aa95e4810a710907bd93da7c3e3a09c7972d7b19857aa47ae4fd5fad19bdac2c5e037f9abd1996a27d0e39acffc3278f2e7782474140070f355d888a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-musl-arm64.tar.gz", - "hash": "4e99263938e9de1fa508fcdf0a59e7f61a234f8bd60a4947d043c5ac5bc3108eb46254bcb7148ca0a0391f5e9cee74db1ea617f576d7e37af22ba108e9433e1a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-musl-x64.tar.gz", - "hash": "50210ced90d17ea8370fbbcade3fbfb9be92690faea77d5516dc8ade4eee83408b2d37f812cca020087441d2f3146507086792cff17f7413308eb12fa4abd66d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-linux-x64.tar.gz", - "hash": "d86da938338a6d97250436d49340e8f114c05b46512ca562aadca6f3e77403d36468d3f34ed5f2d935c070f9e14aedf7299f5a03d2964dbd6576b9a2d3e776e8" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-osx-arm64.tar.gz", - "hash": "54487321b4710d822dd56df5069d6afcdd1f98767277dc89e1b3035ab1bad5028b45793e9b8f9ff57e32d6332b5bfff3b686c65086ec4743a02761b4295793b4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-osx-x64.tar.gz", - "hash": "cc80ba59a8da4112389e842cf3db2f3aa2636544759de4d270fbb05c700ec91da062bad34984989c56e5c1a79c2ff60cb8347e8e67a2f14a92a859b6a52547c5" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-win-arm64.zip", - "hash": "302d46255465d209fbde5226aefa3af1bed868769d01687c8eeabf19959598eabe942dddfb27a950cad379b970cf362724ae28d156d4a1a61a75dd0b68ac7c08" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-win-x64.exe", - "hash": "ae7c939d9bab86ac710f415c79e0c4411ee7c380183304594f99fecd46c29e93405b0ec145a2818bf0c344227177b426338a58a4d261c99842312b04a29bcfdd" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-win-x64.zip", - "hash": "83678ac457a8b604c6b622478860f926ba05649847d2a2fdab65ce8b04a7939857372788e77d23514bb967c8bd058b50bb0e1981772ace8e7efbd829bd94314e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-win-x86.exe", - "hash": "40897ed897d5df5abd63cf9ef84337d86c02eea4bc466fe81973c3ce281600d5c139cb27107eadda489f6deac0d79d7cce568aada792f66df4f05b8b4e0dd374" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/aspnetcore-runtime-6.0.35-win-x86.zip", - "hash": "b8ef1f07055a79253b4faeca0ebe33b65863ecc7ad7e243a0b14adb264f33266e2f6a862d5351945acecf70cb9dc9e9ba7578fb4fd8e52cb29cc7ce993d7355e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.35/dotnet-hosting-6.0.35-win.exe", - "hash": "50a59503069a515bbc934bebe0caa08cd35cc94e815f3cdbf1a4e718b8084fb0c2ef796cb593337861f0793d10504a476dd21b4ed9634ca1ca7482f0125aa55d", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.35", - "version-display": "6.0.35", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-arm64.exe", - "hash": "c9a40b603c669a621e92ef58ecc9a2c48f26bb9c6efa4d9e7f76a1743b2b957a79828dd8ce71a4647caa7444d07b71d102e7eb61b6439a17215fa136d52bbe3d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-arm64.zip", - "hash": "29c7d614d66a13887542dadde6d24afac104e1308a988ce0a8f1ea875e486ca43b93ace43ebcfbe5ad64e9e311c03cf890a17c823d9b9ce940c40a16bf44b6d2" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-x64.exe", - "hash": "2e264fc6e3b1619922c1ab81071e64f5608bbe74be5546b18ffaed24ed0198f64d5334fad9a250889b9f619da0a4d8d589596c1541f9dc965eba738a9e5f9232" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-x64.zip", - "hash": "ac7e158f26d4069fbd8ef59c21aac7a10bca9abd8af5b1281fae91a77218c92c1a66af01a956e980a2a4a7915d7416c0f9332c3ba03db834eb2bc390b6ec0be1" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-x86.exe", - "hash": "2bc9b299eec071c6220ad11a6e9578dd68bea87cefaef625f1f3f5b51b9fdac5941ec66ab4094228c60d75edfe9225fcb0a940a251d944bd50ce237767611d3e" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.35/windowsdesktop-runtime-6.0.35-win-x86.zip", - "hash": "8c086e8fafd6f0865afa46cf4e434271a785ac44aca17e8158df3686403854a0b8731433c0baa6c371315b28da785da17bd317ba7fb43a4d5119192cf025f80b" - } - ] - } - }, - { - "release-date": "2024-08-13", - "release-version": "6.0.33", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.33/6.0.33.md", - "runtime": { - "version": "6.0.33", - "version-display": "6.0.33", - "vs-version": "17.6.18, 17.8.13, 17.10.6", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-arm.tar.gz", - "hash": "c3349b1c98bf8d0b79d0d3de5c12792fbdd4aef1c04b6d0c115d5aa651cfd2e8642521170b312db0cb6facd057958b387c60eb6ae5b828e2250300efbd6f3195" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-arm64.tar.gz", - "hash": "c700d4ae3e361fa2a390a8fcf294a2277931b0ea60bd4a2f0ec2bb982bb6c618ba002e5955c3ee96807207b256e10289cf1cfa372029b758aefa6bf1268d45fb" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-musl-arm.tar.gz", - "hash": "a9594a489f8634af01e7c60acab5f7ee0ac544b98ce73ee671359becd6f6b29f4d9e64dfe3166822c0506157731ec44fa6db02a8be1b17a279af61a6679cfd38" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-musl-arm64.tar.gz", - "hash": "e5707970b2a852b80b1fd77a3883e50dec925d91eb89012c166e4a45e917064c24040a6e444b054767033cb9b9e8314b6b5117ffada6d248ab7f90c8e40fe555" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-musl-x64.tar.gz", - "hash": "3bfe4f9dde02bdaf35db07271cf56873b508c3229318bbe7d478eed855417ed3941d9d9a8ede2fd1cc5ce5f7b73c4e5ae4666d2cc47fe2ae09d5f8625c46e982" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-linux-x64.tar.gz", - "hash": "0892015544d8903999f8e0fadab6b4b91eb180e495fa5e36c1a755b1d42e134858b7bdbfd60d1880650d9c528d07e31b9ccfc73e650e5d890a955902a89139cf" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-osx-arm64.pkg", - "hash": "88ad3c974053a66a2607a42a31dc399dab6334e1474588c3cd7cc0225e31df07facc7303024ad168569eec0a899c993be417b465386d9f12ba37f102eb63ea5e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-osx-arm64.tar.gz", - "hash": "95d0e646f688e6f46545625dfae46d8325c7aee4661d3f0e59044acced9c6192ff51524355696e8f868ebd112e9a036d01c951f7249d863c300d07c1a0913d1a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-osx-x64.pkg", - "hash": "72b7353c0658c4e537be6cf6ce59542e0ad89cb2d3eb42cfa75cb2ecc1610f4689b42a567610b696719b6a88d4fc523ab509d767ec294fb5dc1d917e4c28c00e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-osx-x64.tar.gz", - "hash": "a0ad81d4bb361d91edc7b42142828fb5ac5b75376e6ad0137f7f28bba5c0d0b68c67af708bc85c15ebb7aac5f98df20bd83a56144a1bf9ac5aeaf5caf84e4128" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-arm64.exe", - "hash": "1e5536c0daa32e7c1c3a8cf7cdf723d2a58968ddb11213b0ac10599e5d5feb031bef4ffd814e9608074a3e46ded16ef37762fd4904c458ce875ed3163cc5c11b" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-arm64.zip", - "hash": "bc118c3fb1943bff53f12b3c757b8a44b293061063aef55fa72a30c5b7c0cd65d0874c6266259e0fdb44be25dcca67a06f973e6c34c87c46c470e2c939e16fd3" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-x64.exe", - "hash": "302216d6ec3c433abf79bb97feb869f3316eb82510d6411280f5444ee469e9856ef136fd4cee7b468d4b30590893ff92bec6aeb8a41dcd6d16d42df5bd46be5e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-x64.zip", - "hash": "6cbad445d7b06ecbd031b43b1b44a04636676908f2e14af6a399ca2c2b163cb4add3f6e70b7b1089dc8d1a89ff482875391b3868ad2703359eb62a3d87b8953c" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-x86.exe", - "hash": "6570145679c619caf99b55d31d71c04850724217503a271c056dd132b48d616790e484021e1bc85dc7b50c3e794eaf92956973f32ecea7ed47dd9b421c8c75ae" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.33/dotnet-runtime-6.0.33-win-x86.zip", - "hash": "a0dd2d4dbcfd8d1bf8659209a2541d7efd3a5223dab904e1d9a28d29b452dee104be2716f2e385e2e4cfee4b03ff4a03abfa03f17f34d608b72a25ded0a902e5" - } - ] - }, - "sdk": { - "version": "6.0.425", - "version-display": "6.0.425", - "runtime-version": "6.0.33", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-arm.tar.gz", - "hash": "e0cbb3a3874fec76026d5ce11acdae07a720eb02b500c87882aaeba48e6ec290d62373e51b53367ecaaa1bd4bd770f2ca1aaaec3a8499bdd1c114894daaa4daf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-arm64.tar.gz", - "hash": "c15f95664fd0570d5b0cb94c7af6bba5fe830470004f0e958e49d53764714cbf8ddd620b38d487b60a27dbfd467a955856aab3df9c958cde17c942079fdaa55a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-arm.tar.gz", - "hash": "c59ea0ef6c80f80907aea223dc7a9ad69431b1e67234dee4fee0f9109ee7ce8bd58af6b102ad117889f4e2cc8ef7cceef9a6ec80b10578c6ea4b84412f2b1e06" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-arm64.tar.gz", - "hash": "d58aace5b021fc730a0da2233e85e3ae473256a7de9334b8932cc2e0d050543c1eb1b16dcd3475f777cdf59e42971c85d27def497fe5cf06a6b6046ce8d23ec4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-x64.tar.gz", - "hash": "cd9572358102b8214874ff353bbe826ac9ba0f0d26d49493f312a8a3bc7c0faba2fc82bd5dfb740289d3242dcdf78b341996d38623723c691be469375a72df9e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-x64.tar.gz", - "hash": "a04b75af7c5850238a8d99a6f60b37753467db615831bb3833c14aec86faa2d6ee9b8643885798924a01e28acff44ac9ed39c89f7cbe53c5cb8753c802e85039" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-arm64.pkg", - "hash": "58aceae66c5d3a143b580cb79698656699c059fd0553d962713275fbc5ed52d10e4cff5bd44a246b6f228a0bb08e22b4509b133660236ed4deab282e6c8aa2aa" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-arm64.tar.gz", - "hash": "7383b188c8500ab8625cd34f69f7ec5a4d9ff4ca715f95ee020f2bd082d5023697b021ca4b3b1e6a0782fae2ff89586e541e454fedacdf1c49b42f6e47d12011" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-x64.pkg", - "hash": "81c60f9be1ab1013bb08ec7b43e9f604eb01c8667f179a22d11059da0846ca792cabec1c768005c353f4b4597b53e0b45cd954092f855d6d41abe3d758fde9a1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-x64.tar.gz", - "hash": "5757c661d82408680a6e45efbca260bb9da145bd83f8275280e9ba756a2827ce35c7ae77cb248e9ee6c6cf46730c6e50152b98c0a082c0de764f5e522dfb6ca2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-arm64.exe", - "hash": "f81915abcd08f08b45e654c9797726a19508a58e5db6283fa9c3e438755328835e50ddf613c53dd2f28b65e1b565b5a534e1f17881ba45f6df0a98e913740f16" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-arm64.zip", - "hash": "7b82c2f8d8b25ea02672bfc86178198798203d81176fcbadf655dd213d1e4c2f07b63756e50592b759bef637871edf842122170630d7b6eb80d1e62d1d7f090b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x64.exe", - "hash": "9d220b643e0925fe1fdbcafd60aef2af57ac0a9aa0b4cb57f63de61df8f04ace0eee342395b0c3090823391ed9bae510a0212cccbd432db16371271b81d892e3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x64.zip", - "hash": "8bd8e396bf451e90114fc8c039eae21b96ffbe5a2d04238d58712c754f4fce42039140680dfaa121b2c12174ecf192309c6eecb4525f3282ad18b756e30157a1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x86.exe", - "hash": "ef030d9414545fb7053602a9aa902cb6dd4cb220599fc82e7a0eba779fd687df835e226188b3c33788339956f73bfc94e454aec2ee0e9da3967275e0a41ab8cc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x86.zip", - "hash": "a9cc5e30e6b75ca9ee6f283e996fb58b7ed11ef072aad62c341ab9e32f29ed1c0f518f8cfc1be69fde815ce1f51998c1d0c2e8be3c549392a54ca940a4e33929" - } - ] - }, - "sdks": [ - { - "version": "6.0.425", - "version-display": "6.0.425", - "runtime-version": "6.0.33", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-arm.tar.gz", - "hash": "e0cbb3a3874fec76026d5ce11acdae07a720eb02b500c87882aaeba48e6ec290d62373e51b53367ecaaa1bd4bd770f2ca1aaaec3a8499bdd1c114894daaa4daf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-arm64.tar.gz", - "hash": "c15f95664fd0570d5b0cb94c7af6bba5fe830470004f0e958e49d53764714cbf8ddd620b38d487b60a27dbfd467a955856aab3df9c958cde17c942079fdaa55a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-arm.tar.gz", - "hash": "c59ea0ef6c80f80907aea223dc7a9ad69431b1e67234dee4fee0f9109ee7ce8bd58af6b102ad117889f4e2cc8ef7cceef9a6ec80b10578c6ea4b84412f2b1e06" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-arm64.tar.gz", - "hash": "d58aace5b021fc730a0da2233e85e3ae473256a7de9334b8932cc2e0d050543c1eb1b16dcd3475f777cdf59e42971c85d27def497fe5cf06a6b6046ce8d23ec4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-musl-x64.tar.gz", - "hash": "cd9572358102b8214874ff353bbe826ac9ba0f0d26d49493f312a8a3bc7c0faba2fc82bd5dfb740289d3242dcdf78b341996d38623723c691be469375a72df9e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-linux-x64.tar.gz", - "hash": "a04b75af7c5850238a8d99a6f60b37753467db615831bb3833c14aec86faa2d6ee9b8643885798924a01e28acff44ac9ed39c89f7cbe53c5cb8753c802e85039" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-arm64.pkg", - "hash": "58aceae66c5d3a143b580cb79698656699c059fd0553d962713275fbc5ed52d10e4cff5bd44a246b6f228a0bb08e22b4509b133660236ed4deab282e6c8aa2aa" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-arm64.tar.gz", - "hash": "7383b188c8500ab8625cd34f69f7ec5a4d9ff4ca715f95ee020f2bd082d5023697b021ca4b3b1e6a0782fae2ff89586e541e454fedacdf1c49b42f6e47d12011" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-x64.pkg", - "hash": "81c60f9be1ab1013bb08ec7b43e9f604eb01c8667f179a22d11059da0846ca792cabec1c768005c353f4b4597b53e0b45cd954092f855d6d41abe3d758fde9a1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-osx-x64.tar.gz", - "hash": "5757c661d82408680a6e45efbca260bb9da145bd83f8275280e9ba756a2827ce35c7ae77cb248e9ee6c6cf46730c6e50152b98c0a082c0de764f5e522dfb6ca2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-arm64.exe", - "hash": "f81915abcd08f08b45e654c9797726a19508a58e5db6283fa9c3e438755328835e50ddf613c53dd2f28b65e1b565b5a534e1f17881ba45f6df0a98e913740f16" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-arm64.zip", - "hash": "7b82c2f8d8b25ea02672bfc86178198798203d81176fcbadf655dd213d1e4c2f07b63756e50592b759bef637871edf842122170630d7b6eb80d1e62d1d7f090b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x64.exe", - "hash": "9d220b643e0925fe1fdbcafd60aef2af57ac0a9aa0b4cb57f63de61df8f04ace0eee342395b0c3090823391ed9bae510a0212cccbd432db16371271b81d892e3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x64.zip", - "hash": "8bd8e396bf451e90114fc8c039eae21b96ffbe5a2d04238d58712c754f4fce42039140680dfaa121b2c12174ecf192309c6eecb4525f3282ad18b756e30157a1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x86.exe", - "hash": "ef030d9414545fb7053602a9aa902cb6dd4cb220599fc82e7a0eba779fd687df835e226188b3c33788339956f73bfc94e454aec2ee0e9da3967275e0a41ab8cc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.425/dotnet-sdk-6.0.425-win-x86.zip", - "hash": "a9cc5e30e6b75ca9ee6f283e996fb58b7ed11ef072aad62c341ab9e32f29ed1c0f518f8cfc1be69fde815ce1f51998c1d0c2e8be3c549392a54ca940a4e33929" - } - ] - }, - { - "version": "6.0.133", - "version-display": "6.0.133", - "runtime-version": "6.0.33", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-arm.tar.gz", - "hash": "e946b75cd1aabb53399aabfa441082d9cc0f324db371d960792bcf5ab66445a16302f11f91e6ba34c699a6bed645ee4f17cec55d9b7119726f0011000e2c6e37" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-arm64.tar.gz", - "hash": "6820d62ced6d9770ebd3667a64a74e2249471ee5920e4ce4101f21e55950f8d44ebe4ffbf20bc66260fd5d1edc5e534a6f0b70522fc41a5e48e75b0bb00e6ea1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-musl-arm.tar.gz", - "hash": "c6669b229dec64672195afd7a18eaac30a513a86a70006eab570edaf8a967e8529bed310f4e91076fc4cec7f0b50b4b26bb1a9d61709aaf3ea487edd32e17640" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-musl-arm64.tar.gz", - "hash": "4e4cf91e1ce9ac057638b2a323637528c89866da8f88f6c70ffc88d54b6b7281781ad17e62cdf03f5f68447ae4ecee48b15fb97c908bc9a55c38c75bf075c24e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-musl-x64.tar.gz", - "hash": "f52babf2f80867535937468df76e71ef7db650a586133309a10b4d8a04ca2053cdf8e7a426f6ff34a3e673437f73cd5169b1a1c376bc09935fca34a8cf212337" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-linux-x64.tar.gz", - "hash": "7b4fe0095bc6d3ea43fc3b32f2fc2ccc8fec83b0c50ff74b9e9a019ed40721f46c60d7b3ac08841a5f89d0802d8c347b14a445032a00f3d9a8661558b9c74794" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-osx-arm64.pkg", - "hash": "dcf85fd31beac4e5b718943afdb571c2a0160510a429af3776e7a3f0ba6bbe2909265a2d5bdaa16e32d4c922c9a531401c1d25937f8b94d579dde3018c2186e6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-osx-arm64.tar.gz", - "hash": "c0193152166cefbe60a7cbdb4af7e2df365c9e67a0ce0ff5cc1aa06a46d4ffd6cccda3bf026a47116f02e4c52875fdd704aa380817dbc3eab653d30f4f5ffe20" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-osx-x64.pkg", - "hash": "043089ee304f53585de2327ea388295e971b0f1e89da003431288d5d8fb231d85a85d7babf262d5009a08ce9b1e070e99b0722e3bedb6070e3f5a063b75c579c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-osx-x64.tar.gz", - "hash": "e142785256b731abd6f7bda79b1422ba6eb9135f61526d6f687be67146253403cbec85d3ee66f49e577e7f296b32f94fa705ccf048292b1c00f981d2ef4fd52e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-arm64.exe", - "hash": "59dc6a54ca4b6c15c8877744dea9e79c076f3df95b83db5daa9bcfcfd695b0e60ff4f81ab00277f16820d3bcf3f2b7ddf94c17c45ccedff526636e9607e951d9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-arm64.zip", - "hash": "2cac18f4134d6713ad9099d5b6a1286957be3da7c5260ebd2a07c65877c1ab3ce847b7d95499ce319b051b3cf05f1ccf37092664d427f227303eba9e8119c8a8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-x64.exe", - "hash": "56d978dffc96cc9ee9ee0a9faaa6acadb24a527e39a06573434f14db20b17a9747354b930282fc506b6b0eb4cb2506b5ffb98d988cc245ea5c81d304b8370cbc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-x64.zip", - "hash": "2fba83e7a710a59e0e89507dfb00c432ad3d24d94af18da4bb50da70a0b488310b49d3911bba30c0609ac8c1cd24e4cb72427ad67a2a7954ed635667eb3c64d3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-x86.exe", - "hash": "193f67f9ba2db8f7820cfff4f52a4cfcbafbe65f55c09a8b31c0941dbdfc30840899d187cdbf23a4366f8dcbe9f24a61afefa6c71a9d8378a68ecff7b631ebbe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.133/dotnet-sdk-6.0.133-win-x86.zip", - "hash": "1cd028eb65171b7b4b03a80d59784ecfac589a8049308fc6ec8c416ab5d6b264e9756ae5c91c982e8bf24d15506d2d6d081c14a5c02385773ca58543f285d64c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.33", - "version-display": "6.0.33", - "version-aspnetcoremodule": [ - "16.0.24211.33" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-arm.tar.gz", - "hash": "7fa8cce31c9aa0c83dfd167b7a116c8b4a34d21b1154efc781bc2a38c14d350e78b5b9ee6fb8e3814e64dec6c92e0f2bf5c5cc9af90c73ea38ccb66540604176" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-arm64.tar.gz", - "hash": "7a60a77a306070a3b94db1acfa73938b6880cd079bdac3e5cab174a47af467b9208e9f41d8e12e080831d528151cdaa5b660bea5aa6fe537ec144543c0fffd95" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-musl-arm.tar.gz", - "hash": "574abceb57f26e15f4e2ceb4837661e192c40898684880e078b8ad4cfc8f506e25a50f3cdc7276e17a9556e95e2b92ebc6d41a74a656244180d27341485a9ceb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-musl-arm64.tar.gz", - "hash": "3da57b3de134db38f17094518d16653356491cf5d67222b2c37d720ec100644decb8fb3ad8dca645134efba7b57bf15aa25fe84b9a12711aa80c7de0c60861b4" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-musl-x64.tar.gz", - "hash": "f5a43b0bc1c832fd70cdfa4fe09849602760831133a2412f5f7d259496ccd0dc65999ba77a4e8d4b06a7614b851d4797f92d5c7c5c1c26f39642b75edcff13c2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-linux-x64.tar.gz", - "hash": "12b34fe1d0a679ff63db4bf002a2988194d9e64d0e107d128c247821dd939a86eced0fe453c0638d3742dac3a32e533792c26299400fb4fd5566b75177e66875" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-osx-arm64.tar.gz", - "hash": "26a2f1d6cb3ef9df5b6abc16e025fc2e9aeda386b5da53428abae67d76ff007bc921aec60cff9675dbb7291db7b75c5a7bcaadb54e8c04de59308b02dde924cc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-osx-x64.tar.gz", - "hash": "f8dcf3d6de7a34d7fb402fd1ddf55bd810cccb95831d12312bc7607c6c7de8a46200c66d7e753250103961ba2e97fa6a85206b49442e1aeab1e290ec69bb55c5" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-win-arm64.zip", - "hash": "813cb41c9df7332b5eeb12424bf59c9bd10b629ff302eaccddd2210aa333d5facf3f46b173deddd6223578c50a625009506db5ecd4750b68b0d3aa0e173cceec" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-win-x64.exe", - "hash": "f00fb12a849345e454eb4ee5f4eca5daeb3d7d21cce12a3a25b9335b77a4cc91dcfffacf7c2048add63231675369f1e50fef1da0a208727ac4f3d7ddcab89048" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-win-x64.zip", - "hash": "abbcc5bec5e4e17d90dfbf229bad311ef07d90ec4ee095da06881760d5d6639273041930a7dc64897c1bea23b405171441386f33196e38d8940f04597d6e205b" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-win-x86.exe", - "hash": "5adc639df95f430ed475f3c12154debf35cb3275f04f0809e8d83a2d7f042759329ed1b4a48b8323fcd7c3aaa0ea6f274cb4c77128d9d1dad6a0de02d05d9f93" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/aspnetcore-runtime-6.0.33-win-x86.zip", - "hash": "85adcc62325686a3426bf8126f622c14c83a569f84c006edb1f9472086356a52190452f32cc5f3c6d06064fee05633db0d4416281d1f9495a9a484010a5bbb3f" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.33/dotnet-hosting-6.0.33-win.exe", - "hash": "b9335c78b05abea33793611fa012e88f030f68a35291b00970f43e4d3e4dba5bb6817b3c149d27cb81ad36af888871a847c7bf4f1898d3035a9a9664a870b322", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.33", - "version-display": "6.0.33", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-arm64.exe", - "hash": "f673f4641022d34ed3245e57105fd37efbace6ad00eb647e063de9f1f7796c963daea4d8f30c407cc72edd0c520107738f542125a7861d3998a619d5f1bbd92b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-arm64.zip", - "hash": "5d7e9ae039360cd5d779175d2ef9b89b8378a1b7abeac06b01320771594f3b0699f21852255e1bc7d7620270d0d76a1f88a686d1a7c3d61c229076f3a52cd9a2" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-x64.exe", - "hash": "da106b70df99f89d2353dd9d2ac6edb6e53ce16158c1c949038b76f0cd2661e76599f40c0c67e2007488f2219f97757239cb76e175078f7774f29d1b3b737f51" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-x64.zip", - "hash": "4882871869227144ae5d2c2d6237f853dd086d3b75ce5bcb63406952f8849742c16f110816ace4b13e632e498e06d9694bbd5fbd4128d923d5cb1d8595937da0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-x86.exe", - "hash": "c493bb1e668cb6042a074f454a2ccc6738d2f76c60a1e5d322da360d3e32799162ca861bb78eb6ece930b2773f6be31016fddff6206f46c3fdeba6e168f43fcf" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.33/windowsdesktop-runtime-6.0.33-win-x86.zip", - "hash": "446eb77cde39667844b542a17fae192404735e535c9795d5b12f717560396029b3afadaddc45f643de86c9fbc11e9e2d6a802830ff616e09308722fe53b9e7f0" - } - ] - } - }, - { - "release-date": "2024-07-09", - "release-version": "6.0.32", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-38081", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38081" - }, - { - "cve-id": "CVE-2024-38095", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38095" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.32/6.0.32.md", - "runtime": { - "version": "6.0.32", - "version-display": "6.0.32", - "vs-version": "17.4.21, 17.6.17, 17.8.12, 17.10.3", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-arm.tar.gz", - "hash": "f46bbf92bcf442eed0dd943735a86e9e44bf245775d933d2226716be7b05d521fb804f7da83e1b9ebf9a1d03130f891bdf6822c988ca8b0d52c593807b8722e1" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-arm64.tar.gz", - "hash": "dd9807d0e8872956602241bdc06e33cc6d7cb5519bf7d7864e1671c8608adab28b539ab910778a5f2543e8cd06c9db64f8def044180f29167ac82bc36ee258e5" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-musl-arm.tar.gz", - "hash": "b5a667e875a5f7e247dc4c9a5e2084a4162e20631dcfdfec10359d0235f271b65e95ce4b0b7aa5213a0cb023a84208640e13b6259b5edcb26e0e19b406114e6a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-musl-arm64.tar.gz", - "hash": "5ed3da55a27f9dacfa6fdb9c555e797edb36613cfcd9f5fc4290da2a82736436b18f448afd15d980ef11a33bf5013cbdaf87e821dc88198b76d723482c7c12f5" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-musl-x64.tar.gz", - "hash": "01832b7f6359bdb21130486a1d40098e4bcba0ef93afa0610d25bec3295cfa8e2e930d284b9ca2f2bba30e0c2ddd6bdd15190003a2751ffcef5947c52d8886a5" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-linux-x64.tar.gz", - "hash": "9babfe66f4a4261dd454f3220899af0a19532ab93575b581cec838f1c5f130d98b6fb1aaae5ee8e5b2e70deb55b619a0d55347f014ace72cb84b78d61faf0a59" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-osx-arm64.pkg", - "hash": "9371559cfec40a7b10807368bded287da539c774d4193e9df18ecd6a99ba39e8e7e69894b217d6d2cef90416940f33b193a956fcc03c460de38cc4078ff0e8c9" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-osx-arm64.tar.gz", - "hash": "cf9ec72bfb89124d12a359725689b5d4539ff6a8235fafada93d71b7e1c9d836592e6edecb2e1242a23298b0489050068322d2b9356b5d2e59f7dc519f2c5cfe" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-osx-x64.pkg", - "hash": "eaf98b0b240e2699110261f7d51b5774e989aa70450fe81417296cef17095a865ffa7b27558910b1b1da7ad32e4eba3589d2e9f11572cc5d7ce9a2800a124581" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-osx-x64.tar.gz", - "hash": "d9e29d9b5fefd1b431135c6cf504dc16400920eaa1d7b67ec5b24d1ab672a9d573a6c55750abb116facd2b228ed07a73951b7feee1982d5b24ba3cd025b4e6d5" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-arm64.exe", - "hash": "c319ba9a569f1ac63338d87160f288a3d92d0150ad5ffc747a790ae05d343eb3f6a04236ee2a8ee7cbe3003f331cc0b4ced5faa4061f3281c3d73daceb7ae744" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-arm64.zip", - "hash": "9d2b1b57d71bf05144e5c096cb9bb47f5010e6d258cb87db5450911be11667cd21a75a82d3b4ebb5426a8c3293da6c69091f01157db19c11b96946cf75d8680f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-x64.exe", - "hash": "e46fcbf574776ed1859296a18734af102a921e8aeec0069ee94bc8f24d4c69aa28b1b15dcba3754ac1ad3efe099c82bc4653942931eeeb854b2ed0684d52ea85" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-x64.zip", - "hash": "94788c0586735d12b99a4853a5ce7f4b93a43db50d0564096adb7af6d6d2ad183393998c5d16ac323e6c8b26eefd4d5f6ad902917d7dcd2afb2db892d997a0f0" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-x86.exe", - "hash": "49e36e23e1cb8b7e3f04ffd5269aa3a1a672542715295b1a0069a35bdb9baf20248337609742a57380a73a272030ba1dc6e494a8e4724c89866197852bd2e699" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.32/dotnet-runtime-6.0.32-win-x86.zip", - "hash": "53d276338098c5a54e3a3e334c64fa2c9034ce2cd55fde201687cf6bdc692685b64f1f69a79a5e853d48bf0c492d4c63c3ddffb17269e51ab70f0de25b36c6ff" - } - ] - }, - "sdk": { - "version": "6.0.424", - "version-display": "6.0.424", - "runtime-version": "6.0.32", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-arm.tar.gz", - "hash": "671c39af0b0fa658b2c55b32923b90122074e0cff3070588134d50625ac0dc52c9abb93e5c872b7c84231128d5ef8aa213133df7fba552bd9aefb8e83f93e778" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-arm64.tar.gz", - "hash": "6a24dcad251016aa82ea11d3c665b250d5f86e7f8a82a6ec0f01d250e9cd671fd0746812757c023f28d4929248d326b2a5dc13ede8d5b5486671ea1452954aed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-arm.tar.gz", - "hash": "24b6ef9e2a92f74ec354fcb05ac44532adad96a2d2551a3f49999eb298b3f8a9fbbbf21780b79f281933b3a8f1a93e1f9c87e1a022209715e3864f4e93d100ba" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-arm64.tar.gz", - "hash": "64fd8d52a46003ae3763a65f9cdef817e753d27d3f6e721fefc90743ffcd5e72d6695097f88f91fd1a3f7c038fc5976ec49dbb0d11a7868b45f8850c2a19cc2e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-x64.tar.gz", - "hash": "352f08327fa8b830ae75f28d0f9cb438c47f64b9af61bbde202dca67f3753489703e9e0ac8001217ce7062e7330ca58b5dae9e921e1923a9c7fa925a3a535336" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-x64.tar.gz", - "hash": "e9823aa2ad261199f8289fde8721931c1e4d47357b4973b8c7d34c12abd440bb932064ac151b0e0d7b3d5b72a5dfe3f20d5dafa19e6f56f1a61ad54b7de5e584" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-arm64.pkg", - "hash": "c4ccbdc43757bcf974aaf6d5e383494b1ffc254259b27cecfc600138e5a7b3a7cecfb44e5b5ddc63a9ab508e7eb03c47f69c1cef4adb0d32e5772a3c6b1678d0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-arm64.tar.gz", - "hash": "8de0b5aa92445a366807e3ba87d7b9de3b7dc035d96f7070f03197a6e6b78881d1dc279a619914140cd9025aa9084b35526d6db2c2db396cc07ebc398cbc6e71" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-x64.pkg", - "hash": "c1ab3dd804d6e19c6508e50feae2a42f2a8c189eadcd3aeb65244b03492640f721e3fe1a524b86605c343ab5f083cb178769d3ceb4b2795de2527cf99da3c418" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-x64.tar.gz", - "hash": "611a226f16d2dc6c5cfdac1911f116d159d65e1e0d4189afd8db8d88faecd92e32244e96c8d3cfa7d094a6d8ba086323b8d1d038bc0efffcd14795d197cf91a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-arm64.exe", - "hash": "698435a90841aeab8f8682f77e3c7b16aa71d2efcb83d3e8851eba964cf4c7163776f95457d697aa4f300274a526c5981c2153c8ce307c5c69d72312acb93ffc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-arm64.zip", - "hash": "812996c005760802764ccecae31153a743fb469fb7d7b4ad7528ae4e5bc1443679ef723ae0363e3541865de39d78e370ffdb22cccdf8e49598628cfb731aff58" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x64.exe", - "hash": "7fe3cc5b4dae375aa7c1b1e46f8f84bd59dd2c985dcfec3c92f5626e1d42890375d8808ae16dbdf714f204f8ad23e2d49dd7f081590477828af04e6e4801cdc9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x64.zip", - "hash": "309dcfdede6c723c8a060e2500a6b5622818f15c55352de10f9870fd52975acae20fb0d513723a8ab833df70834dc8dfbe335012bb86638d86bf94f1ce42353c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x86.exe", - "hash": "9b173820df5472b5a745f5404ddbb43c33edb0cd14e54e04611c67d2b5d01f33c4b27376e7da056d106ee649dfeb1bf0fe3dc4533c4542d997c88217ab1f7084" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x86.zip", - "hash": "eed1f01bc31f1bbc255a7c8287619259b55ef441640a9df393fafd1176232d8679ab7c7c3c38496b733c6fbcd19bb72c9ca4d362f8084472e4bc3ecfa24c61a3" - } - ] - }, - "sdks": [ - { - "version": "6.0.424", - "version-display": "6.0.424", - "runtime-version": "6.0.32", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-arm.tar.gz", - "hash": "671c39af0b0fa658b2c55b32923b90122074e0cff3070588134d50625ac0dc52c9abb93e5c872b7c84231128d5ef8aa213133df7fba552bd9aefb8e83f93e778" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-arm64.tar.gz", - "hash": "6a24dcad251016aa82ea11d3c665b250d5f86e7f8a82a6ec0f01d250e9cd671fd0746812757c023f28d4929248d326b2a5dc13ede8d5b5486671ea1452954aed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-arm.tar.gz", - "hash": "24b6ef9e2a92f74ec354fcb05ac44532adad96a2d2551a3f49999eb298b3f8a9fbbbf21780b79f281933b3a8f1a93e1f9c87e1a022209715e3864f4e93d100ba" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-arm64.tar.gz", - "hash": "64fd8d52a46003ae3763a65f9cdef817e753d27d3f6e721fefc90743ffcd5e72d6695097f88f91fd1a3f7c038fc5976ec49dbb0d11a7868b45f8850c2a19cc2e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-musl-x64.tar.gz", - "hash": "352f08327fa8b830ae75f28d0f9cb438c47f64b9af61bbde202dca67f3753489703e9e0ac8001217ce7062e7330ca58b5dae9e921e1923a9c7fa925a3a535336" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-linux-x64.tar.gz", - "hash": "e9823aa2ad261199f8289fde8721931c1e4d47357b4973b8c7d34c12abd440bb932064ac151b0e0d7b3d5b72a5dfe3f20d5dafa19e6f56f1a61ad54b7de5e584" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-arm64.pkg", - "hash": "c4ccbdc43757bcf974aaf6d5e383494b1ffc254259b27cecfc600138e5a7b3a7cecfb44e5b5ddc63a9ab508e7eb03c47f69c1cef4adb0d32e5772a3c6b1678d0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-arm64.tar.gz", - "hash": "8de0b5aa92445a366807e3ba87d7b9de3b7dc035d96f7070f03197a6e6b78881d1dc279a619914140cd9025aa9084b35526d6db2c2db396cc07ebc398cbc6e71" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-x64.pkg", - "hash": "c1ab3dd804d6e19c6508e50feae2a42f2a8c189eadcd3aeb65244b03492640f721e3fe1a524b86605c343ab5f083cb178769d3ceb4b2795de2527cf99da3c418" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-osx-x64.tar.gz", - "hash": "611a226f16d2dc6c5cfdac1911f116d159d65e1e0d4189afd8db8d88faecd92e32244e96c8d3cfa7d094a6d8ba086323b8d1d038bc0efffcd14795d197cf91a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-arm64.exe", - "hash": "698435a90841aeab8f8682f77e3c7b16aa71d2efcb83d3e8851eba964cf4c7163776f95457d697aa4f300274a526c5981c2153c8ce307c5c69d72312acb93ffc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-arm64.zip", - "hash": "812996c005760802764ccecae31153a743fb469fb7d7b4ad7528ae4e5bc1443679ef723ae0363e3541865de39d78e370ffdb22cccdf8e49598628cfb731aff58" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x64.exe", - "hash": "7fe3cc5b4dae375aa7c1b1e46f8f84bd59dd2c985dcfec3c92f5626e1d42890375d8808ae16dbdf714f204f8ad23e2d49dd7f081590477828af04e6e4801cdc9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x64.zip", - "hash": "309dcfdede6c723c8a060e2500a6b5622818f15c55352de10f9870fd52975acae20fb0d513723a8ab833df70834dc8dfbe335012bb86638d86bf94f1ce42353c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x86.exe", - "hash": "9b173820df5472b5a745f5404ddbb43c33edb0cd14e54e04611c67d2b5d01f33c4b27376e7da056d106ee649dfeb1bf0fe3dc4533c4542d997c88217ab1f7084" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.424/dotnet-sdk-6.0.424-win-x86.zip", - "hash": "eed1f01bc31f1bbc255a7c8287619259b55ef441640a9df393fafd1176232d8679ab7c7c3c38496b733c6fbcd19bb72c9ca4d362f8084472e4bc3ecfa24c61a3" - } - ] - }, - { - "version": "6.0.132", - "version-display": "6.0.132", - "runtime-version": "6.0.32", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-arm.tar.gz", - "hash": "a486fa55d2618aa9b4c74111592a42278bc4f5a7656b2265c8f69789f2952f742a3b89b46b95787ce3d9f778d65bf877478c726bd13d61e71a9aa93506531100" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-arm64.tar.gz", - "hash": "574e63f1de4620f7f62421acf6c0f1971089b10b08e81125582d81fb23c0fca5c7703b79c0d7627ab743ed8ceb5d2948fdb606a9e8c6cf7628fa27d510d4719d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-musl-arm.tar.gz", - "hash": "70849c27473b2f4daf58a8db4dc694c70c748a285106f002f7aab69a8db45778625be1c475c91933a6cb98e1325ab184bfb41be3cf2bdae1e67bcf0fa0117231" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-musl-arm64.tar.gz", - "hash": "73caad1f5dcd287c095c29789a824df308ecbaaa1313dbaef703280ba2af72cdf2d63cdc3a1f80a5fa8a21407a0d031552c44f10e44ea3b55d3da80b49642c7a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-musl-x64.tar.gz", - "hash": "b216b9338ecd595f9a6f49cc3c33d621df110cffa0cf54f270a102397a78ea0843805994d9c437b07b8e1eb4b790072d9cd7eaec87d48b78593e01f72238a15c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-linux-x64.tar.gz", - "hash": "71e23cb50ee342d23797f0b9d8ad524b42b3be664b20730da7ebb7cb85c0ec5c69efefa3a68907190328a693f6e21bddd7b9e7ca3da2f48434be1a736b3f7ccb" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-osx-arm64.pkg", - "hash": "b14de62b79f7d8c4d5928e303709fb3eaaf96b2cc5e13977be6c5d5a3c4a2ea9239f42f775919424dde43b350878dee6f4cd95d99c10b02a641dbeaf5d2182ca" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-osx-arm64.tar.gz", - "hash": "076f890802a0446b43a6aecad0efad939f100e70ed7b5f4ceeab87b0781598b23d647bd77773ce8d895a1573fe68e05cffbcc0d5368cdf954b0471abcdd2780e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-osx-x64.pkg", - "hash": "c9ba1b85ab9ca7a42937cf880a060ae825572af3fb5fe169e4cf8ec33826e864fc4644f2cf0b2861c4f3b5d1fa37c43db028f61f6e8724b40207c0bd43b0bfbc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-osx-x64.tar.gz", - "hash": "479a45792663144f386ac9ce7f387e2c6d04024dd85de07a83956b4aeff7e91e062937e6e5c341fbc447566284145a491a2faaf6af929cf1940c09ef4966f7bf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-arm64.exe", - "hash": "cb0131b29031e8fd84c432b3350bad0f899f6b3c7d4ae5ced2b6310c0fd6f77f6c905716d47c8adbed222993cc10891bc5aca0c1ce400bc796e991305263c550" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-arm64.zip", - "hash": "de601e4b9b441bfa9d7fcde0a648b2e589736568124675c6586fe071f8c8628d1cdf9554b50e5e75a49cf3fdefc43648c18692d6c5a02924052bf70920cb3ef9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-x64.exe", - "hash": "85d0e607a6a74279bd25f863d6c2947f217c804bc0d195cc3c11c0e17c29fcc7178238d73f121efd9611c3d4f63c154c04fca1a7211b97a43a7343bd59f7fcfb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-x64.zip", - "hash": "eddd4b74460ea8c53e21745e412a55e6a5319bfc6cec4e86fc98768dab23cff23b60c02cbc18b62a38704cf20554b3321d1d8ef8078bede74d6361d989d703c8" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-x86.exe", - "hash": "a247c2a07332116a0dadf0267faadc6eeb12fdc35aa3991e8018976425948de870bd23fb29723c2525bacbb191c39dbd674ad7982c05425953b9eec1f5030ba3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.132/dotnet-sdk-6.0.132-win-x86.zip", - "hash": "f18acd447c90ad96d32ac9b4541826b17bcfa164b02ddf064beedcd995008df6b0a7177a6bd5c7e3d921fde9287b8e8a45dff3fc7094ef3702da8618df8dd012" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.32", - "version-display": "6.0.32", - "version-aspnetcoremodule": [ - "16.0.24166.32" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-arm.tar.gz", - "hash": "c145756c875420afd86038d39ed13706e8db4a668041f3cf9ff7412c37ad7e9cf2c20499946098066166fc298fa0a4c63f00ff7ca7b83a100528a27c20497213" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-arm64.tar.gz", - "hash": "7b420354821f30809a6e8278f6e9c0654599d3e3b578b777da0f8e387612c20f28ddc49d5baac09627857297648a53ca847bc1237bc30275db5b661253f67523" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-musl-arm.tar.gz", - "hash": "b475c5880c222ef0c3e1a54bc7099dae7a26c5f21aa40984534502db0d384c72531e414536d12970183e052aa5b8ba289ea32ab011096347bcb9f1275df48172" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-musl-arm64.tar.gz", - "hash": "d479d7534192a8a936cc751c885c48512453ce51e2879866b26bbf354181f0cf053b8c8258eb76927f204aea6d639d10dfb1c4db80e7b35c592e00ec0b1eb4bb" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-musl-x64.tar.gz", - "hash": "8faf9f49c86adac4a09defeb4063ddd2cc2da7a3812afd5b9a6cce8d17d7b5496b737bbf213864c89d5654c83c5574fbc9ae117668252ccbb593d4dce53af71b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-linux-x64.tar.gz", - "hash": "1849c0073f12477b94357a1afb1cbd4ad67764263528b66037c19d554df41e681e4b41c0804b106319fe661d0bc3bae9e29e4913c0d0df33861cf6f32ebaac96" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-osx-arm64.tar.gz", - "hash": "63de1906b3217c8e42dc6da3c5d1dd0f02ec7c8c1f988e2b5df1ca4e2e9220d6ff306e5a1d8f2af1bbc7eecd00790799bf847097e9054f96cd460cb22d3e5ce0" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-osx-x64.tar.gz", - "hash": "7a91b051b6a48fff6838dc7565ccab11bb16ed0cddb1ce8bdb870d7b1a8978e544047541c2ff3b5b08272768e4dc8edd193cfb2acbd3a6e8cfd5b441dee24b47" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-win-arm64.zip", - "hash": "d49360990474a0620b53bc95495c75d202a7cdfaefa9a86a82696d434485974ac11d045610f726aa749a5cdb42b5612f7ebbd5a4663d2a7bd1b6dde292c38521" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-win-x64.exe", - "hash": "e03993dec0bcc44c3ada0f2e1d4a51dd50a6b3467f3bf894da0d1ec9d8e876b246a48d60b1a7117db0593a088befc5134e9b6888f99fc801e27e69942d942d7f" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-win-x64.zip", - "hash": "4db7a0736bd1266245f4edeff852ebc09e00648f632f39c4c59df768935f7147a1d95dd66ca97f175eaa04ed1322470944dd958108fb008c0dc8c9a918c671b2" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-win-x86.exe", - "hash": "fcdefaf145779a25b3ecbbaf3cd94a6b4e3353985aa748e89d928801b93ffe1d7664fbf5139518f4424e9771f8ff1910949477c7234ba61a8aaaa7cd83173592" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/aspnetcore-runtime-6.0.32-win-x86.zip", - "hash": "7b8f05e8e39017b1e07fbee00e44022402fbc206f85876796d11e093403a204c66aea3224b06ebf836f29a9da1a9d09aa2b8489a717b3f67638b333b7ae43c3d" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.32/dotnet-hosting-6.0.32-win.exe", - "hash": "85260f75c56d0eaff6de0aa946641f5e626f1604bc84900030924cbb194f5fccca7899a54449e9eb7c6b0aff488200f4c71139b5db255f2584957dcce9565bf4", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.32", - "version-display": "6.0.32", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-arm64.exe", - "hash": "fd9e945e599668b0457cbb2fb03682176e9524e49dcb183a24e4dc6d1e150545db3aa82a2236fa37f99ae080a7130efce49d1bb4bfd83765087e40f79dd9822b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-arm64.zip", - "hash": "24c0e1f125aa70bc07c35c0c3fce62a87e6822e34c10212b9eb5d1e52cd68737b9613fca44e031dc62adafb7486b4d6728655151c1faaacb22915eaa369a4fae" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-x64.exe", - "hash": "b9e35fb820b86f217c8ea8121511ca17eac042d19e630fa5d2371326567d4110eee4d1bb5a78671e7ae983eaf8ea54a5278b77431f25ac028d6061440b5b02f5" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-x64.zip", - "hash": "3f270a53947dc865c8f400ea27119956d6682e7c4c4af365416becc076d9acd0a378672914074dc3edccdf1c0cbade1eea4ca2fe84b1b7f05c79d633a4bbf200" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-x86.exe", - "hash": "2b216f2bab1bb5d52dd3c60105e92256fde990955208d20ac4602d74b8723aad827527c9243b619b752d456da08129be00110a8838c24290755be6494c6e521e" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.32/windowsdesktop-runtime-6.0.32-win-x86.zip", - "hash": "393e1968e054ba607994019c47455c01539d6698506919235b616bd85ef2bd36827bcc8b4520da0a6aaa380c9ddab6337912389c20d7b9ad028e66c0ecfc6ec8" - } - ] - } - }, - { - "release-date": "2024-05-28", - "release-version": "6.0.31", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-20672", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-20672" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.31/6.0.31.md", - "runtime": { - "version": "6.0.31", - "version-display": "6.0.31", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-arm.tar.gz", - "hash": "d1e3a8ffa90fdc6ce9df9804d0e80f4cbfb9f9a1debf3f26ff0b3846ece4591cea73caca3d5dd3ea999f9d4d37afc5935b4befb74422f3cbf40f1bcbf8507fcd" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-arm64.tar.gz", - "hash": "022c7fc8878544f8abde8cf13ef661327238381c8f4731b4975be294616fda00a4b093036a896baef99eb58b881890d3fa951cc51b0212e766a8a7ce95d2c440" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-musl-arm.tar.gz", - "hash": "e8b74decfc8b818dba00802cd697dfb6195cd8791a54e711b99fb87f3850b576d6e3887301fe1c7b8837e549acccd5e7be01e7df0a818c5325544938dcbda157" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-musl-arm64.tar.gz", - "hash": "4aaae1b7b28a417b6c37dd243e4b2519859e718b64eea29cdfa96b9e1f1b11a06af8c45f0eb33e5fbf55711f2aa8c6dc31791faa28bc75e727b29ac8c75bbcc4" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-musl-x64.tar.gz", - "hash": "be9022f66c2edeba71584be94a35133b524c3bec5a9a1e773e9825004f80e047bf65bd6ddbc1c609d118ba80094585622bd0ffc146518b58814f08d69c68433e" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-linux-x64.tar.gz", - "hash": "8df8d8bfe24104f41cc9715bb04fdc1811426c4d16f29336607c68a30d245fb8f36577d639e7da4865204fa85280fb5cdcf47e93183afe6b9e946e0c53df32c8" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-osx-arm64.pkg", - "hash": "702d618b7c5fd757e64efbeea9fe5b48c2f3b0fa8925275f29582c390bdc8adaeee20a90623b2c8eb72e5a365eda4b0c9a6e48712dcd16350f7addfabe992429" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-osx-arm64.tar.gz", - "hash": "57d89d189fd7c33ae9627a06dd543d4783c1e04376173e4a2868a342ca864323e41d5a4050dd82fbd9d7947ca1ea12185e80294c70857b97e3d32eace15940cc" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-osx-x64.pkg", - "hash": "5a47b0360c6c1542f3d5f355ae6ce346d920eaf1ddb2acfada04d7765d0b5a60d0374106c8f1b02328e1b3e91fec06886c8f19916dfb91fb6d1e8264026f167d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-osx-x64.tar.gz", - "hash": "fb6ae3a5f5f31078cbc98d06101ed53b6a23e9a5582c3d660850e7315fe21d776ad2c3ec716ce27cc0ac87c37d99c6dd9bc864d9410917aa4c73cd885010980a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-arm64.exe", - "hash": "ee50ed52db05628231793e5b77530d9bc9b485a75e0d10d1690e9398e87c9f02cfc970ba26372ecb7920d51c9e074b1dce01d877116f4e6e3ae49e6717482587" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-arm64.zip", - "hash": "e7f88e2fa93457ed16df07f9db13be341347c3616139b5b92cea5ab68cf5855f6c607774cb9aff8068b4bf85abd6503432b3d224e5ff1e0ce4d0c1189f1e5ffa" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-x64.exe", - "hash": "e0510a794cfc758b1eaa9b4b98e547dc45c5d327e7b5dbb6042e45cee5b862037ee08608b43aba59c1e8ce99943fa061442d527eaa9aac7cef72f638bb7a8ec9" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-x64.zip", - "hash": "0729e991d6b644596c4dcf07378534e181603941a11a8ab8c61d3a5ba4b414eae5151ae9c53a4f381ac53d636c3784042de230037c5ce4c45276865203aecfe4" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-x86.exe", - "hash": "94861bb9124310a8edfcb126f56699bdd58fae0b5cdca1e86b2233de5555e666b42431e83a683a170f7823cbe7dba2a21beb66ab5353e6d7f43e49c4f2470f69" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.31/dotnet-runtime-6.0.31-win-x86.zip", - "hash": "eefd913e51f3d931430ca5940ac780280969ddef5c11fca90cfa529ab77f7e2b5cb9e659eb1062b329afa210e4385ebeb3ab94017e9e5328981afa69013b740b" - } - ] - }, - "sdk": { - "version": "6.0.423", - "version-display": "6.0.423", - "runtime-version": "6.0.31", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-arm.tar.gz", - "hash": "4be68c3f50fe9f04839bb2226ed5b5c98577a4290a3d627c672fa24968fb267e9186d611b3f8332cb4545ac86a6acea4e0b1321af5cb6973623b0ee83bd743c4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-arm64.tar.gz", - "hash": "42f5e89d6d9a9923bbc20398a6272290b5f693cc767aa540233630f849779daa8cc7d8ac87655f6b2c8e0250bf5be986a8e8ae502b6f33c0b3e474d041b77625" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-arm.tar.gz", - "hash": "d37fa2001d563411e911ec1820224991116ed628939fde4a98687a37293a36c7114ecd2d1a70c2e40890f5dce0d494c9d1b7d23745463f1899a36d5aa1a78102" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-arm64.tar.gz", - "hash": "701827824c27688ac3f4834b379261c5c78a0727880b279cf90a425b9476030782f9b0162497757674ee9f154a6c81b1e4054f338be73f1bb70a271280855cd5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-x64.tar.gz", - "hash": "64806b7ea059403e8e66276cfd05f72551371ea3a6bc3ba5d4638bdf7ec19eea793b4e4cff1bf3aa0c305801cffb7dddf9020491ea9eb859d858b8e01f64b3f3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-x64.tar.gz", - "hash": "4b4a0e66634211ae04fa030e18ae9e22640f5828307ba85c4bae596ab2d31260519197828dae3b2ec73d6772635e0b375536ea6591b03c67c2b7a5566f016952" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-arm64.pkg", - "hash": "e5d36b69155d3f54a613baad37be605251cf4b7abe1fba58fc2e5db417c1713e14163468bdc376a8d2b1ec5af712f99563f50bc15843631b18c5336fdc103ec2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-arm64.tar.gz", - "hash": "fb31894ae43764c518d7909859a2b598134bc03bbb7996ad0badc1088cfcf4d666f25746f77cfef1aa042c2f9fdb348e6975e1c4a98ff93c1b206a4a0429f995" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-x64.pkg", - "hash": "2aa490eb616d17aa8cadc91a0ec86a4ebf4ec8819e7831e92fc9de55b26565aa8b6913186b7bc3a3839eba82f63cc81854500a1b65253c64d242c54483806e1d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-x64.tar.gz", - "hash": "31d8f5aa5b0fc5de1c6f809920cc8ffa0415059daa12ed21888795e600b528376d7b14da5b946ae5493af7214543e6494d9afc8ca017d05ee56dbfd10e2fade0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-arm64.exe", - "hash": "5f3403b25b9c3504fdbfbf0cd40a7e2e9f3002993a94073d9afac0dfd3b349454a5b229c15aad7e2fa5906ac8b910a64933cfc06f47991add937635f2ef1cc84" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-arm64.zip", - "hash": "16f8be3df06766bb6e285665e3542c5ad857a5efc5e9239754d235de11ac71f2e15612bb96d702c84a354923ff2b9c1ceac057fd7cbd3edbecd7cf9658ef3e9d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x64.exe", - "hash": "cb61a0e3f6cee3d5c073ba16f7eb020b58a01ded4481c2ae970cb54cef9b3416af1217bd949d77e56ea3e343171de8360d688dcfe60aaa679274852727cf499e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x64.zip", - "hash": "2fae66117bca22d76afde89e91bf8a40b4602254db4f831b0647e69e3ced23f972f335521847955069e6b8a74e7320ffe2af1f2bfc48842216451216845c3301" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x86.exe", - "hash": "5c7ede0c9d09dff69ac314ec3b4fdc41d5f31f89ec2d75a677ff8bd68d7b733ccb84c9dd51382ea4bed32712502dacfaddeafc7a9b98a18b676f4e3c588bf3ae" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x86.zip", - "hash": "b2777bc77406a97318f68eae1d8ede40150b62a6983dcb4789da7609c977a84f883979d59c553ef201f3245ce6a57c3f760c275e52bbb83b8e1649ef1c0b9f6c" - } - ] - }, - "sdks": [ - { - "version": "6.0.423", - "version-display": "6.0.423", - "runtime-version": "6.0.31", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-arm.tar.gz", - "hash": "4be68c3f50fe9f04839bb2226ed5b5c98577a4290a3d627c672fa24968fb267e9186d611b3f8332cb4545ac86a6acea4e0b1321af5cb6973623b0ee83bd743c4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-arm64.tar.gz", - "hash": "42f5e89d6d9a9923bbc20398a6272290b5f693cc767aa540233630f849779daa8cc7d8ac87655f6b2c8e0250bf5be986a8e8ae502b6f33c0b3e474d041b77625" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-arm.tar.gz", - "hash": "d37fa2001d563411e911ec1820224991116ed628939fde4a98687a37293a36c7114ecd2d1a70c2e40890f5dce0d494c9d1b7d23745463f1899a36d5aa1a78102" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-arm64.tar.gz", - "hash": "701827824c27688ac3f4834b379261c5c78a0727880b279cf90a425b9476030782f9b0162497757674ee9f154a6c81b1e4054f338be73f1bb70a271280855cd5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-musl-x64.tar.gz", - "hash": "64806b7ea059403e8e66276cfd05f72551371ea3a6bc3ba5d4638bdf7ec19eea793b4e4cff1bf3aa0c305801cffb7dddf9020491ea9eb859d858b8e01f64b3f3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-linux-x64.tar.gz", - "hash": "4b4a0e66634211ae04fa030e18ae9e22640f5828307ba85c4bae596ab2d31260519197828dae3b2ec73d6772635e0b375536ea6591b03c67c2b7a5566f016952" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-arm64.pkg", - "hash": "e5d36b69155d3f54a613baad37be605251cf4b7abe1fba58fc2e5db417c1713e14163468bdc376a8d2b1ec5af712f99563f50bc15843631b18c5336fdc103ec2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-arm64.tar.gz", - "hash": "fb31894ae43764c518d7909859a2b598134bc03bbb7996ad0badc1088cfcf4d666f25746f77cfef1aa042c2f9fdb348e6975e1c4a98ff93c1b206a4a0429f995" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-x64.pkg", - "hash": "2aa490eb616d17aa8cadc91a0ec86a4ebf4ec8819e7831e92fc9de55b26565aa8b6913186b7bc3a3839eba82f63cc81854500a1b65253c64d242c54483806e1d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-osx-x64.tar.gz", - "hash": "31d8f5aa5b0fc5de1c6f809920cc8ffa0415059daa12ed21888795e600b528376d7b14da5b946ae5493af7214543e6494d9afc8ca017d05ee56dbfd10e2fade0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-arm64.exe", - "hash": "5f3403b25b9c3504fdbfbf0cd40a7e2e9f3002993a94073d9afac0dfd3b349454a5b229c15aad7e2fa5906ac8b910a64933cfc06f47991add937635f2ef1cc84" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-arm64.zip", - "hash": "16f8be3df06766bb6e285665e3542c5ad857a5efc5e9239754d235de11ac71f2e15612bb96d702c84a354923ff2b9c1ceac057fd7cbd3edbecd7cf9658ef3e9d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x64.exe", - "hash": "cb61a0e3f6cee3d5c073ba16f7eb020b58a01ded4481c2ae970cb54cef9b3416af1217bd949d77e56ea3e343171de8360d688dcfe60aaa679274852727cf499e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x64.zip", - "hash": "2fae66117bca22d76afde89e91bf8a40b4602254db4f831b0647e69e3ced23f972f335521847955069e6b8a74e7320ffe2af1f2bfc48842216451216845c3301" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x86.exe", - "hash": "5c7ede0c9d09dff69ac314ec3b4fdc41d5f31f89ec2d75a677ff8bd68d7b733ccb84c9dd51382ea4bed32712502dacfaddeafc7a9b98a18b676f4e3c588bf3ae" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.423/dotnet-sdk-6.0.423-win-x86.zip", - "hash": "b2777bc77406a97318f68eae1d8ede40150b62a6983dcb4789da7609c977a84f883979d59c553ef201f3245ce6a57c3f760c275e52bbb83b8e1649ef1c0b9f6c" - } - ] - }, - { - "version": "6.0.131", - "version-display": "6.0.131", - "runtime-version": "6.0.31", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-arm.tar.gz", - "hash": "77ce97693c77ba120e7f29f7d87dc6f599fa97696a74a6e94b72dcbfd5e9e1fd47afbbabc3a8fd180c2c301a2da9895d19e3d3262aa4e1b4a941c8f7c930e661" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-arm64.tar.gz", - "hash": "5815bc11dbab9c8be4c9b0d20903d3b6df2e825bbb2789f2d90d1b7d7fc3f4de28a450f5906d82675e8f67d34da8b28526bfbd5dfefa109bd895d2ac03f08cd3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-musl-arm.tar.gz", - "hash": "d1bbee2812f825b326c7f2aa3e6e0073f0f9658d06740dfe7747e409e64f3940e8c01b708a1f9e13dfc8441a6f5482123ea209d95792ebb0ef4edd406bf47e52" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-musl-arm64.tar.gz", - "hash": "84187610dac06c287f9aee2c0fb642a53486c02565e5fec9acf3b1a2508c9eeb5e31b18f6f475c6ec775865ec1762ba98f5b4b44963a943ecb507288ad2009fe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-musl-x64.tar.gz", - "hash": "1ee4aaf20c35db9b0c40940dddcd390c45053fe3c4fe5d95dd038c065a12202b6bfd50e9cd9208bf73ff376678848e9391d4e826259288a82ed55da62b93a982" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-linux-x64.tar.gz", - "hash": "3df39fbce2d549a258163588a7205bed73dd39a69c6ba7fee785bd8a663e679a4194cb7e20a2e0c289539e1e412ab3a7ac019cd92cac13d219dfb50cd25740a4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-osx-arm64.pkg", - "hash": "ebff9305b72d0145767cb74fda7468385e2cc47fbe2b9b8bb03cea8f236646945223c169659bcd21315a79d0fdb0dcd63666c54a7a39ab5b1793c965273419bf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-osx-arm64.tar.gz", - "hash": "ad4563ada153b3d9f11bec8514f97999b31772089150856e46278638caebcf84b51f1413e49cce2c1e4aff266b91a72c1685b6df6546b9a8a2a415e78046587c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-osx-x64.pkg", - "hash": "7646c18b85b91e3f899edb93d155aee5c2fc306560b10dc985b69a42d371b23dee2ab7622424ea34fcb6c6677d242c35a6fcc4d448558b5e51c1d604f531991a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-osx-x64.tar.gz", - "hash": "eaf8323e2ebadbeb30bf610700b46814bb42efe17cbf7d0ee7322e7cf089a41cbf87e184226536ac580dd60f04009e3dda5878427df788727d065ae3e9f908ff" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-arm64.exe", - "hash": "0e778d0adce27120dddfdaebe17776301d5927d6f806d3327890f6873bd7e474a192b157cc85f1c56012d7eedc993fc5161578cf17b2bb87f2cb66c53b2a4f7a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-arm64.zip", - "hash": "25c5bdbba37577f4865359eb9bc666957f1410999f004c802e3f21738493f35fe23ad3dc1c44d285c257b592721921c94e0b768dd42fa6760208d2125ef83e4e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-x64.exe", - "hash": "c32bb1f6731a8b5858a714d418e99c65eaa8f720ffefe47cb0c19db74a1fceb416285d2e28fc6f9d2677fafa0521f06e563bd4872f9ddd02bbbe01cdb52576c0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-x64.zip", - "hash": "2655938bc0e94e788b847c45adcc87a8c4afd160294a0f374c7306a1015ec83d300c1092f11f386958686b70431cec109257ace163a79551f5be797fb8b6a0ba" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-x86.exe", - "hash": "d7954f8186c1c8fb2673107a9abe73d502a95aa429b9610b119f4ed8698b0a611d4a2b2ba08e40cd1a15e9f07b32b1fe9e646fbc1d173f931875f64799d29219" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.131/dotnet-sdk-6.0.131-win-x86.zip", - "hash": "1e9ed6a78aa2aa6ac8084fafa8b5c2710346ec951340445bed9151e5aa2b78f032684a14c300c4b4ed538cf6da466b65bbe7047a716763cd410be9cb143cf10a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.31", - "version-display": "6.0.31", - "version-aspnetcoremodule": [ - "16.0.24141.31" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-arm.tar.gz", - "hash": "6ea99cf607c055dfbcc33d50b933835f887a765988eda8d6d5d385189f926140e8cbd09b8dd4b55987370fd686db7972e38cbcd2017121e4b85ae2294c47de3f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-arm64.tar.gz", - "hash": "5d395554520a62c81e01f045245749d771d728a353631879462ac499e78658377e475bca756668eeafdd65ac55ad55f244f778809c127a553c5c330b76ef9dd8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-musl-arm.tar.gz", - "hash": "3af78b991970d7d524e769e14ccb7870a8a7d52b4cb40526a0b92b8d85c4e676eb247e7db9f5995d5f73a55d0db92fbcfd667c3991e80d0543b4e91d107c5da2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-musl-arm64.tar.gz", - "hash": "c0defb7cb37b708211f7c9823ad7f28605403cc0028bcf37a7ddbc801d59b4fb24e6ffe4422cefe57a0e2a45f1a0e71f8583ec48465307ddf7b96f65444b20fb" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-musl-x64.tar.gz", - "hash": "6c79053842b907b2a5d79432e363d6d1fa45e59b73d469cbd8821e854d72dfc46b43e69156e608254e9815daf80ea534613ecf65cbbd6d8ee65789db99bf805b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-linux-x64.tar.gz", - "hash": "ebb20a3461bf9d1e3a5c91761452f5ef2e60873826ad3158493768a18d207319bccc40d6c1a64fd61dd8c22bad51c26689394b0e6a40c4bfe4cca00ce4c00db1" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-osx-arm64.tar.gz", - "hash": "f19e54b4a4e42db7aae880b86a6dde57dc988aebf852008b70ae56f89ad130e0aba73903357f4e97ead10d013ae3fa7fd28d197ef88f0742391f601ff136951b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-osx-x64.tar.gz", - "hash": "79ced204af5aff757fc7680298121269bdc770b62411750f913d3129dad79c8b2eabd54b2986073c219b3aaa4b49f7188ab7694b99361fb725bff8e32db07dc3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-win-arm64.zip", - "hash": "789af435d98c00202db65b59aff249dc453c6ce8310bb00829fd02be1538f99c1e1ee16009e051bb62b615aeb669651aa6cf1f15b82db45924bc22a745b38895" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-win-x64.exe", - "hash": "a4c657a448f361d3bc915e9ec4dc01e9fee60a3ead14ef7d7fb5fcdcde02aaf339127ddae2c918b7de74646c99c6802fbe291d632d893a9e5db35d0421998663" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-win-x64.zip", - "hash": "68876fb8469fda214528ca74dcde67cc08f6babf07768d528616e44a84221f3522b9dc496b572f4a67b227404b4ea666a2cd2cef73c5ef36dedb12120a21ffd7" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-win-x86.exe", - "hash": "468d59c89fc907c519c93aae8471402b62d6631589bc89f6d4866dfc4f42f6f2c78e97c558cc6102c577b28f3c3bd152dff9b8ffaaba1c976c41d85470196f47" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/aspnetcore-runtime-6.0.31-win-x86.zip", - "hash": "fbb081a80eadecf07597cd180edb1b9d054f82f249af396e074439a8885457881b8636dd79d04120420edb24b5aa1c9d60547cfcf1a606bde1eb7bab71654abb" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.31/dotnet-hosting-6.0.31-win.exe", - "hash": "e79f7b9e36da97977ee9a29535803dfc94136d3b56d25f0e9da0a1f43bf40b194fb008ac023fe3e0f3647f23ccc3cbc0c357ca6fb0ec14a76cb0f0514e85304b", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.31", - "version-display": "6.0.31", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-arm64.exe", - "hash": "4b4f5e6616d0c0d6b28b9bd8fbd45c8300a3e45da97bef888196d562c4132c16f81cb1185101207b5cfd8bcf5aced1f15a60d90e7ae8d0ef466d8aaf79fe18e4" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-arm64.zip", - "hash": "3df13a3266a6a6bb29f6c7f30f9c9cbdd51a8d6d8a9e38b6e324bac9b68057f9c193bc5d6aa29d5463fa75a7e29e94347ba46888322d935933492ca6bbc35c00" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-x64.exe", - "hash": "5202b008e0f885c2c78cd23a8dc0970e1281e905e3c6c796e2d77e5aad15eb312661a6b459b0b29b7b16979cd6c8f29d0ac52b0573a60da4f9e032c17a8acd9c" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-x64.zip", - "hash": "931abbcaac883c72e46a3e081b512fba445919a1f1371af7c3b8cc48fa908775dc54a11d12609b948e9acf2809816ee417ef9414238d384be205e47ccd72cdd2" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-x86.exe", - "hash": "ee2d05c49c5c8a4981529ccf67c5554bc39c7fa1562ecd56f0b3b2c92367fc0646f87ba742955a61b744c6d2754a35775182932e511229528798439147875a01" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.31/windowsdesktop-runtime-6.0.31-win-x86.zip", - "hash": "df459a09544e62986060990d8e117ad4e04919bd8727673adedb609d64be6b5d70028295ffb27ea411a5391709104fd3acdad45ca31d75529d7015fd1e95cc96" - } - ] - } - }, - { - "release-date": "2024-05-14", - "release-version": "6.0.30", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.30/6.0.30.md", - "runtime": { - "version": "6.0.30", - "version-display": "6.0.30", - "vs-version": "17.4.19, 17.6.15, 17.8.10, 17.9.7", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-arm.tar.gz", - "hash": "2a8e470886009a8626a7cace3b6f7ad5cc36c5e440be5d1eab792ccc51653bdcf4ba82d94dfd86bcfbdd9f41eef15161955fa2a6fd68b7a9c6ea46f3c043fe39" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-arm64.tar.gz", - "hash": "75fa6de07e5d8e5485af910de522c1d0afed0532008ded1e80ec3f576c9a78c6e5759dd4d1331159263c02121a4d8f1e532f0533c11524c2d782cf861be13c09" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-musl-arm.tar.gz", - "hash": "0f07c9afac935a2268c979f98c2e49f2d96f146d2d253ca017fe01493477708de21ff82f8e3aaa5d207a27ea17a3b501d4631d10cfa08f41522461f0a5982c81" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-musl-arm64.tar.gz", - "hash": "3d642720dd7420d1431fe5ff7b2f445e8db8cb0c9ad87b03046f22fa0e369707af9e06aca6d2edd844ec989ca2cd0a92fc9b68e8435bdbadb8a58cfff04cf5c4" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-musl-x64.tar.gz", - "hash": "0bc940279c45704114ab29b94867d1262e7376a22436c94d4c662af6923159bd2cb891cd822f1d559ba06d7ee06c83ad0cbc6c8eb184d837eb9d39a4bb9fe230" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-linux-x64.tar.gz", - "hash": "b43200ec3a8c74475f396becd21d22c6a78a6713585837707c2a84bbb869c7e551a05c4c1c1cdba8083baebdd09bc356de5d5a833b8bc84b83421d3ecfac71ca" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-osx-arm64.pkg", - "hash": "75488dceb340fd841f4f558846bffe174ca097a9149803a49abcfb976bba972e74b2c2386c13af938e514e94fdb902b53c697e47bef34acb086bbee729e470b7" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-osx-arm64.tar.gz", - "hash": "b33a38f4e41455cd88e23f6c0fa76797e05af25bcd94d500557fdd5ce10071ac16789ddef98ec9abef113f2aa487fc7d5c22f329b8a7941a79d7768ca176975d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-osx-x64.pkg", - "hash": "f394660f482ab69880f5358d788bb2528defb567a591494ef0bd1bda482a52732b4498c59c50184d17506e56f362be88c675097d2b0aeb8ad9790c0c744135fb" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-osx-x64.tar.gz", - "hash": "8cffba5feca56bf11b38318564c45ae18a58ec48223963ee46105f71bc07661457e562d51ea0e8b626eb69b7635565244a5cd1575b6fbac52b776145c533e784" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-arm64.exe", - "hash": "88d95bcab0d77efe044948a32bcdbd6d46a168da390b71aefd25a780a0a4dff2465d3495a5e6bb09d92318c2d8f45d43a50c9a168d0945dd4fe38ae2c2790853" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-arm64.zip", - "hash": "f18c560ce36dbde65d9a48a86e62765a264c0bddbcc907dc8d1eb0380677a8ecc9e6b68708dca32a2f2c9f07aec51b5f3e256a806a4968144cbca036b19ec2ae" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-x64.exe", - "hash": "04f25d1cf7d4b07add194978250d460d5dd56d2683a6bcefedc8f4c14edc933a7b284331acdd4e4076c7d585b2e3ff6d3e54e409babf1afe97e4d6d078c9abde" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-x64.zip", - "hash": "4c126ede9c8449c035162bccec49b7689c4618a0434db3b4e4b632dab7b1bfc9338649cfd6bbf4045697a1cae1324f6050b9b050bb043a9e498a0815e667e6f5" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-x86.exe", - "hash": "16152b3e3701c4d52f51649fc5aff3789892c5e1576ccd734c56eb9594b9a70766b9f4d4ee3c7b716987aad0a11d6860c5db12cc277c63b8cab1323f8f8a2f9b" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.30/dotnet-runtime-6.0.30-win-x86.zip", - "hash": "2b2533d647a2a447cf98f5771778e64203115f3781c6602af302da68b730d29b8bd216e93ae78c869c409a05ada234e9e6fa35fb81bbaf7dac6121fd61510569" - } - ] - }, - "sdk": { - "version": "6.0.422", - "version-display": "6.0.422", - "runtime-version": "6.0.30", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-arm.tar.gz", - "hash": "b81fd26a92e16b8e9545f2172bc35651c1787178a0a50ef9edc1b98a9e6176b2289e0e0cc29aa57b3c188d3017a4120f9be47068e36dddc4540fea17424cf4a1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-arm64.tar.gz", - "hash": "c03c3708061f266a3d7fb5bf2240f5bdd00be4d877dc3dc62b95a857f2ad62c80dd4c54f5257737ef7bad3cb458685d7f2bcfe71c3562075ac3aed660df8ae41" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-arm.tar.gz", - "hash": "da4acafdd4c10ee3fc8a993099f38c1a1d93811cb10db4f0289d4fd5685f6d4df68cd81245a4c8e658467e95048edede1dff792acb2f8572562785f06601adfd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-arm64.tar.gz", - "hash": "d85df0405a6b4f721e4bd0ff15ded204172f5b2cfb5e9f6eccbc5ed494961b0359a7aa386f9a0a844b7fffafd978abe286f999747de0707b57899470499f807f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-x64.tar.gz", - "hash": "25ca31a27a8f830a625cd58a4f6fe29148c6fd49c4ff86a795f1954da2c09ca3a7750c248b09001a847114db9bc294d427a358b30fc7ac36c3d9c39e5a9e2b99" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-x64.tar.gz", - "hash": "e0e6ea234a5aef29c2571784c22396115db292fae8f859f4642f80f873807140bb7bbc009be568e8e34288b46b2e3e7732115b5f02bbc8ca0aa723e183bc084a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-arm64.pkg", - "hash": "547dd5d2db0be6d533b2fa7e336d446716d11afe123075c5c540be3e0a261fbf5ca014fda7585a59ab64ba24699ca21eed1c6445d4f5c0bd78dfb9e0677f4d18" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-arm64.tar.gz", - "hash": "7bb885b605f51cffcb235a6bb6f0eccef7a211e67480fa6243b0cb8899dfd60c4c0501579c0c1dc7fb267aea5db5a6d35cf9e2a35903772797a66360fa171b3b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-x64.pkg", - "hash": "bb01a9a3beb2099d5fe844cfd41adb7b36d0f35444026dccd5169351f437450699328a2f8e2551ae1629e07ff77a427481c7d9309427921905651b3141eb4dd9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-x64.tar.gz", - "hash": "a301982e64a18cf06577463fc3e2e179c06a31597b1b32127b1196dba755bcc3323edb618f6000c9f4f9ed902c671377a459e9ac90da2c761744fc1d57e220cf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-arm64.exe", - "hash": "d8c649215def0b72458f2c4d3db2a3e0d2067b78f7ddf973629846b01804d4b98206e6cd4d70aa89d4dd6734d0f634df5c74757af65639b2d06ba60dcca0ba21" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-arm64.zip", - "hash": "501fc28174cdb1037b9297923c7545dba7e56f7945ff32c8e41d76cbf559316d60c1066c17512effdfdc325c67e62b3ccc8c46e3a40bf26d4c2515d9b40bd522" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x64.exe", - "hash": "9ef9f83eaff52145d91d48b4326bfd7926eb20b25e069461ff4f132fbe5d534e7271c719a848b5766635cdc31d0f67a4820d60438e9db5f384d1ca82a627f315" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x64.zip", - "hash": "3f764f7f5a0ee80382a321a98509a50746a4cf5e8d30fbbaddbeffbdb48a34a1f60b9735d021d56c15a42038cd7276e170e3932b42f7c7fba97e541381a21865" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x86.exe", - "hash": "fe6071783482f49ab544d988faa2264603e2d70ab24430fb7ce1a73ded222caed6e869826ae23da5f2b3bf2df12791399236961aad7ca1be2ec07d9ca610102a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x86.zip", - "hash": "6df1d604536183f213447321f918bbdc57be42e59426cc231b5d5090712295bba649656719ad53b10f1a7ca024303091f78639af5ee131de980ab00d78c87e15" - } - ] - }, - "sdks": [ - { - "version": "6.0.422", - "version-display": "6.0.422", - "runtime-version": "6.0.30", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-arm.tar.gz", - "hash": "b81fd26a92e16b8e9545f2172bc35651c1787178a0a50ef9edc1b98a9e6176b2289e0e0cc29aa57b3c188d3017a4120f9be47068e36dddc4540fea17424cf4a1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-arm64.tar.gz", - "hash": "c03c3708061f266a3d7fb5bf2240f5bdd00be4d877dc3dc62b95a857f2ad62c80dd4c54f5257737ef7bad3cb458685d7f2bcfe71c3562075ac3aed660df8ae41" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-arm.tar.gz", - "hash": "da4acafdd4c10ee3fc8a993099f38c1a1d93811cb10db4f0289d4fd5685f6d4df68cd81245a4c8e658467e95048edede1dff792acb2f8572562785f06601adfd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-arm64.tar.gz", - "hash": "d85df0405a6b4f721e4bd0ff15ded204172f5b2cfb5e9f6eccbc5ed494961b0359a7aa386f9a0a844b7fffafd978abe286f999747de0707b57899470499f807f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-musl-x64.tar.gz", - "hash": "25ca31a27a8f830a625cd58a4f6fe29148c6fd49c4ff86a795f1954da2c09ca3a7750c248b09001a847114db9bc294d427a358b30fc7ac36c3d9c39e5a9e2b99" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-linux-x64.tar.gz", - "hash": "e0e6ea234a5aef29c2571784c22396115db292fae8f859f4642f80f873807140bb7bbc009be568e8e34288b46b2e3e7732115b5f02bbc8ca0aa723e183bc084a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-arm64.pkg", - "hash": "547dd5d2db0be6d533b2fa7e336d446716d11afe123075c5c540be3e0a261fbf5ca014fda7585a59ab64ba24699ca21eed1c6445d4f5c0bd78dfb9e0677f4d18" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-arm64.tar.gz", - "hash": "7bb885b605f51cffcb235a6bb6f0eccef7a211e67480fa6243b0cb8899dfd60c4c0501579c0c1dc7fb267aea5db5a6d35cf9e2a35903772797a66360fa171b3b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-x64.pkg", - "hash": "bb01a9a3beb2099d5fe844cfd41adb7b36d0f35444026dccd5169351f437450699328a2f8e2551ae1629e07ff77a427481c7d9309427921905651b3141eb4dd9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-osx-x64.tar.gz", - "hash": "a301982e64a18cf06577463fc3e2e179c06a31597b1b32127b1196dba755bcc3323edb618f6000c9f4f9ed902c671377a459e9ac90da2c761744fc1d57e220cf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-arm64.exe", - "hash": "d8c649215def0b72458f2c4d3db2a3e0d2067b78f7ddf973629846b01804d4b98206e6cd4d70aa89d4dd6734d0f634df5c74757af65639b2d06ba60dcca0ba21" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-arm64.zip", - "hash": "501fc28174cdb1037b9297923c7545dba7e56f7945ff32c8e41d76cbf559316d60c1066c17512effdfdc325c67e62b3ccc8c46e3a40bf26d4c2515d9b40bd522" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x64.exe", - "hash": "9ef9f83eaff52145d91d48b4326bfd7926eb20b25e069461ff4f132fbe5d534e7271c719a848b5766635cdc31d0f67a4820d60438e9db5f384d1ca82a627f315" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x64.zip", - "hash": "3f764f7f5a0ee80382a321a98509a50746a4cf5e8d30fbbaddbeffbdb48a34a1f60b9735d021d56c15a42038cd7276e170e3932b42f7c7fba97e541381a21865" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x86.exe", - "hash": "fe6071783482f49ab544d988faa2264603e2d70ab24430fb7ce1a73ded222caed6e869826ae23da5f2b3bf2df12791399236961aad7ca1be2ec07d9ca610102a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.422/dotnet-sdk-6.0.422-win-x86.zip", - "hash": "6df1d604536183f213447321f918bbdc57be42e59426cc231b5d5090712295bba649656719ad53b10f1a7ca024303091f78639af5ee131de980ab00d78c87e15" - } - ] - }, - { - "version": "6.0.130", - "version-display": "6.0.130", - "runtime-version": "6.0.30", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-arm.tar.gz", - "hash": "0760afce4415e9e5f69dbc17fe4b883d5b1417c9108601ac69bb7f2957207fbb6f143124a35bf3e8635c53a21183e9ccd453ba46f20f8d0729d4f9de254caa9a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-arm64.tar.gz", - "hash": "95767eb4da8e3fb50992ec48df178fba9e2a7beaae26c5fdd8ecd4dae605ec048b83180a2bcb72c836468a99607179f9193ce0e1980bc95484865f559cc91789" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-musl-arm.tar.gz", - "hash": "e10e1c22463f6b478dd33939bf7305a1f804c11538cd10dba953c731832ca080849433381bf557026e36d5674988a39e296969b80ffb5d24d19e6d5971cf0c78" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-musl-arm64.tar.gz", - "hash": "14b9926e723451bf2fad5a7634a430be7fd782a7f6f40025bbb70e5f43d0dbd65f453e5329a02c654cefd05f71d41d07511065b626f517752671eaa77272c128" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-musl-x64.tar.gz", - "hash": "f938b1487c04bd90d8594c9266c4c04141b98cf3035ee487a15e34eea939852db90a1d8b7633b0129c3d88e074e19b7e0b964616ef68f23f5a189b72507accfd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-linux-x64.tar.gz", - "hash": "dd4e3e5e24c0bc387dc6ed3fa833236d3f444efc0b12a256dcd73f5f4431488b516143d63019c6e9430173adebb07406b52e78a102f9e143a7e3f16361228b32" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-osx-arm64.pkg", - "hash": "3459f3804081367d7ca56ce2b427862f9f51d6fc0a5fb9da0624765cce1ec4268c38eb54cba1cdae347d79c1f6b24c1b09aabfb2dbc06fb63d1381de7b417168" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-osx-arm64.tar.gz", - "hash": "9d8273f73e842a3a1a71a2ba5c2f0dce74821e1302ef34843817a3f5c49df83d662bf6c7031dba7a8362903a870f759c7976176209781a3c4ade6c66e6824c41" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-osx-x64.pkg", - "hash": "dbfe550815450bd7c242aae1c2ba07ebe911288c8985439470b447e3ab793415842e23373fe9c8507eeab128cae63aed32c2b6cc1fd7a56b77b67d8ffddf7f43" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-osx-x64.tar.gz", - "hash": "8102f1432343538f45d0d49e518edb7ba0000d1ae7f7306611d2e17a205baa4215281250b45cf11900f45db0622fd190bf7d57f2b63cc8b1b4bd106128564522" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-arm64.exe", - "hash": "b33009fd6f133d73ea965f16affa789759cb95ce48192f15770939e4ea064ac54650270597bda0a83c2269e6aded79919ead0044adc5076b734928116e69398a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-arm64.zip", - "hash": "d7f9c74b5b396ba5d5aab2eaf18b5ff3e5553b1accb476b5a130270063ff0366042c60b16fc97ec58082d7d3c295ba8bfc7c202adfd3403c3f9631f66b2f5b78" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-x64.exe", - "hash": "9f3d299be4cc20beed63fa63d7be491c22e448a5de093d58bd0127375115cbf56c58a2039f1685d044a4ab8145b30547b8aedd8b801ac3054283bfb2d949f4e4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-x64.zip", - "hash": "251d52d1bd813e93ab083989d9d955eaecacd6ac2a263931050de93ffec64b0d41500fae5d32a2f1d3f04bdea0fb0175e8ee7c82419c177bb74b578833b6e57a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-x86.exe", - "hash": "7953c841b842f2c6072e51a3492d242e5564ba6339c098ed5151a31319eb63dc91e497fec29ec20e1a364d6ac3dd3a9121c78dc54603b1ebb4696ce546f33879" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.130/dotnet-sdk-6.0.130-win-x86.zip", - "hash": "c376aee99345fa23fc68c44451666fb3af62f8445c438c6c1f53c15e1675639dcba2906f33ce855ac17d724883708def34a37f24da9bc1717faf480ce1a788fb" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.30", - "version-display": "6.0.30", - "version-aspnetcoremodule": [ - "16.0.24107.30" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-arm.tar.gz", - "hash": "2ba7f132f198558ffd30864829d2ed71ade1cdec87092df3c6467f737475bea4acb82c2c366cd1e84fd6eccedc302294b408397c482580ce93cc9f534fea08de" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-arm64.tar.gz", - "hash": "de0921903ba55e21195107b126e271457550543fd6a9698ab3c2b1e2b95f7fe2d6fb2f067e08ed10c9e56940c247733dd9a2f9775e7993e033a945899461e130" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-musl-arm.tar.gz", - "hash": "4aa584e1d7a281ee0ee49e678239331cb3ed04b292284c09a1359ee09d2dcc86cef211db373854ff6250cf5d71d9c0c88d5c2eb0ef2c8d0d61705c5e3f9023e0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-musl-arm64.tar.gz", - "hash": "cf698e2185311aa9e481534b8d8632e14a4284dd9529db62d2984e4385217358de3aa0a8e1c6851c6943ffdc2adb81afcee99dd92e08092d9536838f132b7df4" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-musl-x64.tar.gz", - "hash": "05afa6c27d1e8ffc2722ba6ab9f0f0a9aded82812399323b0e723fcc85bd9864969031378d92e7d993b9fd80fae7276d5d1366c7050f5c175540b1416b1cd230" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-linux-x64.tar.gz", - "hash": "757d017db28b8e34c4b242c082aa51eb85bce8fca16af37a0beabedb271c9bd13e1631868faa131745d7784db48974567f82275da09041ba434dcb7abe821a2d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-osx-arm64.tar.gz", - "hash": "a74d44c399e06c9ce19ec10d4be53444bf18d981fe7ede62a69efc24a5af5898d4ee63542ffbedc3b906cf1ac3f7101ecdb69e45dc0fbb1336bf151940fc2204" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-osx-x64.tar.gz", - "hash": "0a0c4c9255ed29db1c1911fa0fc6c8a9083f777c04a3939b2087d80bba21fbd864e6c92c62aa566a930a2b30024b1fdbfdcf34d034e2734c0a9b3d45f7c63445" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-win-arm64.zip", - "hash": "4fff5b1df08af4b1195a740ad9fb5bff79afa8872c2439ad2107a662d509626bb1de4f062691e474197d75664217cc6334782f9d39ef1802794527ff4a58167c" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-win-x64.exe", - "hash": "ade3c8e9cbfe56cb87d3752421f1d627ac32bc740eaac1e4e1a4ee5326382e9a5898f6c79f5ce3a777823608efa1a894dff552b1a520bf37dd1b50f50f8b3ef0" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-win-x64.zip", - "hash": "f34be5a8712c4c41555bb8bb44feea48ac9642d3d432b23bb5af59d1b91209c8cc7a8b52318757f9a82248cc017a2fce77f7a4d1e9a593ac8c14a47eece60784" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-win-x86.exe", - "hash": "821edb0a41c71806855f6ec3fd4381a87a86110397bf39969fd068385bbfad83ba6e98b69269fd69c79f004983f50ad28af92b94a5d03bd8745608cdc82aebfb" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/aspnetcore-runtime-6.0.30-win-x86.zip", - "hash": "190bef9447709f3fa18e9cb01c9d255139785382fbb194e2c2146349adfbdb18003e6d0f7e916107ce47cc8d9c92681212956801f99fd94e33129512693ff056" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.30/dotnet-hosting-6.0.30-win.exe", - "hash": "2183c84114d08020b1f263987d98bec69a5ba63cbe915b4b0e70611c9c24e64238aa1c6401f47cf40cfaa8db88394e5f82cc69f956d70ae4c6a967c30bc16f31", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.30", - "version-display": "6.0.30", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-arm64.exe", - "hash": "fbcc9577a2fbfd069d0c83e97a628b9c8969b23948743c7eaff76a78a02bb43f62fab4222d6290e04dcf57b1249434b9524fe64bf3823933fe23cdd74d0e5ef3" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-arm64.zip", - "hash": "9aa6c04d9f09455820fc6e2f5fcdce943f270bd380aeffd583a3db8a4cb6db21b373dd5456a748356af984f6ff3fc1c9f6fddf4c282bf7bd831b286b94617ffc" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-x64.exe", - "hash": "fe6ba997ccafb5d8405e0ff4bcfc5b9ca07a425173f49d3bc043b3fd71833f7547837d80ae1d2aaa6f8f13bcf333d9814f0d9a4a5e1e7222b404fe1d08882a6d" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-x64.zip", - "hash": "494f2cc8dde49b2bdb9815c7f4fa942105162202cec0ccac9849969696a6aedcc14e1d69be42de9e1b8b95fce949eadd089dec55ad43b9ec275f9e5cea5bf6d5" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-x86.exe", - "hash": "4ad73567c8bab8c789009a81137d8f05a27e9c21b6b89dfd58d5ed356d447b94694e047272b43eba2a16100fa0fe681adf5569bccdc4a3bf243af33ccf4f0a62" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.30/windowsdesktop-runtime-6.0.30-win-x86.zip", - "hash": "1e238580ada3a6e1f7eb52ed5edc7dc6907507649d01e6fe53471aafcf50753d4aeee772f791bf1cde7e1c3370d9efb2ea1c2cd8cecd298cfa56733112cd1746" - } - ] - } - }, - { - "release-date": "2024-04-09", - "release-version": "6.0.29", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21409", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21409" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.29/6.0.29.md", - "runtime": { - "version": "6.0.29", - "version-display": "6.0.29", - "vs-version": "17.4.18, 17.6.14, 17.8.9, 17.9.6", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-arm.tar.gz", - "hash": "5975b391498e829524deb69a827ed84f7b28c9dd16016a31848857af1549194b7c9b7d82d85376595eb656e6558250e18cb97ee5bb4691cf244965a37e984dc9" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-arm64.tar.gz", - "hash": "27c7121a4953b51bf29a15ffac4155cf86609ded15948f91ecdd19970ff7e19276c528d875f547c2877245767adf1be1ca0eaeb45dc8db460070637bd5ee1ec8" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-musl-arm.tar.gz", - "hash": "e2241fbc220a2b0e6cbd2d0c208315c290008fe9c6d6dcaeedab7bf2d3bfb572cc268f6b845db012e3868662de1dea3995a6b4a3b764904d1d3a26ae4d045e26" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-musl-arm64.tar.gz", - "hash": "5162effcf3e34f9a5c4320d007dc4f322bb816135c5dc3dec5f692c84f111301b14b2bef352112da7f1df51c31c8706c480eb854b0256c388c402ff3b41ed627" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-musl-x64.tar.gz", - "hash": "f093e16317a90dabc125bbaca5933956fb4a786bb03bebb56ccaebd36c799e1e9a3b43a80a6471505ee4ed725df4fd54ac29ca53f033642a6e72388d33493aff" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-linux-x64.tar.gz", - "hash": "c9fc66d47e7c5ed77f13d03bd3a6d09f99560bd432aa308392e0604bdf2a378f66f836184dca4a678052989e6e51a5535225de337c32a4a4e17a67abdc554ffa" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-osx-arm64.pkg", - "hash": "5e747f8428949df97d647dd8bbbecabc61f833aec2a150b656475871700639f662932914bb814745411efa2056db7e79298e84818737a82165609cbcec85e74b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-osx-arm64.tar.gz", - "hash": "baf9b30ab7fcdb16878a05429a98c20079e8a5e081f910ddabaee70298dd3d976f3c56569af4efa544533534be50920258982cb97d98bc85f31ce44e6ccabf52" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-osx-x64.pkg", - "hash": "e6dec12970d14122582208dcb2f0ff4b4e089967d490a275f152bbdd469085dd8ed1ff47b8aff1ab5f6695685024633e7cab72d9a6741e3d149290fa409a5895" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-osx-x64.tar.gz", - "hash": "e04207993febbd8593eb5474016e90910491f4c5b23cfec39498bc6d5ca2c3ce427da4f5f14ff4160766daab1e35dd2d324d0cfd7ffa83c4741a25f9ac811f00" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-arm64.exe", - "hash": "5a2ab42a4c7dc2243b800c3a8a8db34ae68cbdb576f504fed489c8fc9d3b9a7a78f1dcd27ef572b91b70910d6ed1b50200881eb87520efb9c445791a71000e28" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-arm64.zip", - "hash": "d4fe639508609e4ee73c8c09845adf96b3129991ef5e250a5947dc23f0387c360755c43b0f9e2fe33cdb9473f3ebb88f8b4b49f70f8926599b01c35bf8e8347a" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-x64.exe", - "hash": "f878ca654a67cbfd24ee86cdbec80e745aee60a0a9e46ea3ed6915f2b8550790a3966169bb7310c2da9619526be8579c21e831f800019a58caa289b923341966" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-x64.zip", - "hash": "09f3f19fb422f2dc3a48b17c9036b5d68d8725a81baca8826f24fce228fd4dca4cd67f1231b844e0c82d40e53c67fe0496771f03b2863c03376e8c8ecfcf5c4f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-x86.exe", - "hash": "c15cd3e5849dd4c6b60222106f367856038b2e9bcabf6f8880cc4d8db6fb5630b13daed18afd49f3e3ca76f8afa3654788724f806284e0abef88451e0a92e0ce" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.29/dotnet-runtime-6.0.29-win-x86.zip", - "hash": "8465c835b5baeabc30bcf558ae6892ee2beb23364ec56ea0952ef2119368e68f913c0ed21f156215f7b803f6c2cd5f30a15e4534948ac1424d2c8833638b872a" - } - ] - }, - "sdk": { - "version": "6.0.421", - "version-display": "6.0.421", - "runtime-version": "6.0.29", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-arm.tar.gz", - "hash": "2c6728e52656051e31999811a7d2648244b03d5a5882fb07b14c214211fa233944f8da7da1f35b73f43a579dbc3949d6426502fef26f795e73de8adab9b8ba9a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-arm64.tar.gz", - "hash": "2713e16d70d9cb5bd6d3d2da385c75c8cfe6ed3187225efe6715d595b1b1b17d0a48fc7044cb514add8918875c5f281196f09686c11c7524fe9397d8bbe1f8aa" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-arm.tar.gz", - "hash": "788fbba5274f7a01d67c4bd99f53f1d3769c65b1e6337109f53356b0a50a2e53015b1694a6e4b557405193889d7fe89f04fd73a9557e88c707df599628243d4d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-arm64.tar.gz", - "hash": "c3a5c20a1495d0af5fd3e6d1f62bfbb84cd7fcab545a7b75bd1321f0ac6a1c1ab4fbfa2b7411544440dbd260a2e02ea744dc95973c798f8554b0741b6f22136c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-x64.tar.gz", - "hash": "ddf3c6f35a5e319329f4aaf10e5e7789a3777afe6f77f0c8bfb7ed0329eea6a19636b8bc156b0f16780f1d7dd85b4299eeb3a7d345f90d3a273147a086f98c29" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-x64.tar.gz", - "hash": "aa2c1fdc06c477acbb8ca938895f22373a96e96bb75028b496ddf3d433a1e347f3f765b414e8e09fbf1da1cc50f575e28572e701693bad2a33f9b92437a7d3fc" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-arm64.pkg", - "hash": "005e1693d263938d3ed7c658563fadf363030f163619547832020f4e1365da872ce4b770d39c49dfef33827e91cb53ed4dfa49fef9f2d6f51fb2c8899685535f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-arm64.tar.gz", - "hash": "83870fbe802cdea4ca014eb5dc0cd899deed952d8cfeb862f74bf68d80bfa81e814a3d90381615bb6e26dc39bfcbc82f975462665bf65294d25249e2ea365332" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-x64.pkg", - "hash": "d71fecbb358bae9ee10e8561f56463513e6a15e385b2b80242deedb8b190b6682e68066d5a6102f41efc81df31b3ea78b03b9b1d11044fc1ebc1580c617c83f6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-x64.tar.gz", - "hash": "93570a4efc929050b36ad53adca2be803c4cd8ebd9f2553b0f3e325af0629f9854ed39ec8ed0bde4302985c74143763b3a7bef89b1bcecbcec99e137777181d6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-arm64.exe", - "hash": "1c38167fcac951f641602e7ead6c5c387304de706e9afe344e7ae06f3388136bc1ee17a375730275d53709be467534fb2d27e282f185a25bc3fd0c52f0a0ff33" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-arm64.zip", - "hash": "4e35f553539b791c9cc4965104c81d7292f32382266a090c5fc8f482d25527bf8c4f4ca64fb746f3772d017940b9811b96680d34c441abbd90d9396316c1d752" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x64.exe", - "hash": "39a32b6ade5d5ba369332d3be61edf92695ba536319b1e04f50fbbc30c2b4731635887a260757849aba4b3c1e13beeb7e88adddbb05f8b4916f821451d54eb7f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x64.zip", - "hash": "e4ef642a5f02245a44424559f186d26a4e9a6ffa9bea83dda7d439d86eb97419f618bb5479572dd7f48a4fa981b3f88125e74c14c2a7e1ffb04cb8b083bb245e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x86.exe", - "hash": "468bea332a0fe41590b9a6e274c9b9bee25f3b1350a1261eb563b9f704f3bfb5efa8468629b7b27839328478f9e5fd7a7a492e7dc2dfaf8da8a9af4a0ff0fcb0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x86.zip", - "hash": "cb301f9e380c0223b7930dabf86faa3430465eeee73fd7a3cbd36af3759109a54f2028089a4bad233d3a2bf9ec107e0b20cb55f708bb263ac890a223dc942d22" - } - ] - }, - "sdks": [ - { - "version": "6.0.421", - "version-display": "6.0.421", - "runtime-version": "6.0.29", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-arm.tar.gz", - "hash": "2c6728e52656051e31999811a7d2648244b03d5a5882fb07b14c214211fa233944f8da7da1f35b73f43a579dbc3949d6426502fef26f795e73de8adab9b8ba9a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-arm64.tar.gz", - "hash": "2713e16d70d9cb5bd6d3d2da385c75c8cfe6ed3187225efe6715d595b1b1b17d0a48fc7044cb514add8918875c5f281196f09686c11c7524fe9397d8bbe1f8aa" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-arm.tar.gz", - "hash": "788fbba5274f7a01d67c4bd99f53f1d3769c65b1e6337109f53356b0a50a2e53015b1694a6e4b557405193889d7fe89f04fd73a9557e88c707df599628243d4d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-arm64.tar.gz", - "hash": "c3a5c20a1495d0af5fd3e6d1f62bfbb84cd7fcab545a7b75bd1321f0ac6a1c1ab4fbfa2b7411544440dbd260a2e02ea744dc95973c798f8554b0741b6f22136c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-musl-x64.tar.gz", - "hash": "ddf3c6f35a5e319329f4aaf10e5e7789a3777afe6f77f0c8bfb7ed0329eea6a19636b8bc156b0f16780f1d7dd85b4299eeb3a7d345f90d3a273147a086f98c29" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-linux-x64.tar.gz", - "hash": "aa2c1fdc06c477acbb8ca938895f22373a96e96bb75028b496ddf3d433a1e347f3f765b414e8e09fbf1da1cc50f575e28572e701693bad2a33f9b92437a7d3fc" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-arm64.pkg", - "hash": "005e1693d263938d3ed7c658563fadf363030f163619547832020f4e1365da872ce4b770d39c49dfef33827e91cb53ed4dfa49fef9f2d6f51fb2c8899685535f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-arm64.tar.gz", - "hash": "83870fbe802cdea4ca014eb5dc0cd899deed952d8cfeb862f74bf68d80bfa81e814a3d90381615bb6e26dc39bfcbc82f975462665bf65294d25249e2ea365332" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-x64.pkg", - "hash": "d71fecbb358bae9ee10e8561f56463513e6a15e385b2b80242deedb8b190b6682e68066d5a6102f41efc81df31b3ea78b03b9b1d11044fc1ebc1580c617c83f6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-osx-x64.tar.gz", - "hash": "93570a4efc929050b36ad53adca2be803c4cd8ebd9f2553b0f3e325af0629f9854ed39ec8ed0bde4302985c74143763b3a7bef89b1bcecbcec99e137777181d6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-arm64.exe", - "hash": "1c38167fcac951f641602e7ead6c5c387304de706e9afe344e7ae06f3388136bc1ee17a375730275d53709be467534fb2d27e282f185a25bc3fd0c52f0a0ff33" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-arm64.zip", - "hash": "4e35f553539b791c9cc4965104c81d7292f32382266a090c5fc8f482d25527bf8c4f4ca64fb746f3772d017940b9811b96680d34c441abbd90d9396316c1d752" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x64.exe", - "hash": "39a32b6ade5d5ba369332d3be61edf92695ba536319b1e04f50fbbc30c2b4731635887a260757849aba4b3c1e13beeb7e88adddbb05f8b4916f821451d54eb7f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x64.zip", - "hash": "e4ef642a5f02245a44424559f186d26a4e9a6ffa9bea83dda7d439d86eb97419f618bb5479572dd7f48a4fa981b3f88125e74c14c2a7e1ffb04cb8b083bb245e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x86.exe", - "hash": "468bea332a0fe41590b9a6e274c9b9bee25f3b1350a1261eb563b9f704f3bfb5efa8468629b7b27839328478f9e5fd7a7a492e7dc2dfaf8da8a9af4a0ff0fcb0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.421/dotnet-sdk-6.0.421-win-x86.zip", - "hash": "cb301f9e380c0223b7930dabf86faa3430465eeee73fd7a3cbd36af3759109a54f2028089a4bad233d3a2bf9ec107e0b20cb55f708bb263ac890a223dc942d22" - } - ] - }, - { - "version": "6.0.129", - "version-display": "6.0.129", - "runtime-version": "6.0.29", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-arm.tar.gz", - "hash": "45f4c5ecc038ef2a2fce4d62cb1a1b8d9f7d0208c42364f9b63494ffe667254b95373665562f18a1f42a7c0814b013f14108118b8f24e3b56d81e5c932ce1574" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-arm64.tar.gz", - "hash": "58185fa68b9a7bd373b8c4ad9f2d14d0379e6758007bfbe52a640cb432eec91267ff7df94fc57ec0d0d16b8ab5a0838a623c31d3cf36384b3a77697d3a8cfd86" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-musl-arm.tar.gz", - "hash": "6a97611f0af53eae49942d6dae08fff105deaaab4152137d90a8d616db418a17c9a197a30c8707cdf349c62eacea4a7ad5cbc019535741deb1a2b4ef4b023844" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-musl-arm64.tar.gz", - "hash": "d194ec0946ba3bc05cdd1ebdd94df6e0e62303f268e2ba897991c5bea315f0b4e008c4e543c5aed23fd34d6655c03640d4772eef8f4ea6e5d7f006166ebd8011" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-musl-x64.tar.gz", - "hash": "151fc0dedd858c37dcbd1b2f813dc5a1d78eb66cc0d680f9595c26cd6f6f52ee8baeb1a4beacfda1437beaaa46d781faebe54e770fda20249f13f8f65ad43dde" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-linux-x64.tar.gz", - "hash": "fb4991e5b0297ea0c65dd84300f0c11bef4589b19012556f67eb10970bd3ee50a58bad59023e1d266a8d9688a71c23458e0d21b8cd9adb75d21c47b59987aabe" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-osx-arm64.pkg", - "hash": "ba772ba4b719220feeb7dec5335c0d1082ec880d1e3850087ad4ea6164929d56e1d5cf73da960940a3aea50cddb907ec9d3b19a86b98a117f201e16dff73bd4e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-osx-arm64.tar.gz", - "hash": "065a6b54fc5044d335371c6244c633d3a64d6813ebcef9db19fe0dce4f15c381109b537efab8ff1a9850d83721b0783b4f5f58c048cd6e8f05a32d12eebd430a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-osx-x64.pkg", - "hash": "8798d5c32384288789d65ae430fd54a6eebf21c2d18caa822ddd807bfc097026697e9c60ce6114f8d0a6c435365389ad646e11e58aa5dc15502d64f96fdcc03d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-osx-x64.tar.gz", - "hash": "b4b70a211eaabc9b3a34fe197ca4c69e4a167484445fbbc6df326c972047c813a6ef9a89830d0105ffa00bc8754f8b728e102fba35f89fd9caafe139d45b4eef" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-arm64.exe", - "hash": "29ff714eb6af9a429f592e8e30b7af541db9d365a8712243d4ac6f68d1616ff88f1ba520d4773b6221aa0d77bd8b552aa265465ea227fca585c6513e14a139cc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-arm64.zip", - "hash": "1fab6161b5776efe044affbb60ea2f40b713be1cb1cc19fd9b99f925326690e95c2cd11f7d3e75732fbd99a2765a590ecad6940fdbd13ae67c01138773103e80" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-x64.exe", - "hash": "84916c7c105a56218ad04aa19345f5c994b6439bbcb5566aaab9c68f3950e2ecb5a6927f76d7d8c7e6f6c28325f142235d7cde035a3eb882afd9b45f92d46abf" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-x64.zip", - "hash": "d61d7dd528de072e5af49c3e630e3626e4a14705b220959a94be519cd08bd306a2445f1971fbf5dbe4b2e0aee622169f739020e8fdab5673eaaceae1877b0224" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-x86.exe", - "hash": "ab132690bd634dbb30ea09cb90bfc2e69d2e7ca9988bc0f11dfc6920890b687aa1ae6ea3eb247aa194b3c2240bf42ba51461d96bed547b4f52ce3ae2621b54d1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.129/dotnet-sdk-6.0.129-win-x86.zip", - "hash": "68af5c1e4d76545675ec844050defc498fba4fd9b727f9c42ab2c001644f92f80f5acd8266ced015bc53ba6b2e5911e14846a4346c952b779e6c9a537e8dd1e0" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.29", - "version-display": "6.0.29", - "version-aspnetcoremodule": [ - "16.0.24081.29" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-arm.tar.gz", - "hash": "82efa016bf977649c907bfcf192684a4bbd9bc1f5a0b3f46be8aa7aea4965b570c72552a2617926ccd0624a74f9aa04ab2298aba8ebe4594b85f3b36d4ec7eec" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-arm64.tar.gz", - "hash": "6e4a504f37ba4bf7d0316d2a3077c5088962c8b8445b659fa05844697bd11427afabacb6fee34094aa4313dd6dca70c862c1c68b30731b12b4451bd59067bc8f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-musl-arm.tar.gz", - "hash": "a22b41e57b80e075d23d4e0d0dfb3df3c9ec6df43c033fdc69cef9d5de41e8fc2bc9ca56990b5880941acede83599c93f79e46c2b10b71b067f227a7182414b6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-musl-arm64.tar.gz", - "hash": "6eb6cdec88728aef28655b3b15161be5ec2871b9a7dbfdfe2002d02aa4682558871dbc78f1521639f7097b314476850f716955ee8d815a24c1cac10cd2d4bcf8" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-musl-x64.tar.gz", - "hash": "320680311296f39782f60bd3ce8cac802219b9ae0a53dac243ce995f0ed91b3235bc172f06960dfae0229dcda42e6858f1a1f4c0cf12e8cf936323f6628f72f5" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-linux-x64.tar.gz", - "hash": "6dc21e1a8dd597df9c1135065f7350bbde9cc040c3079ec7850b0e5f254051b883c6c6e0056682d2963ec74dadff8eb32d82c13b35c9088f3d7c055d3d3f0863" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-osx-arm64.tar.gz", - "hash": "a9ecc77db6f0fd8e5ff70ac58ae3549b766694d30a93cfd41869ceaa298178fd2c0e86e4e763d8d7a5e2236d42faf2e87d798d2853f8391a73a40f5193f4fa71" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-osx-x64.tar.gz", - "hash": "f4405bcf40a075a5acbd8f4ced424efb0b2de49a5f81481c708a1942c1e92e3a69ea8a4d59b55c025092a59e2715d260521fda56618f250d1484fe18dc4cadf4" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-win-arm64.zip", - "hash": "364859dc777b6abd66625d4069ea5bb4ce7fff27a6ca4b3aaa1345f81e860a9c88dbe45e8553e2d6de466dcd9b1403bc4a1f7eca2c0fa3d9be943cba10a0ebe8" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-win-x64.exe", - "hash": "e0a930eeb88c0ae6eb8f0ff964a3d2480d0d3b0c5a0d97553ed2ccb661b3c2d6d2e3302a294731d45d158488825e38310a0a59da91cc476ffe72ff2d9194c0a6" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-win-x64.zip", - "hash": "3e34dbf53cef758bbf6fd6eacc63d209f35f96977be6dedbc7bec2aee9dd442d97d2bab03999b452119f0a67a31da58d0e01075a257f5cea22ad995f93d0bc6e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-win-x86.exe", - "hash": "e7d86eb3cd7803fdb00b7f4779a7e353d3ffdd3371548c81dbbecb174858619a77d3bc887f5e3bf124d67517e3d6f8327d742def284ff4dc8f7e9d5a9e3d1d25" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/aspnetcore-runtime-6.0.29-win-x86.zip", - "hash": "a80f691ce9f76426e2d01909d9273219eef42765241d97558ca73b64fa3459ca0e83281276727442b8870a32b8fb398bcaaf5d6ba5385acc32bad92b5981b627" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.29/dotnet-hosting-6.0.29-win.exe", - "hash": "62d5a25c2a8812ef2b77528617c3698f4cb5d632e87740c8ae850348ef3b87e001b38dbf8b08d67e446360a550f652c9508cc9ac69f0068abeafd9557b023b1a", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.29", - "version-display": "6.0.29", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-arm64.exe", - "hash": "bc5870d1916c6061e82f1cc3869cb8f303ba943c9928676b241843d167b37d3a411a22e1305e06360ef47bb35e8b6148b065c66e0a2b99f7a71941fe827efe56" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-arm64.zip", - "hash": "c58b098ff25feacbd9359eaab9a9796aba5bd5491cdba71d094aaec7c32008cabb8c05b6d7cf18a9759f77d6f53462eb894bcc3afbfee110fbb9d054cf0d4341" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-x64.exe", - "hash": "63a285e8f00f7f408dc88fee512fe51b3905bf4c381fe933393450c479bafcb38ea9b8144c394bdf0ef3ee53326e4ccc059b0323e2b7def57076bddb990f3854" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-x64.zip", - "hash": "42a13b8b4c6c815fcb1052cce4b9aab9116c0cd7c16db70695569dfe77988ac771ae61b7ac9f4013cbcac13fa9ffa5f79d0c8d04d7acedc463375f9cc884222c" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-x86.exe", - "hash": "b3c1b30a003e72839bd60cf30a70d01c0a13369b226c418d20d0c4e8493fb6187d093150095b212ae6e33bb4a3b282ea371809ee57a74fa35c76eecfd978458c" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.29/windowsdesktop-runtime-6.0.29-win-x86.zip", - "hash": "732ea8b63aac52e2e59f96a25d4baf53d7015aed2374e5e75fd6f1f8910ab6bb0134ac5da935f55851ab9d7cad683e14446318d8a646da264a2308569069231d" - } - ] - } - }, - { - "release-date": "2024-03-12", - "release-version": "6.0.28", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.28/6.0.28.md", - "runtime": { - "version": "6.0.28", - "version-display": "6.0.28", - "vs-version": "17.4.17, 17.6.13, 17.8.8, 17.9.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-arm.tar.gz", - "hash": "7f1549bb1e5c4c760b4b89b5860bad1ab94426e480ef57dd16e29ad6dfc540115275476791a388f3bc18c580a9ee2449b9bc0403209a1149b29315b04d5bb083" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-arm64.tar.gz", - "hash": "84b9b2d9e2e9c8f1f8a35b184fbe6883c469224e72635efdd1802fd4c24a56b672427ec016d8f57b7c1bed4342cc77b7af1a613b225b1259ccbe634e75799d58" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-musl-arm.tar.gz", - "hash": "506fae33908a93bcb4d6d9ac3515cbf7b29b772c5ae6cbdee202b72a02db6fe235193af0c8bef939a896720b4e63d6802a556f994a70020c26d69b8578f96dff" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-musl-arm64.tar.gz", - "hash": "881d19337236d1680cd33ada05f6577787bc0d4b8b80037e18b871ea7bbe15971d6b6c635c5e14b1c4f3d47ed753cafc3bd468b2d426491cfcb7b8be2029561b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-musl-x64.tar.gz", - "hash": "751ba56cc0d83f589930292260b9dbab3ff13774e1415f9bb6be4c94f8c46f98e0a6336085d7cf02cbea09bd690f5ca9e642adb73385fa8afb42e4a91b965f29" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-linux-x64.tar.gz", - "hash": "5e9039c6c83bed02280e6455ee9ec59c9509055ed15d20fb628eca1147c6c3b227579fbffe5d890879b8e62312facf25089b81f4c461797a1a701a220b51d698" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-osx-arm64.pkg", - "hash": "c2a3f2a1656240f0935a5b185b62a5f28fc519a8c4d361df4d5e1a32ee4bdd1be84a8c7754138aeb5482aed71595a36725edf996e006e60c530c0803927ad98c" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-osx-arm64.tar.gz", - "hash": "708a1421995e3e64457f91685463bdddd6df22d21b6fbb430fc2c830f48fb6e785e6a575e923eb5fb21483a0f956b93c2c4905d149fa62c08bd4426b5e2e459c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-osx-x64.pkg", - "hash": "3cc8f577c351fa1c04e848e6131d8abcab78469024420379c58556bb820dab8937e1c7e0ff3a5b8f7af1d04abc84cb44f26ea89eac5643a7c058c50f16b2a747" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-osx-x64.tar.gz", - "hash": "29beaa0d6889163cb8629d276961650e230d6393aa735a36865d6746caf8c5bfdb827bc382821418b5ed6b3db5411497ae7b85e99413e189e754719c55ed7bd7" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-arm64.exe", - "hash": "9e7d927dbd2ce758b4c17802dcede7c4af5a068ff7fb19c5bfecf20b9b1bbc6afb308ca53f59dc56d270272fdc10994c06d9afa4e5555bf7f0387ac4d300d153" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-arm64.zip", - "hash": "abf4d6925e95c8b4bd0a79d5e10f4b2db438ee3ccfa253502bc1cc3cd5420f41725de4f36e79c5e6c028a845a40a0c9d7376adec81645b73f856d9b5f7981c4d" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-x64.exe", - "hash": "9f6a09abc5402ef272ef45697637faad63a5d8787e0a147ce68a855a635b02fd6d5ae6696fb570eef3e741ce1333d0d058450a23662d76cf6c0226c8b3595bf2" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-x64.zip", - "hash": "dd1b9bbfd97385c8486039782046279e23d36d7ce2b2ee33432b5e8c1d504e5cef3fe774fbc954926284a757e6b131700a4b136c41f3c66cd270a3af149f40d3" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-x86.exe", - "hash": "b767537d7223011200184efca5c90a6960529623724dc7404b8be8e09323960907adb9bdb49d376f08b9d017315f9ea081109f1477aa90620ad21a4730fceabf" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.28/dotnet-runtime-6.0.28-win-x86.zip", - "hash": "5f7170480e314ddcf008da941bc915861199e064485643cb2efff84e0997e4f8b930ddbcbb9a57bb4bfed7898880b51e6d7c1f57b64b44899f688cde0733d853" - } - ] - }, - "sdk": { - "version": "6.0.420", - "version-display": "6.0.420", - "runtime-version": "6.0.28", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-arm.tar.gz", - "hash": "226a4bfeb1238178c56a7c9ff37ae21bb59765b8ee7d05b09148208bcdd3a98db78a3cbf346de70c8d20a34c777a8475c3991f3ed1bd47cf8f41e658216229c4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-arm64.tar.gz", - "hash": "6625ab63705bcdeba990baf21a54c6ddc0fc399ee374e60d307724febd6dd1ca4f64f697041ec4a6f68f3e4c57765cc3da2f1d51591ec5eec6d544c8aee4f9cb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-arm.tar.gz", - "hash": "0b2f4aae7c5762b5e9adec59fefea1265880bd2c6ad282e33de3e99d9d837e15e9b1a5e7939ddf6868a110bce4e473c84b01127699d247ca12fc89cd9c729fde" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-arm64.tar.gz", - "hash": "0f83cdaf9919f0710b9a92c2c2e490d9051fde38ba8b09fc9d9c7a9a2400557c00dda57f5335cdbbc36836bd13dd5dc8b382510d078dd8d05b0fd42ba8ba166a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-x64.tar.gz", - "hash": "5e302668e6b36414aa6c78d8ca2e1052e3fc857e359a3e28c6d2cb85174bb43d75e9565a8f2621467a99a634896bcdf4bc6733b6f6f1fed4dbaf6239d5c5e595" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-x64.tar.gz", - "hash": "53d6e688d0aee8f73edf3ec8e58ed34eca0873a28f0700b71936b9d7cb351864eff8ca593db7fd77659b1710fa421d2f4137da5f98746a85125dc2a49fbffc56" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-arm64.pkg", - "hash": "b07c218a2ff54fc66af291f18c7fd1c3f660c772288110d1e8407f55c414e0d5eea3f3f4a7f1ec24e6525f0a433412fd663ab65ea3516b7ee254cc10137d9aeb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-arm64.tar.gz", - "hash": "b19ef70a71a5bfe78520bd790e1490b541791e02dc5331f9a00ef14abed7f5b0c3bdfa2f4595d0c312256431aa6eef0af63e6dc2b1d140408d3e7285bf452701" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-x64.pkg", - "hash": "0335aa7154081ec3a619bc0b764afc54ae2f999198174eb73dd2353d492749447c7f8514d2b1407865f2453d2a0ffa59599ff09a7295f910fc411c0ab88b863c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-x64.tar.gz", - "hash": "611c7a8b89575fa4ee4fbe345d002e953eceb208c7751d72764d9347c67a49b019d4e0150cac84b0b51e181c61efbcdb66a10e836ba4d94b89da875acb99a556" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-arm64.exe", - "hash": "4c00262437f89ee88c9c8e21796fafabcbd5106cd396c068456d7f4410261d90e87f002e7fcf89621c6bb3406c1fb0812661580c9396b13031a7122df387de3d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-arm64.zip", - "hash": "82559e35052de846165e7b16ffdd067f2361024f1c7d6cfebb21262241c7bc337cfeaa25b5c173547b4ea7d2b66107c0ec8674119dc5e53a5d515d24f71e82f5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x64.exe", - "hash": "bd7118b96faaea98d79a55163f858b1013ea4754bb89892052bdcc1da5e1c16c395da842cc6d6b6384ba39a29ea7fd3f2465e7876f819377d6a2f41b292d50f6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x64.zip", - "hash": "871406108ff51ffce161cfbbdd778f3410041b270ecaaa03dfaa5a5315e2c546a16fb298a2daf7a04d92c30317e101bfa90efc4a2d0123de74c8b6a46db18654" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x86.exe", - "hash": "e3e7cb257e89990f1f38b42291bae2c110e99f134e3ee3ee57e8bd5573846ec3b2aef2cfc4fee08fcc1f6b964e4a0448413f076b869744d93f49bddc358c6389" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x86.zip", - "hash": "2c4969eeaaf8cec52cc0200d2c7d02adf3f490d0a8d1672cd97b308c8a136f08699fe8c86ed5fb52a2e87375afb4471c578ea1fa9debb8052a44e6dc63b223dd" - } - ] - }, - "sdks": [ - { - "version": "6.0.420", - "version-display": "6.0.420", - "runtime-version": "6.0.28", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-arm.tar.gz", - "hash": "226a4bfeb1238178c56a7c9ff37ae21bb59765b8ee7d05b09148208bcdd3a98db78a3cbf346de70c8d20a34c777a8475c3991f3ed1bd47cf8f41e658216229c4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-arm64.tar.gz", - "hash": "6625ab63705bcdeba990baf21a54c6ddc0fc399ee374e60d307724febd6dd1ca4f64f697041ec4a6f68f3e4c57765cc3da2f1d51591ec5eec6d544c8aee4f9cb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-arm.tar.gz", - "hash": "0b2f4aae7c5762b5e9adec59fefea1265880bd2c6ad282e33de3e99d9d837e15e9b1a5e7939ddf6868a110bce4e473c84b01127699d247ca12fc89cd9c729fde" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-arm64.tar.gz", - "hash": "0f83cdaf9919f0710b9a92c2c2e490d9051fde38ba8b09fc9d9c7a9a2400557c00dda57f5335cdbbc36836bd13dd5dc8b382510d078dd8d05b0fd42ba8ba166a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-musl-x64.tar.gz", - "hash": "5e302668e6b36414aa6c78d8ca2e1052e3fc857e359a3e28c6d2cb85174bb43d75e9565a8f2621467a99a634896bcdf4bc6733b6f6f1fed4dbaf6239d5c5e595" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-linux-x64.tar.gz", - "hash": "53d6e688d0aee8f73edf3ec8e58ed34eca0873a28f0700b71936b9d7cb351864eff8ca593db7fd77659b1710fa421d2f4137da5f98746a85125dc2a49fbffc56" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-arm64.pkg", - "hash": "b07c218a2ff54fc66af291f18c7fd1c3f660c772288110d1e8407f55c414e0d5eea3f3f4a7f1ec24e6525f0a433412fd663ab65ea3516b7ee254cc10137d9aeb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-arm64.tar.gz", - "hash": "b19ef70a71a5bfe78520bd790e1490b541791e02dc5331f9a00ef14abed7f5b0c3bdfa2f4595d0c312256431aa6eef0af63e6dc2b1d140408d3e7285bf452701" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-x64.pkg", - "hash": "0335aa7154081ec3a619bc0b764afc54ae2f999198174eb73dd2353d492749447c7f8514d2b1407865f2453d2a0ffa59599ff09a7295f910fc411c0ab88b863c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-osx-x64.tar.gz", - "hash": "611c7a8b89575fa4ee4fbe345d002e953eceb208c7751d72764d9347c67a49b019d4e0150cac84b0b51e181c61efbcdb66a10e836ba4d94b89da875acb99a556" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-arm64.exe", - "hash": "4c00262437f89ee88c9c8e21796fafabcbd5106cd396c068456d7f4410261d90e87f002e7fcf89621c6bb3406c1fb0812661580c9396b13031a7122df387de3d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-arm64.zip", - "hash": "82559e35052de846165e7b16ffdd067f2361024f1c7d6cfebb21262241c7bc337cfeaa25b5c173547b4ea7d2b66107c0ec8674119dc5e53a5d515d24f71e82f5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x64.exe", - "hash": "bd7118b96faaea98d79a55163f858b1013ea4754bb89892052bdcc1da5e1c16c395da842cc6d6b6384ba39a29ea7fd3f2465e7876f819377d6a2f41b292d50f6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x64.zip", - "hash": "871406108ff51ffce161cfbbdd778f3410041b270ecaaa03dfaa5a5315e2c546a16fb298a2daf7a04d92c30317e101bfa90efc4a2d0123de74c8b6a46db18654" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x86.exe", - "hash": "e3e7cb257e89990f1f38b42291bae2c110e99f134e3ee3ee57e8bd5573846ec3b2aef2cfc4fee08fcc1f6b964e4a0448413f076b869744d93f49bddc358c6389" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.420/dotnet-sdk-6.0.420-win-x86.zip", - "hash": "2c4969eeaaf8cec52cc0200d2c7d02adf3f490d0a8d1672cd97b308c8a136f08699fe8c86ed5fb52a2e87375afb4471c578ea1fa9debb8052a44e6dc63b223dd" - } - ] - }, - { - "version": "6.0.128", - "version-display": "6.0.128", - "runtime-version": "6.0.28", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-arm.tar.gz", - "hash": "e7a6428044e86da8f570df3335462062e322e8fc4433e3b6e08884240bb7897709eefc633d93a5ccc9503d1abecf13cd0fe801b81451f390a5af1b38bfa8de91" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-arm64.tar.gz", - "hash": "3bc341f842346f0fae948c4ff4d52a14c7ebe09aec8e76afd19f8441e52456f66fb32998ea19354053fb4994d38ac7b0572df39708d6e7ba53623a73138cf6eb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-musl-arm.tar.gz", - "hash": "b04fa55e17e4cecf680636743b078b8781903d0c7086bc85bfdde3a0f50c557e8d29c4213b916d1bfd735beb8525dd5cb47b1c1f24235a8c729aa8a69d559c10" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-musl-arm64.tar.gz", - "hash": "f1a5e7b6654cbcbf78d1af958199c101cf0f72031e7633a0c9ad5f19ab6c0662cc5b8ea971383ea8fb16342480f9d08076c6cc096fe4596c3f59b56f3a9bf8c9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-musl-x64.tar.gz", - "hash": "ca11d57726faab4aa3bfbed5ff26befd6f9d7992f54601cd939b19af7a2e0ddb426a17fd68e7945a06712c354bcfc24643d16c768172256c3a897fd9de68a0b0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-linux-x64.tar.gz", - "hash": "0f282e8b801e37b762a8e0a8d98df8d0a566973f60b8d99d1f08622ebf00655d65d682d971ddeb0d3594ea3276382dc6e2a96de22e6b22e4122b57f0054906ea" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-osx-arm64.pkg", - "hash": "c84a0744cc0a159bd3235a3fbaf62c802d835b5cac442106dbfd49fbc615ded9b2bbe998e787dbc53f128d247df73909f2292f05336f828469d29e1604d2ef7d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-osx-arm64.tar.gz", - "hash": "7bf615a8ee80839a46c1e6d70b34774ffe049f3a5a5d1a215eaf94c50a451e5c31e4f3bdfa5e42772f2735d541db78a68bed6330a2c68369237876ac31be238d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-osx-x64.pkg", - "hash": "ce67514dd73fd3d20270533023d29251cfbccc29658c90cc71ad17bf2dde61949c9fa3ef8df53509985fd886d25f0853b8fd742e0b5ea081fed2ddd179ebc0fa" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-osx-x64.tar.gz", - "hash": "eb696e628a92ca18a841c23958e5efb0e0881299062301340786316db28f9e5b4ac60ea2d135f7b39933fbc88b37be315707c5dedec73792958ece299c5cee39" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-arm64.exe", - "hash": "7567f58718a96b68c85b4078480f44be0031e13174c8a949cdf2d3c06121630c145aed50b3027d0d96bcca918b6ab08e1f87238af6814ba5546c00cab8fa35c4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-arm64.zip", - "hash": "2f881ec651389558f114542d00875e1beb14763039e0f5f30a7d2be1d22e633560ac425442291c497c7c7c6f7740dc88fa754fa384a8cc582ddbe7b7d3da0890" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-x64.exe", - "hash": "f021cba314e257b3c2a7064ad912cca858ca6367b142d448e2dbd0771dbcf19bf3f531207d65f9e013d231ec5a1337a240c9c665d051f561afa677f5eee32624" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-x64.zip", - "hash": "1b8c21ebe034448bcc5e320ab468ccb3ecee0342a7c0c7293922db26533e3a9d47596c838b06f6d6e151b3a1a6d27e636c807876e7b58762a1f7cdd64eded135" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-x86.exe", - "hash": "799f6d5269c7f4e3de914d466431d00f588c16a38ee17304f4b8d073365c2db4d4009481ff9f539c54b2757e4d2515e942878bc8d072340fcb56cc91dcd6e5a5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.128/dotnet-sdk-6.0.128-win-x86.zip", - "hash": "c806fa1e68f3eaed93a9dc5119d3f0c361cfcc114ed771a1f2e0ff772acdf21d58f08a25368038f1db28290f2c932d9245e8d04946dc0d0ba4144d6ad64ff16f" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.28", - "version-display": "6.0.28", - "version-aspnetcoremodule": [ - "16.0.24052.28" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-arm.tar.gz", - "hash": "6a6787f692f27fd8e437787cbc69840c7e19723db5d155802b2ed86917d6e8ca7d114782839a167dee0b23c3af09c9d82f938aa7fbb6c66a10bd510e577e40b5" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-arm64.tar.gz", - "hash": "932773d9aecfe3918c0479f44d5ca7d643cc7bbe632421ea78326605dd374e9df904f49a2c4279cab0af16be55f41c8fb8e04590aef55ce13c728f9a64d3015f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-musl-arm.tar.gz", - "hash": "a2e8499f4e9171b0ff6dc9048c1bf7a6974208f0f8bddc3af5b35da17b275f5b58479a543f974be875fda295fb9b00c87f760358b854edfe0bb6ecd893488539" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-musl-arm64.tar.gz", - "hash": "0166ea4b46dd483dc17023557524d6d554d96c0955c44f565e11c948c4c19285ef806973ae4660999e78637709b73754d1eb91c0ac6c8e05b9c71e5d4ac7a979" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-musl-x64.tar.gz", - "hash": "74cf511026f5d5926bd4a16b88c711b87810265d85d5c9ed54b12b63c06f584fd4a4053c77d71c4818e8eff187ea31682defb001c19d8176e326afb42f8af255" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-linux-x64.tar.gz", - "hash": "52675b81e026b4b673aedb2d9ee99a79ccb47eab090a059ef9b95615befc034ef7fbe674b01ae813870f73dcdbcfa32906969860a464aa5d356c004b6bfb201b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-osx-arm64.tar.gz", - "hash": "a713927fffc0335c9b25febbae1f75e8436e9b3d4b36fe4860bc104cac393e72164551260bb4804da282f3658c9c32a88ded87c47d1e2e83d436f932dda6cb84" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-osx-x64.tar.gz", - "hash": "40f8a76d68a89e62c4300f4f111a9001be0e4664ab6bc07c6718e33a31768e6b8e2bf130ca561628c85e9e1718c26140a8b98465d78fd13471e580148cd1ae39" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-win-arm64.zip", - "hash": "5ddc2f96c5535bf371d01d0d4b09f1daea1cdc32464283a8a181536d0859b643d02330292074763160d54d4abcd9f65ea3dc0bf43d88d04a079a2b5de3320bea" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-win-x64.exe", - "hash": "8bffca6a8c92ea2b438e01857028cc8fd2904900f6e069b976eb1d246221190e05cafb223491ffdb469038034c2934662a5715603b0623662756abb4e3fc26d8" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-win-x64.zip", - "hash": "8b9245c6dfd0e9d5603e29822675ad162ac80b161bfa2b74340f1a86e0481a65c7d98bb0060f4eadb4f3a16c2b56aa8a298eaaca06a3dcf1929c67c6fc866899" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-win-x86.exe", - "hash": "abf39d5ab7e1e9cfc927f0b18a16235810e2851f86f239abc674023d1da14bba534f641a44616e0fc3593a780d19d0cc5d833186cea2f386f9ec2d80bf136516" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/aspnetcore-runtime-6.0.28-win-x86.zip", - "hash": "2b75146cc8b5a6d733593df60bd27acd38e124d66772ae8beb0cdc1f27bec1bade5466be47da39aa27f5628ecd504dc451954d61c5a54b90b3c766bae59e5144" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.28/dotnet-hosting-6.0.28-win.exe", - "hash": "740e0e2e60fa763f67b981ca061733929ed08fce1cc0660cfefcb85c30d0b607cb94c9ac3877b1c015050726170e1e47b718e8a0cefc968a29fdf5bfc4da7ce0", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.28", - "version-display": "6.0.28", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-arm64.exe", - "hash": "ead47113e3eac7009fd8224b869d09531f6226cae55b3325f23b0860b83a3dec30df02c8fadf04d8fba476ada1ac65b3c2c2d9bcdff6b1728161fd4501d73723" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-arm64.zip", - "hash": "6bb595a365a31a8d4dbdea78a7998bc9a2a75fda786106c6e80b279d408b1c3806005217cb074c4e1541a60424926c74072cc02fa27672fa976d463879e94b5c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-x64.exe", - "hash": "984ff5f50f0b59e1edde0926858ac63a5605ea9f2c3e55bdb4fe81aaa805f033a70e43474858187c0c3e7358d4dd9b06b8aea1fd1b15dd0d0c3fc9c1d20cbdaa" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-x64.zip", - "hash": "572c94cdb0e9a7ea8e927f918521237081cdd857446a23bf9299798d890347c493c30b5854ccf035b97b1f2fd950bcbab2746d1d8aadcd4160b7534dd3b93501" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-x86.exe", - "hash": "4d6f5addb5ec088eacead3d6155d9124770be5f60a779e9f159ea5d19a66de2dbd62ec834eff242d821de81f0aa68f7bf4cfbbc8c916613176d56662c6619dd0" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.28/windowsdesktop-runtime-6.0.28-win-x86.zip", - "hash": "7eccd570d4623145dea52d5938cec96ed5809b80a1078e2161b95c95a1876f9b8e0d403b4fd0c035abddf8cff8f7b0637143bf7a635e579b0527cb98562f4d0a" - } - ] - } - }, - { - "release-date": "2024-02-13", - "release-version": "6.0.27", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21386", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21386" - }, - { - "cve-id": "CVE-2024-21404", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21404" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.27/6.0.27.md", - "runtime": { - "version": "6.0.27", - "version-display": "6.0.27", - "vs-version": "17.4.16, 17.6.12, 17.8.7, 17.9.0", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-arm.tar.gz", - "hash": "fb0f964ba5086ffd9bbc1467d97deb057db3c07c911a42eeee60cd6f35c3575efe45fe073648d803636f642fefe04774eab5e62a3f3b6afc4aa97087962d2c60" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-arm64.tar.gz", - "hash": "2e9772089ca8d548201d02542ba2013506530183ea6f52e8907afa608662ae967579add6d9704b75c22f2639667ef87682a7ce92aff05d51670e9354e52df1ee" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-musl-arm.tar.gz", - "hash": "2eabd2cfcac1061d93b0ff45891a95cd74dbf0959f5281609d763f48ca97f4e97ba32b02820f9c3b5a18be757666d2781fb6eca12623ad2b6ede3297b074a937" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-musl-arm64.tar.gz", - "hash": "3efad6050ec2bc3a2df40aaf8d16761be204ea866728d4b2c09e0ba4f4dc46225ba683c1c8a1ed446d2aed80e6d9c8eb46892fc6f28f2b2107bbc4d277de2d76" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-musl-x64.tar.gz", - "hash": "b090b5499954ad246f136e64fbbb6ff375fceee7f0933d758ec2c595275c54aea353453b755f42d9ed300449c9d7b24dd13ff27c325869eaca2f01b8dba880af" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-linux-x64.tar.gz", - "hash": "448c4419e6c5b52e82eebaaf8601bbe668a0c8bb3293a6004125c7305b38072f7d2236ebffcaf4a71901b61b22ce66ae8b077af6321ba14729be385f228be04c" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-osx-arm64.pkg", - "hash": "5291d1e71df042d2a0a950f1a4f55b9fd2e752e722a9d67aeaca7e1d80b66d442e8f86eee6ccaa41cd4b45553f0551881a1aa680c9753a8f25a3c8cccebb0811" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-osx-arm64.tar.gz", - "hash": "5394fb21a6c4748ccf12c47c3774ad3a193ab3dec263161bc90522bf3b2de3dd65c0102a33a9c946c2b88588fc1d6083ee4c9c683d173d7f371a98ad78591705" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-osx-x64.pkg", - "hash": "78c9d676521a173d02ad9d60061fe74f9512fbe9c0074368a95ddafc541b10af6d717e29b6130e6500fda78dc97886d1466151f7db70f753dc17d748f262da96" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-osx-x64.tar.gz", - "hash": "c15275726882d2cbbfe8e76b05a9dd6e6764a5889c54b2e40eefd057e39f4c44c2da0909b890e27f463b47b08755a8b83657b6f67c77a460e3009554e85b4942" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-arm64.exe", - "hash": "fafcaa8d9c76ede6e0259e9ce126de93930eac5b6e5154759293f230e7fbefd2935bc23b6cf308fdbbceb3edd40e1f904a8eb7e12332f32128da9217f2e8f1ef" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-arm64.zip", - "hash": "5a21cc73334da4e913e8fdb60b6dfefe566ab677e475f614444e6e50cb9ff8811e5b15b601dd1a4536780826749d56aa18609f6660e407b939af027101dc2238" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-x64.exe", - "hash": "15dec7681699b394f4309da6f4754ff724f330ec5bdbb5cd562699a441993cdcd49b20c96b648bfd47f6a2cbbd0ed14b90c221d3f868c0644dc84707978006c0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-x64.zip", - "hash": "d1e68a924c45bbde48e0b3a0ce0f14fe061a231dd6ca55c434a095f4c779f2cd3331f8b5d2d845864ba51e71a9877b9af4b22e435f4fa2717bef7be9b8674054" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-x86.exe", - "hash": "a3a215dab0a5034d4e346ec5e7287a95ebe89c64948cbd2c1471a719e6cca50d2601b7dd30a7155b5f474658a6e0ffaf677e424c97daa564bf2e4388a2211892" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.27/dotnet-runtime-6.0.27-win-x86.zip", - "hash": "ec81c2f33dbd7ec40122116f0c187e92b001794fed351b9130feb5566beae64f4d5922b4bebc1508c5559f2768f31fd0d15bf795731fc562c2c130594f1de878" - } - ] - }, - "sdk": { - "version": "6.0.419", - "version-display": "6.0.419", - "runtime-version": "6.0.27", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-arm.tar.gz", - "hash": "ebd3795b6b9e828fb6735156d9121c2858fd225559f2ecf93f0c65280e8bc18197249f3244d8d6a6f0cb84d14f9c3718acd01cd5457441c2836aca4101335392" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-arm64.tar.gz", - "hash": "c249e5c1d15f040e2e4ce444328ec30dd1097984b1b0c4d48d1beb61c7e35d06f133509500ee63ded86a420e569920809b587ff2abe073da3d8f10d4a03a9d15" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-arm.tar.gz", - "hash": "6dbbd9607a2a98766c7dc900d2fa7aa8e5fa734f6c052bf5f2bdb0bcfbf63ff20f4ee4a1dce56e9de84da8c44c2ac803cfd0f650ef9e4a9c1a2c5827aef0346b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-arm64.tar.gz", - "hash": "428c594cbb04f0ffb2413ddf50f0a6aa1f66506ef231ca57089f4275fa51a4742ca4130172b57cb40d75b4252705cae232183b4db675c3b67fa54b498c6afc9a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-x64.tar.gz", - "hash": "2a31055f06769ac9495d6d77a913d67791a98094c9ca9730ae66c725386cdfca42e9d3a3b7cfdb327194200afc38e495dab867908773e60a9b92ee99c7c6b92c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-x64.tar.gz", - "hash": "155a9ab33dc11a76502c24b94dbcd188b06e51f56814082f6570fd923cd74b0266baefbcb6becdd34e41c3979f5b21ca333a7fa57f0e41e5435d28e8815d1641" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-arm64.pkg", - "hash": "a73c941be5ee8734d2ff8eaf738132c55b28dd69ea3601bc2c035170cfb452b17b8d801b99506e41227bbec141c689db848d76d90e07533ebeb0aebdbcc5f16c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-arm64.tar.gz", - "hash": "9db6455c2bad80f8c8b312630c77700fd845203ba20cb7022671cf6a22b1663a1742e47eed7a384142a1d58388d8d736b4868efc5ce80b205c949e4ed5d71fe9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-x64.pkg", - "hash": "978e0ef30940c647be4efca48c00e40b9a0ca8ff03490e525723ada8da99b7fa46ebd7413676e58782b3ec8928d4972526f2cb7a46bfb79b1b7e5cc5aeb65566" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-x64.tar.gz", - "hash": "43d9ee7f63131138b9a8aed10ca6797256c029168a07c340ff7a5b2fb43ebf62efcb62a4bcfe669de2b57749223d89028e68bb45e9dfbc0d5341ad5f1bd0516d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-arm64.exe", - "hash": "0b484736a930ddc13e5380cb56d98b3c1e63a983627f2053820de4f26f0dbf7923f9523b74acaa4a7c5b63a6887946b6703415ed7b5cb49639c9d52ea418831f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-arm64.zip", - "hash": "dd4c90996f421aadf71eae7026776353c70b88f695da1da3ba92530607f66ed92f19c9fd41f5326994b61591b704778f8aa9ee56e7fc83d5980d4414a11f62d3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x64.exe", - "hash": "65a4f4fb78aed9fc7d7e997ab609481b34079b3d1f130f231aa1b82f25381e89e50f3affc894027d7dd6b2c0687d3749b06f7eed26a25155f68d4ff88451309d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x64.zip", - "hash": "102d1e2ec71b7a1caf169b83f3004d30f1684eb77777a3c8dffa929e0e05d04ce21e585f670c212d4bd840928909605e2d580989cef9bb3f000e790b2da73eeb" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x86.exe", - "hash": "58c2da39735de228ca9fb7f36de505bf50aaeb759d03bbfcfea509b35a7b70a61a6c30ae028bb98c6f208b0586ceacab6132972e9d97e1e197ada15676e23815" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x86.zip", - "hash": "92abac3bcfab97f4d24454ae501677687b79d677b6f3a421a047761e0e77a00e0647701622077029282c672ad4e515099b23529a3499f1d1dab99483891a5365" - } - ] - }, - "sdks": [ - { - "version": "6.0.419", - "version-display": "6.0.419", - "runtime-version": "6.0.27", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-arm.tar.gz", - "hash": "ebd3795b6b9e828fb6735156d9121c2858fd225559f2ecf93f0c65280e8bc18197249f3244d8d6a6f0cb84d14f9c3718acd01cd5457441c2836aca4101335392" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-arm64.tar.gz", - "hash": "c249e5c1d15f040e2e4ce444328ec30dd1097984b1b0c4d48d1beb61c7e35d06f133509500ee63ded86a420e569920809b587ff2abe073da3d8f10d4a03a9d15" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-arm.tar.gz", - "hash": "6dbbd9607a2a98766c7dc900d2fa7aa8e5fa734f6c052bf5f2bdb0bcfbf63ff20f4ee4a1dce56e9de84da8c44c2ac803cfd0f650ef9e4a9c1a2c5827aef0346b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-arm64.tar.gz", - "hash": "428c594cbb04f0ffb2413ddf50f0a6aa1f66506ef231ca57089f4275fa51a4742ca4130172b57cb40d75b4252705cae232183b4db675c3b67fa54b498c6afc9a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-musl-x64.tar.gz", - "hash": "2a31055f06769ac9495d6d77a913d67791a98094c9ca9730ae66c725386cdfca42e9d3a3b7cfdb327194200afc38e495dab867908773e60a9b92ee99c7c6b92c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-linux-x64.tar.gz", - "hash": "155a9ab33dc11a76502c24b94dbcd188b06e51f56814082f6570fd923cd74b0266baefbcb6becdd34e41c3979f5b21ca333a7fa57f0e41e5435d28e8815d1641" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-arm64.pkg", - "hash": "a73c941be5ee8734d2ff8eaf738132c55b28dd69ea3601bc2c035170cfb452b17b8d801b99506e41227bbec141c689db848d76d90e07533ebeb0aebdbcc5f16c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-arm64.tar.gz", - "hash": "9db6455c2bad80f8c8b312630c77700fd845203ba20cb7022671cf6a22b1663a1742e47eed7a384142a1d58388d8d736b4868efc5ce80b205c949e4ed5d71fe9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-x64.pkg", - "hash": "978e0ef30940c647be4efca48c00e40b9a0ca8ff03490e525723ada8da99b7fa46ebd7413676e58782b3ec8928d4972526f2cb7a46bfb79b1b7e5cc5aeb65566" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-osx-x64.tar.gz", - "hash": "43d9ee7f63131138b9a8aed10ca6797256c029168a07c340ff7a5b2fb43ebf62efcb62a4bcfe669de2b57749223d89028e68bb45e9dfbc0d5341ad5f1bd0516d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-arm64.exe", - "hash": "0b484736a930ddc13e5380cb56d98b3c1e63a983627f2053820de4f26f0dbf7923f9523b74acaa4a7c5b63a6887946b6703415ed7b5cb49639c9d52ea418831f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-arm64.zip", - "hash": "dd4c90996f421aadf71eae7026776353c70b88f695da1da3ba92530607f66ed92f19c9fd41f5326994b61591b704778f8aa9ee56e7fc83d5980d4414a11f62d3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x64.exe", - "hash": "65a4f4fb78aed9fc7d7e997ab609481b34079b3d1f130f231aa1b82f25381e89e50f3affc894027d7dd6b2c0687d3749b06f7eed26a25155f68d4ff88451309d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x64.zip", - "hash": "102d1e2ec71b7a1caf169b83f3004d30f1684eb77777a3c8dffa929e0e05d04ce21e585f670c212d4bd840928909605e2d580989cef9bb3f000e790b2da73eeb" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x86.exe", - "hash": "58c2da39735de228ca9fb7f36de505bf50aaeb759d03bbfcfea509b35a7b70a61a6c30ae028bb98c6f208b0586ceacab6132972e9d97e1e197ada15676e23815" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.419/dotnet-sdk-6.0.419-win-x86.zip", - "hash": "92abac3bcfab97f4d24454ae501677687b79d677b6f3a421a047761e0e77a00e0647701622077029282c672ad4e515099b23529a3499f1d1dab99483891a5365" - } - ] - }, - { - "version": "6.0.127", - "version-display": "6.0.127", - "runtime-version": "6.0.27", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-arm.tar.gz", - "hash": "a5d5496060cc0a733bed2e9a22efb0a1a817fdceb92dedca0a30c24c6476ecf5f4bdbf44c21919c4ee014e31c9702bdd78426aea494f896cbc081ac42d9c331f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-arm64.tar.gz", - "hash": "eef319d517c3347ddcb0bb2d36a8cfd2bcb2b1a8c5cd5901534569b43c8c46874e9366598b3659c868f261275814b21521de8d5c45d5b82b3296c008fe0f3ee3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-musl-arm.tar.gz", - "hash": "fe888e453adf7a7e5410e1edf334c50829f2d97b5f907298f23af0443df63de0397cbbdc8247fe5ac36f3b3191f67501fd864fb0b0e18526754673752f219330" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-musl-arm64.tar.gz", - "hash": "9860965b11738f7dd443000e6ba37bf6c5ef46dbcd389d09e945b8c6965fda84f1d7e809987641e6a0c1e1a3a40bd4e4f0eedae2df98ddfbf9023aded0785138" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-musl-x64.tar.gz", - "hash": "ef18f4e29b5730f158e677e66eba4bd9575c8c04470ea5c056a8491f72cee0e0f6673dfa94cd674cf6959a188c3ddf0870442a763b813228a915387442c8285f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-linux-x64.tar.gz", - "hash": "f5b90d85276ae0e570a4487f0d56d18d2a2b903d9cea95a6f626cab48a01ebf5a810d97d176bb9da9ac7a6256cf58b201e6a42ff87bc0abcf7679b827d8f2d10" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-osx-arm64.pkg", - "hash": "ac52cc44b2368a44844c0cce56e9ce44073b009fee58f282699b8ae3ba06d3b82c4a2a2b8aac1da1a9db9c8587b2bcacd3b5676ee8e537f500637e3e82617e1d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-osx-arm64.tar.gz", - "hash": "c8408b0404477f14c901e6d68ee5a67935e6a7520ef5f62895f4ed82e886361b3fdb7cd353b187a4f92ccc206339d39efa1b3ebb5df94e1e9e564e1489919d5a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-osx-x64.pkg", - "hash": "b340739dd318584f1447356f15c3ee8186e316bd439a4b4ef13e0228b477a950c003290423b787966d841bb40d445684e13f4b5ec7841eb3819fbc79e2518476" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-osx-x64.tar.gz", - "hash": "4d135086844e42aeaacf3780a56a2dd4223405b1e2b09b63bb0d7842a32da52130d26fc6bf6c7edd982bc03496f8951857144467ca3683035a049fc6dc912100" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-arm64.exe", - "hash": "089c85a41e04dd84fc57485893fa13c2340fe1195f06d404878ad9a8f991df069bac094c4b9bc38a01e13ac5474140d9a7a2134dcc278c6bccf8fa5505ee591c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-arm64.zip", - "hash": "442194f14ee93f7e175084cfc601bf240fffa666669aee201ff9dde85963121d6107854e995096dbb19b2d995ba9e02e99aedabe8fad0cfa07020c83c0300df9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-x64.exe", - "hash": "d850a425bcddd48edbcda549593888a50c176405431f6386767eed65fedc4e3db43cfd6bce9109117384dff18ac07b12b9e3e7ebfe98c2cb29ee96b49d5f3258" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-x64.zip", - "hash": "78d220c03a0c28000a92e089c54377828dadda9c310be32c2bcb6694e4f6d04a381756a2bc2716cfa26c1d66c07152f5a72ca451a9e5fa09b8ae48243cd86782" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-x86.exe", - "hash": "19ced52ab2f3a299fe6992fb2e236c34b10b0a763c735aef97b0104b5d1d639b092a07adbd242e15093f7eb162ab306edde492978d26e36a232147286a547d9d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.127/dotnet-sdk-6.0.127-win-x86.zip", - "hash": "a241bf06d13e54aeedd11c2a05e01c569cba6caf23d571822ae94529565f4d17b3f76c37d2b9b44ad76b462ede31b75244f09749545285e4ea556749a1346118" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.27", - "version-display": "6.0.27", - "version-aspnetcoremodule": [ - "16.0.24020.27" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-arm.tar.gz", - "hash": "c3128b9ce739328c462db220488e604fd119b0cc148e43ce7661ea27e4ed83fe0fb860f39acae83de6b74f7b847431008a37dcc00cd6d80564eaa47e7be881a0" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-arm64.tar.gz", - "hash": "cafb52efb2bb646459c3d133a6968105867bbe0ef580318def47ff83770e1f180431f53c5a7899563b5c8d7fe44a58d423c8c7a4b3f29054010230fb47b1fa89" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-musl-arm.tar.gz", - "hash": "2c7456b921a03ee42ea1b5b5772f826a79af42ddcbff6a328072345a2d4719e1d36781be335c0607f8480fc879062a30a94f09dd4425df82dcdce5abbddf6d2e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-musl-arm64.tar.gz", - "hash": "a4107fca7905f498608287d64bfae67c927669a6cd98b12abc48f9ff15f66ae244f54c1d546b6fa1d9a90f7a15b5787101be6995fa48e1d8b346a6b033aaf747" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-musl-x64.tar.gz", - "hash": "8e496db5141524a67567f7e24c21bd62c88543d7d3261cbedb60b9bab29f91093fed50812555fa15c741b79c612bb825a4b43acbf2735a71480056e795781cfb" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-linux-x64.tar.gz", - "hash": "47495e387c63b10f3b52065f40738d58b5b60d260d23cff96fe6beeb290f2f329a538c8065443fa3b10ecbd3456bdae58e443118870e7b5774210caf07c3f688" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-osx-arm64.tar.gz", - "hash": "1cc3d27ca26edbc30f24ea918a44414f0098481c6ad5ed5f19a5db1c1ea1ec3c412804233cc3e7aea481aee351be4512b40c554fd5b1807204a9dc22a479b9ba" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-osx-x64.tar.gz", - "hash": "4cf70618e2f01401a26b05fd287867ba9b23498629d87bd61d3418a0d5191c0e07a16090e149e759072b00ee9860a4cf7260e6bf36e2d10ee19d0d4c2a39a5e2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-win-arm64.zip", - "hash": "cfadd070ededf6c6fedc719552f48a2d9282af9a366d886cf150571f121fd93841f3e0cb33a20eb74411d09ed77b374b3f1162a38d32f1bd44fdce4a26fddee3" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-win-x64.exe", - "hash": "03dc5198461e62518f63aee7065da207f682e92adf8764a05c0c3646d7a293352bb1f98648fbb056317f42fe9463bc1305b7a71b22ec198689013f9bf9902b72" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-win-x64.zip", - "hash": "be99c0a6b86298b4851f02d1766146a081f489529391266a98c97d5b4774b9c2fe93bdbc73e457e79e6b31343233df3a5225b01b50f43c37c9f19ae6b29e9e6f" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-win-x86.exe", - "hash": "d30faadf9462e58c78bd44c63f1a4f1798442313998c21f31ecf0446428074c2a05cf41b14869d00e537e71994f8e95753f862f5cd2b575efadc5d9c0906ded6" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/aspnetcore-runtime-6.0.27-win-x86.zip", - "hash": "bdce6d8c04ff81de89bef7785e95734a5861d040863bf67a386c6bcb57b6c401aed419fe8fbe8d0fe488320445ca2cc364947c472651e3c7d318151c6e967ac1" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.27/dotnet-hosting-6.0.27-win.exe", - "hash": "45de2ba489b974aa2d65317d1f415208dd1869841b25d592b737d0a1fd003e40e8afee216f74783e7f4db304f17917f623abfe8b4d6373b8b405effa522cac98", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.27", - "version-display": "6.0.27", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-arm64.exe", - "hash": "0b040a3b8e7055fbc981e959a4694c815451512e6f5e5055ec2b4207428f53120bce156fc6ca286cb2a88b610b788131c1b147cae52eb4ac30b9a6862b09a5f2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-arm64.zip", - "hash": "5d2359df62f99db32e66440b5a936d54c728e3de8a0af612d45782d37e5860d810c79c20171e70de12de85698e3aec2126bc9f6499251147e77fbae9d54790f0" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-x64.exe", - "hash": "8927e3bcda1f439af84af0cb41fefc38c4386297eb463ddc7dd835d98502e63e0ba06a0732b02939a981644d8afad1d77036b6ac38d348c1cd29cf691cb80da7" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-x64.zip", - "hash": "a13eb53b7a1c9dda0baedf47e585b3e338752525b96a25f2cafbd0df4955a1ac8b3196e4bf754279642314f2631ce5d47cb25878adc8d68767d6df829a67198f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-x86.exe", - "hash": "b51ebd7eb998a47e2f40016527bded5e2ca845e771ca1cd718b4ec58cea2bdded88a038cf3520594cee9844dbb8d2d246e9daec570964daab11d3b59c0bfbe12" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.27/windowsdesktop-runtime-6.0.27-win-x86.zip", - "hash": "bf98e6af50cfd2116a2c8fc81d6ac241fa391c6825edcd18a646816d712da49c9d5560a2b09037a2dd42194f25bdbf79298d452fa14d2097aed622b2a142a3de" - } - ] - } - }, - { - "release-date": "2024-01-09", - "release-version": "6.0.26", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-0056", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0056" - }, - { - "cve-id": "CVE-2024-0057", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0057" - }, - { - "cve-id": "CVE-2024-21319", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21319" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.26/6.0.26.md", - "runtime": { - "version": "6.0.26", - "version-display": "6.0.26", - "vs-version": "17.2.23, 17.4.15, 17.6.11, 17.8.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-arm.tar.gz", - "hash": "1477b17ea63a87f54d08d7e2f2f083fd6ccfcb650833285e862a7dbf75be8db71cd59476696d62e8f3b6043f245b29d2546838790f50538c29280dcf942190a5" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-arm64.tar.gz", - "hash": "775d96bb3dfa6f5e7f81829e7eedf0744aeb75d5e1a613622debd1f285f9eda694ae79effe531558dd8367dc4fad5d682039aa24fb2bbb39fb561c67aeeb4a18" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-musl-arm.tar.gz", - "hash": "e6d3996c83bcd5b13476102743b6fee8b1ff11088dd176464b93ff324afada0eb639cf75d804022c25175458dfc6a070d3f72c2b2649e91ffd6e4d1f7d3bb2f8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-musl-arm64.tar.gz", - "hash": "52d568a745910923a3fbcb51e3caa8634096ec8f628587c76699e8b4fe7593822cd4c1b386484f42141afd1662c124e3f449d10be6c0ae237dcf4fba891e6a66" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-musl-x64.tar.gz", - "hash": "ae4c0f714a5b3c686f703825fe9292d02feb0942c5a30eb98fd431714929aa0eda096d24f458aa9c66926538d147e19b2e4839bdf1bd960b48076abdc7d88bdd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-linux-x64.tar.gz", - "hash": "7336f71f7f99ffc3a44c7d730c6a1e08c5c0b6e05d2076a1963776f174f8588d31c9b783d1c4f645f7e7cc6a54077b798c6bde35ed4a812ffd9b2427d29b0b34" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-osx-arm64.pkg", - "hash": "fa881d722bbddea8ccf5063fc6185f398aef18eae5efe1a3b3445eaaee96c5912a44e721cbcf4455aaa734efc7821f4fe3b1947e3f6cfd9130a0507e07684b9a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-osx-arm64.tar.gz", - "hash": "fba964511efd71b87aad92ac8a31d7a86cde605fc0eb9d57ea270067b22cd540a67451d8ff3a079fcec8fffcdcfcbd74cfcc89123c2b11096dca78cbfc891be3" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-osx-x64.pkg", - "hash": "0cafe2acd3f3eb0800eb9b090b39c50fc96e9ee4ce0f8c4fcbc4705bef3bcf5ede48e048ff62aa8fd42e1050543bb31b121b2b3d7250dab891f21fbfa228b289" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-osx-x64.tar.gz", - "hash": "e2d51f955c841299fe6dabe1abce15ab2ffb2b9c624f5c2ad12685a14451fa62ed9452ae7d7d579f1beca784e4d4e3b532cf686e58490d44bbd0e022ddabd667" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-arm64.exe", - "hash": "948bb8e56e3307b76ec36f0069355c271f2401bfaae8f839fe7573ac4ca08b50470175a5c1a9d29d6314b76406c0124d686e8c68329529270bb941f1bc3f3138" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-arm64.zip", - "hash": "13473154108f7f575cefa89a413c93e7c872832f5921ad9e1ec80b7c8b359553a0eb53b6f9fce63d595cb8ee806f94c78a01e19d3bb35c21db7122e99a404d91" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-x64.exe", - "hash": "3ca5c85db44c19e8b96cb7d1e40cc6cd8303c81450fac7e1036823bd2321dba0e5cb184642b396ae9d41abd10b4c048daf69c5b9632e39c8e93768bb65d97bf7" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-x64.zip", - "hash": "94c3f6d22e5b47066bcf4abe85279dc2f0bff05031adeaad4a3ec9600f27959d3e56d40c5a23b0b8565e028207473ca0383e686f1f198994e2b263b9825d2d35" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-x86.exe", - "hash": "2dc212f6db2ac43f1bd69adbad48f1d38d5714b92ba1e1a9aa5bb3b76efa4a359851ffdacff74d5be2258ea2632a56c0bdd64d63d44c6f7a6854488fbf4baa28" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.26/dotnet-runtime-6.0.26-win-x86.zip", - "hash": "70d455eb5ac1baf7ad7115cb67dcc104c1957e42ff8285a095907895fc82d16e965d06831eb91ce023a5b6fa764437d19c2a73c6c8bcd3cc582aec15e3c7e4c1" - } - ] - }, - "sdk": { - "version": "6.0.418", - "version-display": "6.0.418", - "runtime-version": "6.0.26", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-arm.tar.gz", - "hash": "f9e978268753d58c6b33b295f48b91a47e81b520ea89c29d561cf8247a709ce67efb2a7e4cd7df32a8d6b938606566e5ab9d2c99babcaa5b68662b1e27b71e30" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-arm64.tar.gz", - "hash": "2848db109c65dc284320f680c13b498789f944f3474788548c0bf15d333020cf9b8286348bacda9af56e1dea6b56590ff24669de7ed5eaa31906f4710cabc6e1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-arm.tar.gz", - "hash": "6a6967a94ca704f659d47b47e179cdd2336bcf9446d3a78bd84148eb122f0a56b85ef8a35052b297780d498138d9a58e87778d61f808500567a981e97aee0c19" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-arm64.tar.gz", - "hash": "f9534a747826ca653910d0180ead9cda04e803aae49eadfea21fcc09f8aafc1b39dcc64dce5e8d561f899605df260962a917b00ecc15866fc606d08aacf09b75" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-x64.tar.gz", - "hash": "4815072e8f9680df72a8ca84b11d109a092ae50cefb12e96613a62216136784b9972d7aac8a5db3ad0ca7b4fa630b4694fb72d926382ea798ed8bdaffe591cfc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-x64.tar.gz", - "hash": "24d705157ae51ed5ec5ff267c76474d2ff71b0e56693f700de456321f15212a7791291b95770522a976434f5220e5c03b042f41755a0b6e9854abf73cd51e299" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-arm64.pkg", - "hash": "5b0aee369176623bc9a466990556d01415252ec9cb30677a3aac1903381e9ca2a685d9aaef46278d68c3e10b80b2e5c537f3ea3b6446670c66d854a3bd75bae0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-arm64.tar.gz", - "hash": "4328aa334e5ddc2dc53c2602e5cd7718e7bc7750a3a44993ee1e6b052251d570882592f24a89821bd261c42d235e3f0213f060d36c7365bd6d2d5eca60231524" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-x64.pkg", - "hash": "e3127a0ad2a14d803a3c1afce8a91dc6c06b9dc121dadb7cac7a627789fc8130c5e7c6c8bef95daf5a4efc3003dbda64c6798dd4a52055770c6b89f090d29989" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-x64.tar.gz", - "hash": "62eb6c792e90750510395a4e5796bd72b0b6806633b220ead6f54505edbabcc9216c52a4346247b20fe2c6b5b31de23432afd2687a0a6aa38727c4cad2c96e93" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-arm64.exe", - "hash": "98bdb5942abbfb74c7f106d148b4794867a7194e7516b5acb5c0d3001cac7c392f22d1ad9ee648d173ebf417c62a9935a45f184fe1dafbbd648dd1152cbc9e82" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-arm64.zip", - "hash": "12236e6365b5568bd8e4db52cfcdaa0209f134e98b4754a4631a42a1fd237c7d6c82fdadffe720e9bcc8200a8194bd1f945aafeecf8814a6314f3937bc8aca5c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x64.exe", - "hash": "5ab8c87cf3a073dcd9211251065ffecebd7c130faf59f338dbf17986316aedd5fed1ab3615e93a4bd05fd1abf43f2518d0e3e17383bf1da19eeea38bd23c295b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x64.zip", - "hash": "a768a6d2420e2794d2a8de9b029a8d9e8b9cdc61e261e1652678f1de761d6455a2d37d232b4ce6c2258121cef704f2211b1c20f1047a410b605331d8f010ac2d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x86.exe", - "hash": "9f69e4c38783a319a7eaaa097d4f89f37764d938564eccafee363d44446678cc8f8cefdb1d614467b67d5c1f4f0ce8ee303848cafa9e2aeea83d2866584aec86" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x86.zip", - "hash": "10f5755ec77936870e9f1d739acff8e17986ede74b5863bac9ba12edc2523085036912254f4de2fea20d423bdf46e443e93adf84a5af1144199b90a058c72915" - } - ] - }, - "sdks": [ - { - "version": "6.0.418", - "version-display": "6.0.418", - "runtime-version": "6.0.26", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-arm.tar.gz", - "hash": "f9e978268753d58c6b33b295f48b91a47e81b520ea89c29d561cf8247a709ce67efb2a7e4cd7df32a8d6b938606566e5ab9d2c99babcaa5b68662b1e27b71e30" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-arm64.tar.gz", - "hash": "2848db109c65dc284320f680c13b498789f944f3474788548c0bf15d333020cf9b8286348bacda9af56e1dea6b56590ff24669de7ed5eaa31906f4710cabc6e1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-arm.tar.gz", - "hash": "6a6967a94ca704f659d47b47e179cdd2336bcf9446d3a78bd84148eb122f0a56b85ef8a35052b297780d498138d9a58e87778d61f808500567a981e97aee0c19" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-arm64.tar.gz", - "hash": "f9534a747826ca653910d0180ead9cda04e803aae49eadfea21fcc09f8aafc1b39dcc64dce5e8d561f899605df260962a917b00ecc15866fc606d08aacf09b75" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-musl-x64.tar.gz", - "hash": "4815072e8f9680df72a8ca84b11d109a092ae50cefb12e96613a62216136784b9972d7aac8a5db3ad0ca7b4fa630b4694fb72d926382ea798ed8bdaffe591cfc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-linux-x64.tar.gz", - "hash": "24d705157ae51ed5ec5ff267c76474d2ff71b0e56693f700de456321f15212a7791291b95770522a976434f5220e5c03b042f41755a0b6e9854abf73cd51e299" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-arm64.pkg", - "hash": "5b0aee369176623bc9a466990556d01415252ec9cb30677a3aac1903381e9ca2a685d9aaef46278d68c3e10b80b2e5c537f3ea3b6446670c66d854a3bd75bae0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-arm64.tar.gz", - "hash": "4328aa334e5ddc2dc53c2602e5cd7718e7bc7750a3a44993ee1e6b052251d570882592f24a89821bd261c42d235e3f0213f060d36c7365bd6d2d5eca60231524" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-x64.pkg", - "hash": "e3127a0ad2a14d803a3c1afce8a91dc6c06b9dc121dadb7cac7a627789fc8130c5e7c6c8bef95daf5a4efc3003dbda64c6798dd4a52055770c6b89f090d29989" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-osx-x64.tar.gz", - "hash": "62eb6c792e90750510395a4e5796bd72b0b6806633b220ead6f54505edbabcc9216c52a4346247b20fe2c6b5b31de23432afd2687a0a6aa38727c4cad2c96e93" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-arm64.exe", - "hash": "98bdb5942abbfb74c7f106d148b4794867a7194e7516b5acb5c0d3001cac7c392f22d1ad9ee648d173ebf417c62a9935a45f184fe1dafbbd648dd1152cbc9e82" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-arm64.zip", - "hash": "12236e6365b5568bd8e4db52cfcdaa0209f134e98b4754a4631a42a1fd237c7d6c82fdadffe720e9bcc8200a8194bd1f945aafeecf8814a6314f3937bc8aca5c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x64.exe", - "hash": "5ab8c87cf3a073dcd9211251065ffecebd7c130faf59f338dbf17986316aedd5fed1ab3615e93a4bd05fd1abf43f2518d0e3e17383bf1da19eeea38bd23c295b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x64.zip", - "hash": "a768a6d2420e2794d2a8de9b029a8d9e8b9cdc61e261e1652678f1de761d6455a2d37d232b4ce6c2258121cef704f2211b1c20f1047a410b605331d8f010ac2d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x86.exe", - "hash": "9f69e4c38783a319a7eaaa097d4f89f37764d938564eccafee363d44446678cc8f8cefdb1d614467b67d5c1f4f0ce8ee303848cafa9e2aeea83d2866584aec86" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.418/dotnet-sdk-6.0.418-win-x86.zip", - "hash": "10f5755ec77936870e9f1d739acff8e17986ede74b5863bac9ba12edc2523085036912254f4de2fea20d423bdf46e443e93adf84a5af1144199b90a058c72915" - } - ] - }, - { - "version": "6.0.321", - "version-display": "6.0.321", - "runtime-version": "6.0.26", - "vs-version": "17.2.23", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-arm.tar.gz", - "hash": "4963d1483c65f0628f13b1c920ef05bc2eb5824e0d42b554d89cf88ba5f4c1ef3180f09127bcd3e67341779dd7257f2fa4a9ee56d4c10bb7721c3746062e8062" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-arm64.tar.gz", - "hash": "cab0baa6bc40acaf5a18f647f0e2b018043ad9c74bd07902c4bc2d128f0b6e0e5f268a2517b94d7bf8a75431e797b26d5d82c9988aefb620875ca299ed7e8523" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-musl-arm.tar.gz", - "hash": "518b360323f4b91c0dc835ea36c309e445369a999823c372c5bef47f1ccb2c6253fca401804f4a44c8e5a6f9f3747c23e1e2fe95bf6410efa3f6a3bf72b7d78c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-musl-arm64.tar.gz", - "hash": "538d884d9d8fb6339c141664deb57e9b3de9db19e55537d1893ba4984c16ffbffbd2ebac4a2f4e3e1805ddd4f0bfabc78b7966d6d547aa4bdfdd08465c0d597c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-musl-x64.tar.gz", - "hash": "82689bc9f29d62e0bc0000e9b66e258463547600d325bbd5bca7585f21df63a2f516d6cf77e36067efec3b6273fc72a32fda12c5dbfd63deb4259fa488e87d2f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-linux-x64.tar.gz", - "hash": "a20c4fc908b4bf9a61ea788488cd8a1530f081674f14136f23990c65740d39e45fd95fe70864652abcae225bea3d9f3ba28bc90d05beea94eef7949b905a0a36" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-osx-arm64.pkg", - "hash": "aad0f11caea3e9ca45a6103b5e222b0c77411e81ae3525e1c4835993fc1ceb06aa8683fb3769fd7e5e35869e822b6e28399ad05c13d535610a63fd24b8f0d067" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-osx-arm64.tar.gz", - "hash": "8d3f4829e2f0cb0782b24e6fbc24debd68da661bac397fea36bc406da1577c5fefb4dbda8941d751792415b81a806bb5cc97d92ac263a258c250dfcb1a3d463d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-osx-x64.pkg", - "hash": "b174fe178905c84aa18946de061228e9456e141736df68ed5831c7b68c1b791af13c2aaed6aa7230277965f0877f24ce4babf1ccce1b48221bfde0f8625d88ee" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-osx-x64.tar.gz", - "hash": "1ac2947bb6a07a4fb2f1ccf5a03d385ada3bef1d0a3bca48526711ce08d8f488d9f517588018b7ad70ee25293737a422955d6435b6eedc851b47c3a34cc3c34d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-arm64.exe", - "hash": "7c35a2a971632f09f704463e3dde3d7b8ef5cf1c83a728e5e0ed2aedd61413e042b56c5839521ca8293a6a801461df559c959c0b06952cc73ebc94b4f0d29d0e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-arm64.zip", - "hash": "d242e09c6181fcaf2896111537fb2e07ab36934e0d1c337bf9e3a9ae621f2dedf3eea07c301924daa48527efca28e78a94b07d8e5c0d2b9c8ed64a7159325641" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-x64.exe", - "hash": "bbc05346fc41e30c5d1ae0ab83e0ff91eacd42a009e849f3f04c63f2b595c9e770952e14645fc9450e80858569c33f4a3c6086e528dbe94221971fb208520589" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-x64.zip", - "hash": "17d2ce90b1a21b3c7ebb0761d4fe6d82dbe83406d6d280ae128779e555cf864a95330e0e63a5a9154299c08cf2d8f764a427ab1bb50a1e78401bc22e968b713e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-x86.exe", - "hash": "a6868beebb4b5f7af1301aed611da27d8556a95b3ed6d3e33544adbe907c6e5dc4cf25cc1873146e0bc82c3e1339b140596a85903608fa67651090b9a140c18f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.321/dotnet-sdk-6.0.321-win-x86.zip", - "hash": "be3bf3dc803231d34aed7340c1689ae86e38fe834549c245352cdfed1c8c4bdc439e7e8612f7e76bd538aaba292f743b01fc08ee0d527ee8049911eb7e4af042" - } - ] - }, - { - "version": "6.0.126", - "version-display": "6.0.126", - "runtime-version": "6.0.26", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-arm.tar.gz", - "hash": "8153265f7ac85c4997a365679df03174234ef22236a4b944cb8faf1d1a1aed7f3fd6cf406d0a445ef29945d941ff97fcd3b44bd6f4a484ef406ef824e6fa3d3f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-arm64.tar.gz", - "hash": "11cf9b4bbd8639c4feb8674923701b6c6be3a15dadd6656bfb66b06ef97a10637e08d6e6c1c81e700b03dddf0564b19299badc0f2843794ca6b84b049f0b76d1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-musl-arm.tar.gz", - "hash": "b3cb63e4fd21c88d1c2ffe10d6b75f5d89d8a24bd93c46e78fc22a5c1df5458926461f9fcb35b990898993414d0ae16edd1679a6974b591d53703d4c351f4748" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-musl-arm64.tar.gz", - "hash": "ca4480524c0e0d8620e71d64f7a14a4fd47c0a5399b6bb8b070a2c4fb430e0c9745a53798c86d84b649884f060fc3cffcb3bbffa10d112db9b6215b130924ee4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-musl-x64.tar.gz", - "hash": "3fd1a4d998da254e2fa347418353266da84ff468687044b918dd9ad4b2d189990237452f29019a80ba84d9a2ba01a4474042e30f925981bd93c8de7029c60821" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-linux-x64.tar.gz", - "hash": "82a9fd6545835b82f8561d4401c1142a88921ea3743079544ec64deb544ecb8647512cc5dca488228878a619146d0b975aa0e977d2f149f2f56ac2c6f6826b8c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-osx-arm64.pkg", - "hash": "35733a80b148309f4c7ccc6035b76188ac30f41ea17e364016c4f868a1b6af214234f7fce96114c9ecb3b6b8d2a15216627a86cc5599beb599a0e0cc67f2134a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-osx-arm64.tar.gz", - "hash": "0cbcf5942e72fbf6e661ed7fe29528a76ff9d27b12a79c38dd0f0933752ac864dc4c4034e92ee086a9498d7c93e0c994f658ad939cf3efd0241310c94c9e94eb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-osx-x64.pkg", - "hash": "30b7e34057c9e71ae9944404c4e06dd31a060cb956e92cb3b16fc4c31d5a5e00572af166b840c505812c4b6356680fd2be62869ceb31efbdc872b872353819c2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-osx-x64.tar.gz", - "hash": "6747e0204c6c3b1268c039f6a9ed689632e204bd10984acd33a51f56724e4293b179104cc9165899cf5566d4262c0d4e61d49cf90db0e62fdbcee02002008833" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-arm64.exe", - "hash": "5a4f2822b88f088ced1480d7971a9c8abef6e909692ac31e320430423879d542b2925c3b11f079b071348300107f06f5c315d5a6a0f8d711e64dc49c9c148c21" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-arm64.zip", - "hash": "99f0aca92206b7902363fb1de6bc028911af1b4cbeab15c13a8d9fc6cc581a0f3440845214ebb8c3ab4174ef752e05c247de1f4a1650221baaa7830200b0728d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-x64.exe", - "hash": "52a5046b9e57c2f04c3b930566af8d137e0c1c2c9eac76f22ea33f152bef76862b2a9814257a08886ea11ef1be11205af82f0360f9eea2e6884eb14a5ac12672" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-x64.zip", - "hash": "93304e981d296664df8954c4c7815dbdb0d2dd6e8a2a07051196aaee4ecc8a3e2e864e159238c5407699ba41f8b9735c827255b1e876106e4f2d2ca0eee276cf" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-x86.exe", - "hash": "f60acabc5b6786fffe44d762b644507e8fe6488d2b4a5b8543b99a9e6cb199b9e53dbfeeb75c4effe3d9539df68f267483b0061cbb398b72d6a9a816d885f768" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.126/dotnet-sdk-6.0.126-win-x86.zip", - "hash": "5e4f2ac41726a0c060008510b17d891c97a73d9539eeef159ccdde70f0caf9e214824cd15b855b0e6afac829bdc5b6f77e3e260c736236a044f0b8ee1fd258b3" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.26", - "version-display": "6.0.26", - "version-aspnetcoremodule": [ - "16.0.23339.26" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-arm.tar.gz", - "hash": "1e994b745afb5a9cfaaf8c4a66154e9ef81d8c25d6bc9703134a62400242660dd55da0ebed96dfb81282d85161178425b04bebe2b1ec1f7e38ed776b1c001b7b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-arm64.tar.gz", - "hash": "48330ea4d98fc565c9553ea119f56e3e485ca30a0986f43e78335e263d9cc82d17b7ced8115480d1adb33298cbc5cb2b0759bc89d516659c4c59eab9520a2254" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-musl-arm.tar.gz", - "hash": "5878c2adedf912ef7100e42549706b8e17d202e220bf31d8056386ce3aa28cc939e79709aeebd743f8729770ab28feb40f59dda3ddc1261a9083d9a41544343d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-musl-arm64.tar.gz", - "hash": "06e97db40cf6a2d439bb79bc1bb3adc04737dd849e02f8800f54241918a561db48a7e0df8f092209d58fa36fdbdc937bcbfa2da322f1830d936fb9bdc0a574c5" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-musl-x64.tar.gz", - "hash": "a924c0946bd5076a9c36622148dfe9b7f0da5a583265276c796d0240932b19c95ca26d0d60e09f3018d902ed2c6ecff178ba21d343ea8c148d02688b962b04d6" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-linux-x64.tar.gz", - "hash": "51a0091ffa5abb2a6f2f968f76848e475310fbb33126238bc1358ee86e24bfd3f046d32af2f39dc7a30b14becdd637d1314ca4f4b771fe5fa0954474a605e4fd" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-osx-arm64.tar.gz", - "hash": "641cb5542c5d4b0103a2ac0154e2a99d755a4987fcdad854cda1fc75bdde08432eab73db69c444628e7d68496ed6e36fa52eda5033e118ed4b5140b8d5c47d96" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-osx-x64.tar.gz", - "hash": "9ffb209f2f07392935b9627e22b44260803cc5e21ab8d09152d5499ebae51d6f488992664bc44a23334332a1183c444b47cada319cf4d461dd95a6b78f1cd825" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-win-arm64.zip", - "hash": "be31ea0d757b9bc917df2a97fc74093f091dba24a989b2038ead3e5bdb8f50e4666d996c593e413e265fcd7980107456ab69409fbf43bed3918f404e5916a0b4" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-win-x64.exe", - "hash": "d444d22a2f5105aa60464e47e2afc67d35d9a1e8482da739b654e1b4bcd377e84653f46146dfcaee4fb8405f821971212f4a75c5678c25d49a628bb4adbdc383" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-win-x64.zip", - "hash": "8b5c498f7c0f6188c721261e5d5a2d406aa65f7fc02b8fc4f8e7716b8dc9628aed5798236d2b37abcef4e40adbfe2eadc839b5e7d2a080a5744390f6764ebdd7" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-win-x86.exe", - "hash": "7106df0967bb741942147715b14bb4cd43fbdcc76e7344ae6a843e02cc0d66371f186248d99881fb5b8124c68103a681609b6b7da048a6377cdb9f9e6e2a9e91" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/aspnetcore-runtime-6.0.26-win-x86.zip", - "hash": "cc05422da3e03a62062d8a3b16bb76dc1bb583ab099dc596075d7b4aea06a161c09ba6e2877ed5e703fd2b65b3dd9aa29ef3c349a99f7cf901429061bdb0d615" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.26/dotnet-hosting-6.0.26-win.exe", - "hash": "59569c27b73f80969616d7b818523c84fbe4a850e2bc3c09af4c89d9ffa080fe66cbc82289d48089d2b1ee8c40d74eab08f206c38f4b43ab50c4b71544a9f5f8", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.26", - "version-display": "6.0.26", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-arm64.exe", - "hash": "dec20be2d9a5b4a0ede6a9ae733f1eea7288343c4749565eda3b276ea6aebde55b096e4e69676001e131cde3ecd0086cc64bb9debe6c6b6f236933f956a2ad2a" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-arm64.zip", - "hash": "2c869e33e25feb491951d5952852a4b7ef907f12c6871dc87b2a7556994eb6ac35b163d3ce1d25c9c8302d0a02086824554e7cb2c842d31be1a59577f0a0ae7b" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-x64.exe", - "hash": "7dd45e746fb0b82c13b91559ac25a39b66b9c94c22e5f9bd91b1dceaff96922b1da2fed152ec36e15f2c7a38e0180508f81807930928c5d0aea225f117a108c4" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-x64.zip", - "hash": "f5c666e493f9a7b0a0eb0d0d4c122402d5bf7742794e019d6874a72e486c2553c6e88dd3278bfaefab519bf174370c319ff1544cf37a8a7e29d8b6e69b768549" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-x86.exe", - "hash": "bd0878b65750173e2d99479ae051daa9e71a0ee1949c600ed4a33856e4bdd2b658ebbd1439977d17c0d2fd8f3bb37c1592c4f46a4def9c534addac3a9f4a72a2" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.26/windowsdesktop-runtime-6.0.26-win-x86.zip", - "hash": "69061a56d1c7c79583ca907803d3cae75f23cdf8e023d3397bf7c3c719c4592880b1936e7e2e4054d13a65130d8ec10d949db3740ec80ba6847c4edbd735a4d6" - } - ] - } - }, - { - "release-date": "2023-11-14", - "release-version": "6.0.25", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36049", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36049" - }, - { - "cve-id": "CVE-2023-36558", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36558" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.25/6.0.25.md", - "runtime": { - "version": "6.0.25", - "version-display": "6.0.25", - "vs-version": "17.2.22,17.4.14,17.6.10,17.7.7,17.8.0", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-arm.tar.gz", - "hash": "dd5ae17bfa2d5445326b48e186bb3f9f693cc1753cb7192677601ff1383b898f2ea7d85807c4398f27108b6c50cc7ab7118fda6aef0ba76a32fa8e06f9acf619" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-arm64.tar.gz", - "hash": "d7d5d9460cca02976b01b233e3bfca32f7739910dcbdab34ad035e7e0314204b84289a1ab11f82c36dcd517657749ec1fc4d4ead2c9ee0ab2ffabfc886f0e87a" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-musl-arm.tar.gz", - "hash": "99235f8efcdcd5148cc40ae5f43e5546ba73bffa410d17ae0880be96f819b4afe4ff6676598df95f3c873dd49965379343b44cd3d5ffde7fffb77c0142aa65ed" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-musl-arm64.tar.gz", - "hash": "0466e251a07262c9796d4d67f61247f6c7c6c998414cc789dda6e4f927ab7ff9463ba226f0141f71bc27a1e55f97ed6d313220e008806be3045929b709fa1175" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-musl-x64.tar.gz", - "hash": "bee78309422930d7c3cf7880fcacc7d130b936fde6c16162448869ae7516321edc145b0a53087a5d206d07fef8844d7f06eafe6db90b035ab4957ccf3ff80d26" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-linux-x64.tar.gz", - "hash": "9d4cd137353b6340162ca2c381342957e22d6cb419af9198a09f2354ba647ce0ddd007c58e464a47b48ac778ffc2b77569d8ca7921d0819aa92a5ac69d99de27" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-osx-arm64.pkg", - "hash": "9faf740b260da9b647aa31c725a48997e36ec2d01a837898c24834a48a6d81f499c02eb0a84ef6046b8270c8e08751c4f63ac57dc4b57e6e17b26bc241cfdfb5" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-osx-arm64.tar.gz", - "hash": "b12e4e08d6f305e88bb7af385e5380b8bffbe190c4a17929d1bec18c37feb21298512dd24aa5b0f19b7cc775e9f54fa088ed0b22bdb05200f95ae6ca04e7d63e" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-osx-x64.pkg", - "hash": "7c711a2d9edeade7ab4beffd9eb7f42381773034c12a98424f70b53889c5b4bd272086ad37386099ac36ef3a36276d8e1dfaab491b250968b59a1d08ff57aebd" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-osx-x64.tar.gz", - "hash": "b9241a03aaa8ea56d54e3f1b13baabad9e3d6b2b16633f0c6c01d3513ec6ec7aadc455dc1bb7b096c7df75efcf54ef467e1fb8ad9f3777ad3b5236bfb0db0133" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-arm64.exe", - "hash": "8fdc6864abcf61857f847183465f1f13b3cb36d102f841efeb70d9b1651583218e610468f1df2d9c87017d784f11e483562520296d7283ab4b8312f7683110d3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-arm64.zip", - "hash": "06e8063c8f98fd337381e72ea9b5e30f784ac3eea2691b44ebafb965983952664826c0176e6540c2de3cde68e15e8d1b0443d92d55ceaa597940c5e0b500e198" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-x64.exe", - "hash": "b46d67db5fbae7b8247dfb3b9253d858296ad0e14eaf5de670467d997a14c84feea259e5d748ea8e45e06d893b2d081950ffb6f2cad81f440f7c0157d0169851" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-x64.zip", - "hash": "b0ea0369601410b3603236830f668d7b338ae6f53e33f7e26ff0e8954a5fb0ae1636fb26230dac6b575b7a9e75de770dd22e96e6957242f614fd4bee1e49be96" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-x86.exe", - "hash": "b4136a404dc390649395788cecff1974dd59aa9a0f91ee8f9455aeb18352f7861dacb1ed29cf58d78b6958c5c20eef0f73f71a0ef753c0cb822cb9a24f425ecb" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.25/dotnet-runtime-6.0.25-win-x86.zip", - "hash": "e6d4854aeacb4d6b7295e0e8e17286f4b2d1b4f48b8f5d93e1911bab8800f248613c677226ff89937be7765e89bec5144f5eacbafa42732564531d8e380b3814" - } - ] - }, - "sdk": { - "version": "6.0.417", - "version-display": "6.0.417", - "runtime-version": "6.0.25", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-arm.tar.gz", - "hash": "f14d5d24d6611139cff313275599923856307c3afe57d2439eb95e2a89da5fb54fdb6ce5b0d7a243f2d031af4eb0c277ce1914725f8b9dcff4002fcc05489f08" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-arm64.tar.gz", - "hash": "39cada75d9b92797de304987437498d853e1a525b38fa72d0d2949932a092fcf6036b055678686db42682b5b79cdc5ec5995cb01aa186762e081eb1ed38d2364" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-arm.tar.gz", - "hash": "86bff3ab8cecfd16f3d9d26da87b6cbeffd2041d474c56602ee5d77f6883fa64cfe85a19291fdc5afaab438fa5871e366f754b211ece161887f53c637473b661" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-arm64.tar.gz", - "hash": "0b3504a026d580303d4524ab3558e9e45b8785d2b7c3f4c7dba52ff4e3abe9fdc8d186227f7f3327b698c5799f38b8743ad7b14517395b5c7ad38d858e0e29df" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-x64.tar.gz", - "hash": "caa0dbe8e9ca3ebdb5d98dd68b7d5606b70a0d8d586ff906f0a9e761155f26a2c7d70cd71eb5d48901342913985f862ac01f7142c717eefffb98fb5576bb1067" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-x64.tar.gz", - "hash": "997caff60dbad7259db7e3dd89886fc86b733fa6c1bd3864c8199f704eb24ee59395e327c43bb7c0ed74e57ec412bd616ea26f02f8f8668d04423d6f8e0a8a33" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-arm64.pkg", - "hash": "df1894ef6b23143f5a4e73d0a45a546e27a36e8690f57d97f952aac5ceefdf45b9a9cf9c08788726d0b8646f600b05d3e58cae136286cf8b50c855eea2eb8157" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-arm64.tar.gz", - "hash": "87aaee2a4047510f2267bbdafd226703066700131e25da95141e77b2725b7d1ec549384c763e0936c7f3162199144072c1b3fedb4cb58bd6864565e98ae1b955" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-x64.pkg", - "hash": "be23d43e7b4528976d1812e69efbdef8b466b3d00ee9bf33e5d4d0acbda5dfb49d3bff6b277236501774356798792d187d559b91227e04668bd0b2505052fd73" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-x64.tar.gz", - "hash": "f252050409f87851f744aa1779a58ebe340d45174aeb13d888068ffae053c5bcd261a89bcc8efc2d9c61751720bb4ca61cf19ac5346e8d23e7960a74d76cf00c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-arm64.exe", - "hash": "0faaf59c6e3764c7634b03879327a037c57f77bccfe23cdcd608a8c02721a8b3a14f6856d7afaded536b6d819669646f2fec438aaeb21867c957165008093aba" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-arm64.zip", - "hash": "85fae92e406faf01041162217d13df827422cf783f0bc4a83c37c8dfd13bd6c96537c62ff61220dba40624c9912391a79177477b53ca5d9b889c96d6718e9121" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x64.exe", - "hash": "705dc6a108ee7866b8250b25eac790b74137894abe877edb06a6061d48c14e6fa038fbce05b573d69dd6fd436de936d3d46f0e968d175696f3b3f5127f90508d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x64.zip", - "hash": "0780c6e551c397e56ef13728593adcc1ff940cd5e9e7b8ed43197c6c9eecb0b882bf76f26fd3ed84f3cf2cf32bddb2bf65e94aa52451df55d4908364986234b7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x86.exe", - "hash": "d2e0e217f436fb921e0ee3e14fb47c756414d7b7d14854ff26f6b358bb0ea9c2b4b030b25461478203b43912b5dcb956ce53787856c59503de7605aa37ff1d5b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x86.zip", - "hash": "be9968e10d6cb8e47fb5b5c3afa3cc3731372467da842ff844aaaf73f15b7a7ba78ca19abd94cfdb6884248f16dc3adae4cc0f560ef3738354eed5bf9e52bc07" - } - ] - }, - "sdks": [ - { - "version": "6.0.417", - "version-display": "6.0.417", - "runtime-version": "6.0.25", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-arm.tar.gz", - "hash": "f14d5d24d6611139cff313275599923856307c3afe57d2439eb95e2a89da5fb54fdb6ce5b0d7a243f2d031af4eb0c277ce1914725f8b9dcff4002fcc05489f08" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-arm64.tar.gz", - "hash": "39cada75d9b92797de304987437498d853e1a525b38fa72d0d2949932a092fcf6036b055678686db42682b5b79cdc5ec5995cb01aa186762e081eb1ed38d2364" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-arm.tar.gz", - "hash": "86bff3ab8cecfd16f3d9d26da87b6cbeffd2041d474c56602ee5d77f6883fa64cfe85a19291fdc5afaab438fa5871e366f754b211ece161887f53c637473b661" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-arm64.tar.gz", - "hash": "0b3504a026d580303d4524ab3558e9e45b8785d2b7c3f4c7dba52ff4e3abe9fdc8d186227f7f3327b698c5799f38b8743ad7b14517395b5c7ad38d858e0e29df" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-musl-x64.tar.gz", - "hash": "caa0dbe8e9ca3ebdb5d98dd68b7d5606b70a0d8d586ff906f0a9e761155f26a2c7d70cd71eb5d48901342913985f862ac01f7142c717eefffb98fb5576bb1067" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-linux-x64.tar.gz", - "hash": "997caff60dbad7259db7e3dd89886fc86b733fa6c1bd3864c8199f704eb24ee59395e327c43bb7c0ed74e57ec412bd616ea26f02f8f8668d04423d6f8e0a8a33" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-arm64.pkg", - "hash": "df1894ef6b23143f5a4e73d0a45a546e27a36e8690f57d97f952aac5ceefdf45b9a9cf9c08788726d0b8646f600b05d3e58cae136286cf8b50c855eea2eb8157" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-arm64.tar.gz", - "hash": "87aaee2a4047510f2267bbdafd226703066700131e25da95141e77b2725b7d1ec549384c763e0936c7f3162199144072c1b3fedb4cb58bd6864565e98ae1b955" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-x64.pkg", - "hash": "be23d43e7b4528976d1812e69efbdef8b466b3d00ee9bf33e5d4d0acbda5dfb49d3bff6b277236501774356798792d187d559b91227e04668bd0b2505052fd73" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-osx-x64.tar.gz", - "hash": "f252050409f87851f744aa1779a58ebe340d45174aeb13d888068ffae053c5bcd261a89bcc8efc2d9c61751720bb4ca61cf19ac5346e8d23e7960a74d76cf00c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-arm64.exe", - "hash": "0faaf59c6e3764c7634b03879327a037c57f77bccfe23cdcd608a8c02721a8b3a14f6856d7afaded536b6d819669646f2fec438aaeb21867c957165008093aba" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-arm64.zip", - "hash": "85fae92e406faf01041162217d13df827422cf783f0bc4a83c37c8dfd13bd6c96537c62ff61220dba40624c9912391a79177477b53ca5d9b889c96d6718e9121" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x64.exe", - "hash": "705dc6a108ee7866b8250b25eac790b74137894abe877edb06a6061d48c14e6fa038fbce05b573d69dd6fd436de936d3d46f0e968d175696f3b3f5127f90508d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x64.zip", - "hash": "0780c6e551c397e56ef13728593adcc1ff940cd5e9e7b8ed43197c6c9eecb0b882bf76f26fd3ed84f3cf2cf32bddb2bf65e94aa52451df55d4908364986234b7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x86.exe", - "hash": "d2e0e217f436fb921e0ee3e14fb47c756414d7b7d14854ff26f6b358bb0ea9c2b4b030b25461478203b43912b5dcb956ce53787856c59503de7605aa37ff1d5b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.417/dotnet-sdk-6.0.417-win-x86.zip", - "hash": "be9968e10d6cb8e47fb5b5c3afa3cc3731372467da842ff844aaaf73f15b7a7ba78ca19abd94cfdb6884248f16dc3adae4cc0f560ef3738354eed5bf9e52bc07" - } - ] - }, - { - "version": "6.0.320", - "version-display": "6.0.320", - "runtime-version": "6.0.25", - "vs-version": "17.2.22", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-arm.tar.gz", - "hash": "7492530e6ecda9bc55cbd82f3f5c171af134458f0855906cf5abe8c758973126ada5c5e2bad8b0958caba43d6c488eeb33c820f1de840e218a9eb5f6103ab003" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-arm64.tar.gz", - "hash": "764cc833755f2ed147545dfbde98146eed4316a5fd930d509f8c579f023fab30d091ae329f42f46600430337ec31964d7e76567e178af7f8d30c046bb05ac806" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-musl-arm.tar.gz", - "hash": "5b2865a0b6ffccee64eb6fe716322fe58fc5a834ccf6fc2c3b215179ce6737a80bdcd51cb3c3519dec17cd216d0503c51cc43761e6ddd57713b569bf3b73b8de" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-musl-arm64.tar.gz", - "hash": "d537b06e6ff70ca87defba9c7e21461013994760e79799a0e68e3958d688abe456b52702bb54d3710b611251d1a21c56d7975895f2b8f567775c57972c92d504" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-musl-x64.tar.gz", - "hash": "b0feb5f10d7509408ed813345d7e7488439ff04acda336f13b556db8457525438c5703b0230ae970650b4d26aefc4b143724c41c6a1dfaacc1f17d938e9dd653" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-linux-x64.tar.gz", - "hash": "c7d28aed6c6412915a094cc6b0a9267cacce391bc7eea5b733c60fb968ecc01e846f0b3a1cd542c75c3ed12f57d22e3431593cf0589f7e426e9293d6491fdb97" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-osx-arm64.pkg", - "hash": "f6aa470b8e24c5f9e71d01d795415f48ba21371b3423779891cc68fbb357d72fb1259c113e63ab98cd5b4aafb66300f846042dda3bff2055642d00b99c1b143f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-osx-arm64.tar.gz", - "hash": "6014ddc61a1d80d600542e957a52ed31ce2105758557342e51287450ea7d36ffe2e00746010bfe070c0dc3e7c9d65bb3fed214855a1f0e64fed94a823f60d42d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-osx-x64.pkg", - "hash": "20a4a436c5f256749f07cb8c0e87b5c453f008f1bd547f67ca26e731e78968510e771340ba33cbb76f1a05d8c3f9e8a60c30ed151a50c2fac0e7f58d1d519a4d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-osx-x64.tar.gz", - "hash": "342178f3204f8a9417737270f06d1929c9ca01e5dad984533b4181f66ddc4086e03d7ed096bbf06dcb029b75bcba339159f3e529cd7dead5ca0b0e0ffab230a2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-arm64.exe", - "hash": "c5b86584cda1bd8971e3b1819e6718e98444f72e24dee4f88b7bb2e4bed223462c6293391695101fd275222b0fbf8317e0bdfe5985008641cead0ba9d9acb1a2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-arm64.zip", - "hash": "244e7b540af0c2318b60761b65f57cadbcffcd8dcf78ecdf3e0857b8c90cd090443b2575226ffe12e9650907455a6c1131247f4c1b99c76bc0f74d6180d592d3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-x64.exe", - "hash": "8f189504435e54909d882e94bba3c8a94465459303e4a8d60943d69ec63fc1f30521a4cef784fbadc146d784ab6f33dce41649b7ad2222392db23a02ca634556" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-x64.zip", - "hash": "75be96bdfb07ed3b760e4f7e9a8b3571cd0078300397bd09559c0a3c7435bee03eb849e3a710caf344bb50f38b82c8c0bd2e2a021ba017c3300cd2ef66b887d3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-x86.exe", - "hash": "2b1365d004bbf24a1cb30a67bd3ac28df127efcf78d6177c47eee60779bf5098cf3cebe565e0f874350792320d82b37334553e8932ea11e3969589fd4f9b9386" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.320/dotnet-sdk-6.0.320-win-x86.zip", - "hash": "9646e2895e5ebcb13bee11edd280db1787e05eaefadd821a00be25dd691260524b9df88a26ddd8a4124fc2b5798668cd85cea8c8443c6d131895dcb385eb38d7" - } - ] - }, - { - "version": "6.0.125", - "version-display": "6.0.125", - "runtime-version": "6.0.25", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-arm.tar.gz", - "hash": "296920a7f056892565936db575e4c4c91532664c9de613ac2f93c3f78012388f4dee42695d9d1cad5af9aabebab557f53b8a441d86246310034afc5fc485a947" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-arm64.tar.gz", - "hash": "c9a5447423b7849d643e03c4d9c602b68016114a366cb0b04e31eb95e1f994b455d27c5a34ca80257cf860b1e4c63cd3d6ec244977414f93247392c9df8e2534" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-musl-arm.tar.gz", - "hash": "5d89754a58ad18a500cd8fa39b7e371d23e797b7191e5c35338a573318b87b0382751e568dfe77c55d5bd4ebe30bd0dec7e74004f60f260566c7c3a251531ca7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-musl-arm64.tar.gz", - "hash": "37504e7d1e7a2d54fbe040a8b790c5a13d949fd98604afffef92a286e6d241e167312211e678be6277bb2eb6c822bdd3845861965fa5cd7090a570dc14b119d3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-musl-x64.tar.gz", - "hash": "7d40ef89f44b75154e58a5c89ff32e100cadda4bd9e4302808c545881a2d77e128bf6c31715817af4a0e41ee1676970ea7dc95c73498c9a8c9d3082c1d768c0a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-linux-x64.tar.gz", - "hash": "00b8ae7cf985918c03788db2f03d5655441be9cb054e8e97dc3a69fb1a4979bd9aa1bf373d56554cb37d5395699736b0b73a29a2c7cff0b2776db72d353cf4f8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-osx-arm64.pkg", - "hash": "807876a9db67da9369e08ea9b9616997caf0fd3139caf793c09dc59c78ab489496b64877057acdd5b95814b73f341c175de052979114662920ade6269afb005a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-osx-arm64.tar.gz", - "hash": "0b143696763cc185cd5e6490f8b732e06394a1d61aad80d68151dcab925a4b0e6260a06aa318672de0daff79e659499a041d7f64825f41efd0790d7a32796728" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-osx-x64.pkg", - "hash": "db6d4acbe4aeeece0c698968a81d4e4921abb419da008ecc41604a75ab00dbb91f9b6ff239d89d61eff4c720ec9488b4fa150b82229b07527aba39eb1f689925" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-osx-x64.tar.gz", - "hash": "4452b57309f228cb3144313138016d8efa32935b7eac5be007339de5b27e567f87190dc301ea6c553ba7d0013d50873b4af6f652008d2f1afcebe6df7b8bcf70" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-arm64.exe", - "hash": "f2bb41baa76208d0c296ce39539f82ff2ca3ef5966709de38d731db73963333f882b1561d6f1dabfd66e3a858a6a36d349b425e8c55f67eb35f4ef286c11ddb8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-arm64.zip", - "hash": "3cb0f23af34cc430f62894269acca50e892fc471567b405dd0ab6aef5effcb56ae814c7949ba658b2060662f17c9be03348ef0269f6a0e3465d26e0b7c82cefa" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-x64.exe", - "hash": "12231654d59dbb01c9cbcc98682b4b98394ffca7effdc333ea44042f3c7cfd72d184880867940b19422861b9d162556324e5783f27e56438324d962ff11f59a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-x64.zip", - "hash": "c9b5b5c7d1b45cd24f86e16d9a8db3319d549a93e9f82b262aa887dc4d171150d34c8b9523c88ba399c405e1cb0395a1377b5d8d5928fa5edc8df4cbe5abfc90" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-x86.exe", - "hash": "388ef28c08c1bceacf4edafa58bb8dd574997e91ccd0b1c69173fce667b24860dd4b8c8ea606f777ce3ceba1a109f0a6a2c744c7fceed58cc6230d547721a178" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.125/dotnet-sdk-6.0.125-win-x86.zip", - "hash": "c6cb1d4aa32b3abf9681ee7d700f365a7a8f4604bdcfce86c2d8dcf79c3bc2120c10ccd8845b197ed0e80621455921ca5fb3477a8402250a465627b87616e6f4" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.25", - "version-display": "6.0.25", - "version-aspnetcoremodule": [ - "16.0.23296.25" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-arm.tar.gz", - "hash": "917b3207a20382d863dd33ad19bc075df49000726dd55908cec506f96d6ba406d5b60cf15bebc6559f128bb83f9dbce208e7f44ec87a8d183704a9314e0dc4ec" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-arm64.tar.gz", - "hash": "fdd2e717963f213abbab6dcd367664ebedc2f2ec9c2433fca27c4d2eb7704a73d3f4ec5b354b24d5be77f3683605a56f5675d1d543c5f76d042a1353deab8d73" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-musl-arm.tar.gz", - "hash": "cf325dc954bbcc1476899fa6716cb7d474cf98eca12ae555425336e6277e638e93c2d186f61a93a2ccf19e33ee440a15980f5180b54fac1a2aa68121df30cab6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-musl-arm64.tar.gz", - "hash": "c0f827ceb51e39a0a78d82efad03a43adf1c6a9ca3e411ace69be2dac4faad56c74775381517d676154b3a5e0d972ba5ad05593623c7af945643d518749e0426" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-musl-x64.tar.gz", - "hash": "2730ef44301f0926ba8edf41180351f7f145843fd37eff8e2845eab02a5c449281bbbfdd21f1710f7773d93627f514298a46706801aef0063f920c752e063ea1" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-linux-x64.tar.gz", - "hash": "ea1e9ce3f90dbde4241d78422a4ce0f8865f44f870f205be26b99878c13d56903919f052dec6559c4791e9943d3081bc8a9fd2cf2ee6a0283f613b1bdecf69e1" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-osx-arm64.tar.gz", - "hash": "ab9ccefa4d0249aa1ec313e02aa7dfec9b048f3db42881c808050efe3956749fdcadfbb937cfec19ac37fed70c81894dcf428a34b27c52e0cd2911fd98d29e9a" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-osx-x64.tar.gz", - "hash": "d58721d8f0a7cf6538446b37ff6399c285e4fbbbc30ac0b550cada361ce2cbc981039e8c90e3d038de1886e91be5457acd5c88bd72008a208c62dd533080864d" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-win-arm64.zip", - "hash": "8e14f72f1be989f0295872e31155b8aefdf20b6d71bf2c4628b62c76727d2b54a15682df8e218ec4dc8d17ebc8b6bcfb812daaa296c29797d8ee3ce1bf5f8526" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-win-x64.exe", - "hash": "f8ff2e8344d788b5e07cf615074c3fda07b92d0a949b12adcbc92ff6f7dd3ac6bac13cf95a90540e31d6c22f78f7421fa3a1ea296dd1c02564b5f9789eb2c2be" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-win-x64.zip", - "hash": "8a72dd7e3308cd2eb60d88d80a3475dc1be23d1909844a10e7b11af806ce6d473172ff9fe141e89e4ed6e2ace9ce3bed78952e711c2d4f655c49b7f767248b63" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-win-x86.exe", - "hash": "15811fa02f486599187ef87d4c6ed0d6d70c57ec75ea98f4e9d5342b061242048111b384605d3c4c57adfc43f4a1ea3349581031f40fc0476a83cbb262fa0735" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/aspnetcore-runtime-6.0.25-win-x86.zip", - "hash": "109018ecdd9dd87fc1806a9855ed3ad0b2a519ca97dd41a5fdcec8ed0cbbbeb685a70e4a65a8fd27db8239db00ecddc90d14a1c553f3b591f74daf426dcf7b22" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.25/dotnet-hosting-6.0.25-win.exe", - "hash": "2d0f527383f2d13cae85d3b8136949484bfc96bec7c23421ce400ffe82b46c6acaac420a59db49a8d7c96e42f54777eb5958c9c11c34a9c3d671697242b3280b", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.25", - "version-display": "6.0.25", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-arm64.exe", - "hash": "46d2811411a6b9eac0026b465efffc9d2c8c32925e3e4cac6e4b40eac1516e21c8cbba5f8a797ca5329d15e53e01bc1bfd4a5489da569d033306864d2894f641" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-arm64.zip", - "hash": "6a1357504a12eaf9e56ca85c1d0ba0fc4c94355f95570e79001d8fba919824b39ffe3fb8165c503e45fe4be897f4f59f25b17ce5d7363bcb1f042d275ae5a03a" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-x64.exe", - "hash": "fdf1ae329d696bf280f3fee7c989bfc4678c640608e3175f7c26b3018ac58dc22d8f1618201cc209a8f28940fc94dcb144d98c8c91b072916f8f531f6aabc28f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-x64.zip", - "hash": "3b9b6a97bafc7138657e4ef484560215aba47fc2046a1a9048967c9492594c1bbba4ad0820b2cdea858d31fcad3e675c7c18f30e9c9731b2f915aae75eac474f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-x86.exe", - "hash": "fb83dd96a7ea4654f7bbd8d2e511df50dfc4633346b78ec317419bc9536b2d13cd71037fb80bdfefc87162fbb91fc9fd978751511877ace1a8788f2bbbaa82f7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.25/windowsdesktop-runtime-6.0.25-win-x86.zip", - "hash": "0b5f985f6a7308e57cae10f9a1118ad591e759091691acbeb6b4deeda48e0df75be23f522ea55890b931b0a595c31cc2c3c7b42616b179fb5aa9c50ad6af5a73" - } - ] - } - }, - { - "release-date": "2023-10-24", - "release-version": "6.0.24", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-44487", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487" - }, - { - "cve-id": "CVE-2023-36799", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36799" - }, - { - "cve-id": "CVE-2023-36796", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36796" - }, - { - "cve-id": "CVE-2023-36792", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36792" - }, - { - "cve-id": "CVE-2023-36794", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36794" - }, - { - "cve-id": "CVE-2023-36793", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36793" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.24/6.0.24.md", - "runtime": { - "version": "6.0.24", - "version-display": "6.0.24", - "vs-version": "17.2.21,17.4.13,17.6.9,17.7.6", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-arm.tar.gz", - "hash": "b616c9d71779a6ddf454a853bebdb1ff3828a17aac23457e8ec0be7647bad3a3e785e963b4d839c9479d381777741f0eaac8269bda4ff5d9eff52b0bf96659d9" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-arm64.tar.gz", - "hash": "43ec6b177d18ad5dbdd83392f861668ea71160b01f7540c18eee425d24ad0b5eee88dfc0f4ad9ec1cca2d8cf09bca4ac806d8e0f315b52c7b4a7a969532feacc" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-musl-arm.tar.gz", - "hash": "f721ef071ad6371a500bf2b23fb13fd8c1bf75c2787fa06f5b52e99c659599df70d74c893f9815bda4d718377e9ef699a90c3e65fd4d91394e1202be359199c2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-musl-arm64.tar.gz", - "hash": "730139f03959449207670d4e1db4ea63d8935de7529f60bcac39c89c2dd4bba4e50fc2b0964698bec8be15cf2623e411dadda3ccb73d1bbe76d4f1be69d8c942" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-musl-x64.tar.gz", - "hash": "7689d744353b1ff96953d517e6acce3e4a9f69649edfcf98d7fd73091a5b5dd9d22af48c1c806af77d1e14e1347cc15a760ce77ee3e0417cdb42b3595a4f5685" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-linux-x64.tar.gz", - "hash": "3a72ddae17ecc9e5354131f03078f3fbfa1c21d26ada9f254b01cddcb73869cb33bac5fc0aed2200fbb57be939d65829d8f1514cd0889a2f5858d1f1eec136eb" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-osx-arm64.pkg", - "hash": "2432c43ec53713e66a11a76949a3d3b0d64b19aee198ba39926309f9bbb2a9da49637ce70d264e0c3ed05ab3853bcd0b714fc086041a515d47518542747c3822" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-osx-arm64.tar.gz", - "hash": "fbbf6b385172700e4864db9db6f85bcec6fe447d504d181878ae7a3d7b4e06f19920c7aecbdb4c4700bc65f51abb7409cb68e99dda4af14319909bb2816c22ff" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-osx-x64.pkg", - "hash": "cabb28be4678056ddf195772112fffc8fbc4c6eeee4cf77c312bd5a787ad2000c92edc041fa5fb4110520ce7315bbddea37b635ca880284e2733ba82f53f4bb6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-osx-x64.tar.gz", - "hash": "25afb6eb9d9404332efe32407e1dcef080a79372b8631b7720daf62bdea42c4fd36c1fdc12c6333c9c1754a1cb29f5ce64a1436e6392db396a9dce647a8f2c16" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-arm64.exe", - "hash": "107181c95647094a87a32e605003313e2fb0d713f6a706884a72cc2a9bc175fb15ba399ebc3107b62f00596288a6b15f605635f43afd26cb59b9daef2cb09cbc" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-arm64.zip", - "hash": "309097669decaca8ad3ae8974a46f4613c3bef39a07cf6c8e9b3bc7f9001c9bf33a6fb22ac70ec96c7ab49349b115d6cf5192ef711933716846f2d44c23b4895" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-x64.exe", - "hash": "1759d5f7ccdfe046e0dbae1328e39547974e884ac8e98e33f96ca67b8f4dbc3d9ba04d9832a82c457665a7f1aa8b43ba71b547a4919b680d8c7031140953f58b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-x64.zip", - "hash": "bfa517496af8393cc44d9b91aa5516c2043258f9492aeaa24cce3a16ec52b6211341927d0de93ff858c9f41dbbc32a62b83d56433597ced4cb747ebf727a811f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-x86.exe", - "hash": "dbf54c6d97845ae18f58a45c2fc505138f1b1d48e765672a1477a96402846905bb945a248a53be781ae671f2bb3e11dc204be5e9abfc30ce027c150fb9c2aed1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.24/dotnet-runtime-6.0.24-win-x86.zip", - "hash": "b7ce7cd14189cf2c5e5b9540643f27165d3335f2711de342b90a4908232756891f0fcf79603a6c0628d24f09344af219d5d0ef705a788de736982ccb50240a91" - } - ] - }, - "sdk": { - "version": "6.0.416", - "version-display": "6.0.416", - "runtime-version": "6.0.24", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-arm.tar.gz", - "hash": "b9adf8bd6e7f882ba2ab154cc149a7f3ba01becc34aa6815b7ac62454f37f282f1502c499de33bf3d450014fda8aa65fd3708406143e2048f821bd9d0d74e444" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-arm64.tar.gz", - "hash": "b121ba30bd8bab2f8744f32442d93807b60dac90f8b6caa395d87151b2ffc335f93a95843f08a412d0b90c82d587301b73ea96f5a520658be729c65a061a8a80" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-arm.tar.gz", - "hash": "c74cbfce68b1a5bea9d5c6ca3517bd0f8c237eeb5b9a7b6bd477aa87c4280596941a969937fa9262a24104837021577d564c5b89565220d4eac6c536e909caa7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-arm64.tar.gz", - "hash": "99a4248382fd531fe80c219683edab854478db0baeec4f5ba7378e41f7ec3c123f59449fa0f7be2d573161901cea246c6f0b282baf057e37f36a540bf0b8b5a1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-x64.tar.gz", - "hash": "fc524499efa915bc1e5dc706b7b4d857fb1a521308a0e0350087bde826facf76c3e22e36afadad9e37e78a4b051fad4456deacd9fb00f97be6ab14d65dc85434" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-x64.tar.gz", - "hash": "5a3c60c73b68e9527406a93c9cc18941d082ac988d0b4bfea277da3465c71777dded1b3389f0dde807eda6a8186fcf68d617d2473a52203cb75127ab3dafc64d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-arm64.pkg", - "hash": "ebff8a905b390d37946d3dc9d2845cbc5db4e1bad052df96e2dd2976f12d101c27dfdf5d914e746e13f6902903133723761f34d44ff570f20d5f4c77b212693e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-arm64.tar.gz", - "hash": "7099b3dba1137e1f429adebc3ebb4cd002d6528dd74426a687c2919b7d01acea49cb65c2cff1f1f2e283d96159440c60d909258d2350b8e76df3e513152b23f6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-x64.pkg", - "hash": "23a11a05bfa201f7d30b506417d0d3dc89dacb16ad2bb66b0db2539bc7977064d5c1c079b4d7731912a8189d650355d2d594249e249f0683bb4edef35fc62a25" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-x64.tar.gz", - "hash": "cccd47ac03198f7c2335abbf9ebaf11d76e229cd2690f334bafd70363de7045e600c33057d16689fba6ed95bb2f80ee8cd8258152c07c1972323471dcc6f2df1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-arm64.exe", - "hash": "5abd7a9b8343cf16eb29b4638f5e521f1ec8662dc900edd4301581866fcc57d3c77936394a1b33fc3592fd88c64aa35118e457b0f5004ce686db3ae66799e0bd" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-arm64.zip", - "hash": "1d630c5e880986eee708faf09d64472a1282238b15f9b6042a48be331a08f6dd6cc8ff6a600c8bedee0eeaafe71ff5708740c655cc5519265d0b580fbe044593" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x64.exe", - "hash": "b140bb7acec7c906655f15c9282154282457f829baedd14e907ad01d2d7614f17ed2a1a8aa61c3bb76c2322e35896ba93350e4c4980f72dc15dec4d61168d17b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x64.zip", - "hash": "6823fd137d788db7d8cf4e05b88db7e451b993d41f2a2902ca547447c9def6cf840bf1e2a6a1ffd8a2d9ac66d26f3d4686c20b76f463af49f10e9715931e9d93" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x86.exe", - "hash": "e2eea8b29743d8b7a12bf07a072801c0239f75f3809c387ad03fa695816c421364b913e8c589f8c2301e12adfa805471aa50c978f4b2d81153018847c59ca5e8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x86.zip", - "hash": "39913c77abc0c925caa786fe9f4586ed93a3695383e6d3e12e50620b2d48c583dfc932d20179622614b32976c4ec22c9c8460ae08f50403c1537b1ba05653a62" - } - ] - }, - "sdks": [ - { - "version": "6.0.416", - "version-display": "6.0.416", - "runtime-version": "6.0.24", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-arm.tar.gz", - "hash": "b9adf8bd6e7f882ba2ab154cc149a7f3ba01becc34aa6815b7ac62454f37f282f1502c499de33bf3d450014fda8aa65fd3708406143e2048f821bd9d0d74e444" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-arm64.tar.gz", - "hash": "b121ba30bd8bab2f8744f32442d93807b60dac90f8b6caa395d87151b2ffc335f93a95843f08a412d0b90c82d587301b73ea96f5a520658be729c65a061a8a80" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-arm.tar.gz", - "hash": "c74cbfce68b1a5bea9d5c6ca3517bd0f8c237eeb5b9a7b6bd477aa87c4280596941a969937fa9262a24104837021577d564c5b89565220d4eac6c536e909caa7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-arm64.tar.gz", - "hash": "99a4248382fd531fe80c219683edab854478db0baeec4f5ba7378e41f7ec3c123f59449fa0f7be2d573161901cea246c6f0b282baf057e37f36a540bf0b8b5a1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-musl-x64.tar.gz", - "hash": "fc524499efa915bc1e5dc706b7b4d857fb1a521308a0e0350087bde826facf76c3e22e36afadad9e37e78a4b051fad4456deacd9fb00f97be6ab14d65dc85434" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-linux-x64.tar.gz", - "hash": "5a3c60c73b68e9527406a93c9cc18941d082ac988d0b4bfea277da3465c71777dded1b3389f0dde807eda6a8186fcf68d617d2473a52203cb75127ab3dafc64d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-arm64.pkg", - "hash": "ebff8a905b390d37946d3dc9d2845cbc5db4e1bad052df96e2dd2976f12d101c27dfdf5d914e746e13f6902903133723761f34d44ff570f20d5f4c77b212693e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-arm64.tar.gz", - "hash": "7099b3dba1137e1f429adebc3ebb4cd002d6528dd74426a687c2919b7d01acea49cb65c2cff1f1f2e283d96159440c60d909258d2350b8e76df3e513152b23f6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-x64.pkg", - "hash": "23a11a05bfa201f7d30b506417d0d3dc89dacb16ad2bb66b0db2539bc7977064d5c1c079b4d7731912a8189d650355d2d594249e249f0683bb4edef35fc62a25" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-osx-x64.tar.gz", - "hash": "cccd47ac03198f7c2335abbf9ebaf11d76e229cd2690f334bafd70363de7045e600c33057d16689fba6ed95bb2f80ee8cd8258152c07c1972323471dcc6f2df1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-arm64.exe", - "hash": "5abd7a9b8343cf16eb29b4638f5e521f1ec8662dc900edd4301581866fcc57d3c77936394a1b33fc3592fd88c64aa35118e457b0f5004ce686db3ae66799e0bd" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-arm64.zip", - "hash": "1d630c5e880986eee708faf09d64472a1282238b15f9b6042a48be331a08f6dd6cc8ff6a600c8bedee0eeaafe71ff5708740c655cc5519265d0b580fbe044593" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x64.exe", - "hash": "b140bb7acec7c906655f15c9282154282457f829baedd14e907ad01d2d7614f17ed2a1a8aa61c3bb76c2322e35896ba93350e4c4980f72dc15dec4d61168d17b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x64.zip", - "hash": "6823fd137d788db7d8cf4e05b88db7e451b993d41f2a2902ca547447c9def6cf840bf1e2a6a1ffd8a2d9ac66d26f3d4686c20b76f463af49f10e9715931e9d93" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x86.exe", - "hash": "e2eea8b29743d8b7a12bf07a072801c0239f75f3809c387ad03fa695816c421364b913e8c589f8c2301e12adfa805471aa50c978f4b2d81153018847c59ca5e8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.416/dotnet-sdk-6.0.416-win-x86.zip", - "hash": "39913c77abc0c925caa786fe9f4586ed93a3695383e6d3e12e50620b2d48c583dfc932d20179622614b32976c4ec22c9c8460ae08f50403c1537b1ba05653a62" - } - ] - }, - { - "version": "6.0.319", - "version-display": "6.0.319", - "runtime-version": "6.0.24", - "vs-version": "17.2.21", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-arm.tar.gz", - "hash": "fbb78ff5ae0887a09d50d0c675d66f315a2accffc5933e2b31cd9f08ceae5025185e5da3e51eccd2420a2c8a3b8838683a98fabe5b01620a6bee49ab8d636791" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-arm64.tar.gz", - "hash": "58450a19b236a5076c21b194db06fa53c4b0840fca79a555d2ef5304525720319f5dbd0f227f566492524d9e236b39aea902e746d35ade654730928fe77a0779" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-musl-arm.tar.gz", - "hash": "723e4e2dfdddb027a3faf3c9426e19b61e836b464c1415f9aa2b2b8dcc11dcc642cb7f7c460ca9192b7b41c82f8746606dda1f9e3f224a815e75459539f87af0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-musl-arm64.tar.gz", - "hash": "5e1f23c97d9a235a78ce37215904ae766607bf96a9279fd8dafa590029466ef488b7634024845cac2dd8bd719eef18fb12fb2e3eae4fd85d0a459c2d788db3ab" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-musl-x64.tar.gz", - "hash": "173b91d80dc5588463dc6f9182e41260f5f14f2dfe09d8c540b5a87b4521d8fe212b7d8c062d61d4d76bfcaecead0adbf5c134206804df5f0b45a9e477ec3e36" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-linux-x64.tar.gz", - "hash": "bcb280e57470b061a090d562d369226acc5aeb3903e735130f80cbf1dde79a99641542bf72632db9d409e5c36dc78737cf452e7d078de64ca8c2d937978fb764" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-osx-arm64.pkg", - "hash": "e880e4ce30716df7f2aba980ed6ceb8342df5ec25b4f817f004c4cb34b5c841dde22ad35e4f71ca098e1be4a8c259a7d060c7e57bf63ca9734c70dff259deaaf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-osx-arm64.tar.gz", - "hash": "3baebf0bf619f18102918c5b336f2c2d1149323c2b1f32fc923edac3a1463774230d91300b1e0c5c1df4fd0e5a6bc8e6bab8c4604c5705208448c778c7edb113" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-osx-x64.pkg", - "hash": "6961101d78516d06f02dfc28c24577d3b186934b533864c9e5bb0becaaaa49865cb45f8cd2adbb0b3bfcf5a0ad7da873bdde6686d695a978961d1c5001737c1a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-osx-x64.tar.gz", - "hash": "05d816b9ad79db474fd84c9e87334ed829dfc5f3b262b0d8ea75026733c3deb95bca2e14a8ee81cf41f5aaf98e4c178ca4783cb7289c2669feac759478ebf2bd" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-arm64.exe", - "hash": "eac4c52ae1bdeb3134d256dfa0939089d349148835998e92e0a71c8ae8cf02a349e147f4be7ca601fe8b68aa8ebcc3f623a02d9325316c1cd56281a170e6d72d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-arm64.zip", - "hash": "f9809476f9d59d3ad1a257cd519757b6d7d7326bc3f055d659753888a5319edee8673f5ca36b9089c7cf91da769f12b87e7ad0979e7ececb5bd5a64d4f0ed14e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-x64.exe", - "hash": "982c707e7013d213e300434a996bb137e77458eac21f4a13f7c80e27926360fe3e2a50c4aadd55fede0c0d6adb83f7f3659f784e19ce1021d24a349336bbcd30" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-x64.zip", - "hash": "d7547a6cf3bdb354546b07cb5dde27e425e0fd07e4f0678522f55e9b409980e02efbc4e682162fe7adb5c5886eed379eef614f96d4432cedfcf9d52f9cb6613d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-x86.exe", - "hash": "b5a16b15b398f55384fac0c0fd06cb3842434bec3e15f673708a668c6141a82d6fbd58e66d6a44b1f9da56df4ab90171c940a1fdcb155a9de1c38a085437fba6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.319/dotnet-sdk-6.0.319-win-x86.zip", - "hash": "1d3e5555a7eb76f6e0ac37307cea7dfab22f2cc2ef59c7fe402f629368649233d51fd013d96921217c7be23fc6959dcaabcd60e36d1f39f2c7257f5ccf90d27f" - } - ] - }, - { - "version": "6.0.124", - "version-display": "6.0.124", - "runtime-version": "6.0.24", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-arm.tar.gz", - "hash": "9006a6e4e4c5f1da21e9ec25f207a3ceabbfaae529a496ce2e886b7bd2e6d12b9bee1b740b80051b73451b7f9375a53ab8ecb335a7a2b4c6f08db8fed29080fb" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-arm64.tar.gz", - "hash": "f682166bacec8b73f20581e8616454b5d09efa277df6831eca28f51c828d6280ee188a81fd080e997e3e3c295ea505fd3a91b5dc1fb7c3af3954dcb7be5e296c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-musl-arm.tar.gz", - "hash": "976ffa785ed3da1031bff465afd33d9e753af37ee13ce33e02131800a08a75ad842340bf916348c3c567aa4d4a91e29217d809ec79c9041a31278f6038e51929" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-musl-arm64.tar.gz", - "hash": "957b6afb5ebb69a8a3160d4c949edcc530584842f8532c6e76317b2c3fab0eb42d00acd2cb4d127c54f9165983d4864e0a533aa8456dbc3b5a9cce8c9efbb266" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-musl-x64.tar.gz", - "hash": "3604277105a5565fa7c246a52020afecb9876a5652efab30cb68a5889820bdf5e0e385f7967bc920d990172ad9c05f43fa7bc5aa73dc579505f17795c2bd2c34" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-linux-x64.tar.gz", - "hash": "7ac7f2600ac769f2448376b314da84c893dd3239bd34c440715568e8fa8b4dbda97b184173e0a1e5d65432c13876b9a52f0b287c698cc1118b3c647cc12a1148" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-osx-arm64.pkg", - "hash": "cd693ee4b7b1be0ddcb8d2ff66dd7887f766d384aec755454ea3a55202bf0d0b461543adfcea35782d5157e601d0790ba64fae85ef3e4537943c2b63d04cc6a4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-osx-arm64.tar.gz", - "hash": "d14f168543816d127405e68d8781ead9ec62671f7d97dfe29c054fbb33266de64766d8e968dca73b282e0900d9497112601ce1066841a0577ee3b59c42347532" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-osx-x64.pkg", - "hash": "d2cd7174cdb4635f9ab2c52fa21da93f7e76f4bf0a923063811e9d7e99d08e93dbe4d4d6ca5b615bb8872a097e1bb0c85f31e2c082175742976c765f9f73942b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-osx-x64.tar.gz", - "hash": "bca0e52b86ec664cf1ca6179915080ada4620ff2bedf36bb1e1c8985201d934b8c4db99d3b05079d278e7bcaeda7006f7b50eb0398420381f2e1f725d22cf6bc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-arm64.exe", - "hash": "7394a2e251ecec9fb91e223d1ad5ae19fd6b28b9911e6b77d751a248d016275be15c33c21cb75d418d556d757f5dae8c7de64f98d01d76b0ea6aea5d662e59ef" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-arm64.zip", - "hash": "7d7ceded924a1b024a00560534a76e1c3fce198d8b9835f88393a5d6eb6457c7cd908dd035b313d639d4effd082f271e4ddc87a3220676e7a93ff66d81ac64ee" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-x64.exe", - "hash": "72af6cc19db15f6d760795a55130ef3dfbcbf9e7f7452735fc39f30fb911e3dab469e39495b5a54d9d66486e9ec795777099f8caa359d7486d79b32d81c258d3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-x64.zip", - "hash": "0118d8fb7d67ff3ac1a43d9864440c294b566834a5b9d82657497d544708da1ba712a53e11e436fbd61ebab4cd63c35037f55b575c007d43437bc409963f63ab" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-x86.exe", - "hash": "8e9c3a01f03ce5d66ace7ee06fa62d993d20bf63c95cd21b82dec0071a24bd135ada3e5f939596cbe34a796b0228dff6cd5e82caeff7d0da071ed738c83c79d3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.124/dotnet-sdk-6.0.124-win-x86.zip", - "hash": "a483330183da2438d89be4af7cc455132b920518e79c5eb0a60fdfd84e4523988805aae9c7d8c81e58eddefa4ed3c7384b4860444ef4c308241c35dc27a0c6cc" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.24", - "version-display": "6.0.24", - "version-aspnetcoremodule": [ - "16.0.23292.24" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-arm.tar.gz", - "hash": "c762222a8ae5621b0874d323f3e29027d9a08afd0673da67eff2e11b4e909b8581ce7b106732e1b833da857fc441cb203b07f96173a04b734c75823b87c78ee9" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-arm64.tar.gz", - "hash": "db5de0888441e93466f84aac459d5ea0c9079c9b8e00308abb0ccc687922bbe48ace22b5cbdeb0f38d89cd115440deab5d0b4f1499611822dfb8a0e9f13c4309" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-musl-arm.tar.gz", - "hash": "0df571355d92599dca3914830339cdb725097795acf29829c471bd88552264246419b8529c151278538c902890b584cd8e95c0229ef335b0e0cf2cdb857c76e5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-musl-arm64.tar.gz", - "hash": "7447920d52a511eb89768f85a13f7eacfb8d72a16b0aa36ba9835bf18305bd5c23f3d19f82cd9533dd43883b8004533ac21e891924dcf8c4966b07494d7b5c2a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-musl-x64.tar.gz", - "hash": "4f493a2ac2047611ce2145685c87c0013edb79972f43747cae15de3581391ebb5ea98d4cf77f6c06fd45e2ef13e2b4bbd355d73d73034951178fb25543f3a3b5" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-linux-x64.tar.gz", - "hash": "b14ed20bb6c2897fb05cf11154aa22df3c68b6f90d2e9bc6ccc623897a565f51c3007c9a6edcdbab2090c710047a3d8eed0bcc6df19f3993d1be4c6387238da5" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-osx-arm64.tar.gz", - "hash": "1590236034ca91d347b045843d790288024b19939d34f356c6914bdc7ce000af9ceea63a9ce69fa599d126fbc6dae405a3a42cd4a02edf5ffa067388da8b4da4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-osx-x64.tar.gz", - "hash": "8cfab4466ab5a82c7e0110541708b08f894427036f54e2e8add649b9777c86b856f7d5fbd4c2709bc74343b5b1de937b13bff2f0b7e68726072f93b417632603" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-win-arm64.zip", - "hash": "5731bb1bed3990c1450af6f559e9322490921e571f4a0ab6377f22ba14acbb5f2b062cd0807046b2730a0c7de3b5d593e73b7051ed31f8faf7680f2bb21a1b58" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-win-x64.exe", - "hash": "da6289aed11536dfcfb4e114a5daa34ea215779eefedd3511d37ed344ef40ddb502e1540a57ec1a443f799c429e7b322c1399f1d5076d95d75984750949195b2" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-win-x64.zip", - "hash": "dd23f5a6c2823ef9aac9f68cf2a8e18248f497f07c549dc585c9e4bde8753ded42cae465a717f556d3072b5f5cbabb0f0ddf7cd930f3f1c6f331707e591d96c2" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-win-x86.exe", - "hash": "9364aae7e1426e0b354cf5bb46d30830b804e28e3524ebf7a9a14007e34f3e126ef5efa3e7708258c9f11cfc88f60ad9d60bdb462e1e03417de4cdb4bf4d0022" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/aspnetcore-runtime-6.0.24-win-x86.zip", - "hash": "a4f74b34e94931d27f9c0151a958e2e7aa74c87ed199676d3642aeaf34f3e7815476993d1a91cf0326c75810ad0afd4409647942a5c7494615f62f45cc69369c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.24/dotnet-hosting-6.0.24-win.exe", - "hash": "55f380969e6afc4dda074c5a652d7199c7f26c69455b5137eeef0cf2e222304a824af6d11ec8fe0bb5ad33b668d1fa08f7a00fb71b559aa683f52e54b8223a81", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.24", - "version-display": "6.0.24", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-arm64.exe", - "hash": "8bef31e14549285acedee79e7163f4884f66e8bd8dde53193cb1e2e7cef020832447a0e8ff7549adc16f283f58d53c18376cb9cc6a2cccd17053ec3c67120e39" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-arm64.zip", - "hash": "28ca73bb273d1a79c9301bf3583ecf66fa143c423b8a9b61610fc41e11a4a66298adf02c74669420c17d6811a13a7c6356ee0697f49565eec3fba3f5ccc61ec9" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-x64.exe", - "hash": "033e522bf27761173b76f65a77b4723574bdce81a8e3e5021ff4f156c7e221d44bd7ebb332ef56d3e8d9ac3fa2d250dbc98cfcdbfd5e27ce1516510fa816dcb9" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-x64.zip", - "hash": "8375b16d6382b2fe53bf6a6ad6d6b49acdb9dad402735ea1c8752141b39d94f25d7839884f66b231749e1a87f7630ba5cb099df26d268f01be0beb788a93f9f5" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-x86.exe", - "hash": "a2679007256c82625dd7acd06f00a8d4250395dc04da4963a9beb1817868464141fb817b15e23319aa25a6ed8b1dd7f55770f5c76a74d6a74fc24bd28e70c0d5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.24/windowsdesktop-runtime-6.0.24-win-x86.zip", - "hash": "2f0b2fc28c824e511fe6ce4759b51f60845694f9e6bf2634b6cb8e1eb4c1b2af5796d8b78dbec12f641ce7605ff878674b3f1ba7e922799521b2802fe01d129c" - } - ] - } - }, - { - "release-date": "2023-10-10", - "release-version": "6.0.23", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-44487", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.23/6.0.23.md", - "runtime": { - "version": "6.0.23", - "version-display": "6.0.23", - "vs-version": "17.2.20,17.4.12,17.6.8,17.7.5", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-arm.tar.gz", - "hash": "e949827cdec9a9129dfe1cd202c9b9426056bfe98f0000296ebeb0848f673751e1ea77ab9a3a782ca82651373620fd530ce68e399ddb541df31177813eaa79a7" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-arm64.tar.gz", - "hash": "f8a4ddfd6bb07d3303b722a0ac04c23545ea3020698b96308e8a4264149e15e3201d113ea431de69a8a8921a0e30364182ebe3ba263f6b1d24e3167b8d33adeb" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-musl-arm.tar.gz", - "hash": "a6d04786ab6824c571046a29d81fbf50c400fc8d1530948018742cf78870090f46447f0313148becbbf3ab13106c934c2836bfe33f4fb9f6d7093c2190725570" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-musl-arm64.tar.gz", - "hash": "ddc9a8d9a4bb723f83badd0e849d65f7138125207e4bcd17264ead839483687afee70ee1e1d01e6fab2fef95f85d552d950a9fe814416fbf8feb32842bbed2ff" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-musl-x64.tar.gz", - "hash": "9e0dd5233c4d69b77e3852f31f8e535d86d3381115a3bc7340e0642aa2358f7b7d8ce1cf5186126d238637d0f98186d7b54307f96c560d4f2356916962093e58" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-linux-x64.tar.gz", - "hash": "8182a852bfcd387343a589b71b0e51197b6b658e42dfa35b2e65ccc23d67677d974b00e748183ce61e9a9123e28ff43c9252d8308236c80679bfed16b6dc65af" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-osx-arm64.pkg", - "hash": "75e5b4b801ce67b261136aad3a42302ccb83dd083cd72ee35d6f3a948b50fc848579902a2a87b53d0aafc8a638a54fbd850774a7f93d8217ffe89497871e6746" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-osx-arm64.tar.gz", - "hash": "5c4c4398385f030b26a956c0935c4dd35ce8f17b1dfca7b04ba4dcf86d8c7569634404d076f7f392c7921543ccc266467bac7928347c53d3ec1af0e636b47aca" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-osx-x64.pkg", - "hash": "318d42b58140ab8333004c0060ced62c4dc1d2a1bca03bb3b6533cbef058cc0d186a5fbc2980ec22afbe637cdccbdcbd52c2bc47c3aa2ef94b9665db5e1f65a9" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-osx-x64.tar.gz", - "hash": "d77f1aee8337db4e95e7946ae07a27cfa78a13c998a8c77c09721b3c1ecfcd26c50cf376e39b3979ebb73e360aa9bbe0858ed4a72a2b8001edd0d55986137f77" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-arm64.exe", - "hash": "67cdc939112545ad6aa264ccb347cc21225664d63929ecbb7f000027dc881b655d4b647c7d6c623e9602ba6ddc583e302c7c2178afa17caf036359b1cda4f7c3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-arm64.zip", - "hash": "414af8a50be0a20627323ec1b1fe0520f9d18a8fa0190aa572951f8b6b20c4956bc0cc47c0ef01214d12c045dcbbea98e4ed5cdd2d8309de167934e98b49d85c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-x64.exe", - "hash": "59ae7105b565a6e71ad5e0dd000e33fe7db4ca8abe0b702ec87cd9fe79d1a41e91140e0d6e99732a8009b656cd287eaa8ccf3b31dcf2920eff609da73cf52413" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-x64.zip", - "hash": "051794f415fef0356889068cfab9bbb1b2e8cc5c074a5044dfe6a5359e8798b79194c3d961594ada78cc18fade20d30bcb1ce8cf88bddd60494ed43ee7e53a1d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-x86.exe", - "hash": "cdc9127ede2edcaa4fd13e9d6f7681346096a3c21cc59126cf81805b620a3d4986fc9a4e6b7fc430c8568efbe4ce1d3c2fc9cd41abded04ab30a2964f40106f1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.23/dotnet-runtime-6.0.23-win-x86.zip", - "hash": "394564e0ea4531f1654df412be2cc4da5a51a49095041f91e53ae2da7389d931772cdfcbabdb1920ca3e3669671ce5144f642e2c6feca936cbb13b61a1ca5c5e" - } - ] - }, - "sdk": { - "version": "6.0.415", - "version-display": "6.0.415", - "runtime-version": "6.0.23", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-arm.tar.gz", - "hash": "47b4427d56b3926ec13343253d4b73488c2eb298b5f29b1f4eabb8258975b511de3a99041acb540c304fc362feff6cf84b820bb13b738cc463f4dc5a637b4425" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-arm64.tar.gz", - "hash": "b4f27faed674545cc139c87361889a1849750a34baea6b1f195aa25d35f53c75db38e9b9551e1ff794c54e5965d9911ef6a04206d7a963519dfe346b9a5a9cdf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-arm.tar.gz", - "hash": "eb6036061c50c6fd0ab532aa0ea0d2571f09955f0b0dd7ee59e66bafce30b7beb869b48c46bad53af72f64a2bf2eeb813a492c44688293c02e7a6a7496ff62a9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-arm64.tar.gz", - "hash": "8911bdf9817ae994e9dac67bdcbf366bc544f9df151f2f32525706cc25a088c03a927642db97b25519ab2f02fd4a7775d8d8295c664d3c920e802a7d49707a6c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-x64.tar.gz", - "hash": "841d46a789266c8d916402095f52a102e937ea36ac78aac7c92f0b66f602f7f55dac6f61711ca55bc8a79c953b06be7a4826c82bc28397da750ad4c7129c35fb" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-x64.tar.gz", - "hash": "b1a3f84b50faf5840f5151bc8e41550f4c5828ea6a8df472e802fae8a00dca1a141ae620e2c20eec90935c322bc1fb082b38dee90a625766df1ec66b0f640d02" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-arm64.pkg", - "hash": "25197e3c881e29cd0d2567ad8fa7f0e2dd40a7f9c0d1410910fb4fe751dfaa94fbd6b31ab3d4d831992f55209452783c77d4703fb0977a8a30d29e2b1aaa653b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-arm64.tar.gz", - "hash": "fa5e6c19cbbc7ed431ce08d84ed6c37a96a225df62a0abe4c70c81d5bc563ba5a84e4672829d3278ae5f8ed6e2e02f98314e6a287b5c5faff34d7f887c6c31fd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-x64.pkg", - "hash": "53953fc3abef0fa5e149369c6f409d209d5c3afa2eabf248a8d437c7dd6fe6aaa0db93ba3af3e9b54f0447796c29ef25e04d59442c0e65729c2c5395e55ecfc7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-x64.tar.gz", - "hash": "545e2241f083942d907b6b9bb5f45ecf5a678568c85be49924ca797457d57ce9ff0486614f2951999a22d3f97828ea67e9fb5790ff68ccb13fa6751d8477aae9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-arm64.exe", - "hash": "c245191bc91c5d0d4dae88f7f2d0e5883e6579f900a7fafd82e5b9b0834696ee4c4785f2328aa546e644d605a607cfd26abc6640d17a6c4f0f316c4c9f4fcace" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-arm64.zip", - "hash": "4db7c641eb5f8bff73a9724cd593941f44b5b04409c8340522287da792ec11d9dc33eef7083d9f1c4ba4494ae5bf6a14037011c4232df1fd4fcc2f72744267e0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x64.exe", - "hash": "350f1f2208e6ea6fd4b64bf2b5a97f49a0616b9d6462f243eeffcd0728116553be4d8aab1cb474546b36422f12cf140941138484c1f869e51aca82178b6a9d57" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x64.zip", - "hash": "5e8f8e5bafc7075dc183cddd8c643d55777859fbcd0d8cdc8dcb5921b97de508ce9b87279e8d26ecdc1dac3b451c655f4953cd6575197aee5bee525b9da4ef18" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x86.exe", - "hash": "9e5fdff19e986e799f748f2b0308acae87c3649346d8adf48b393aeba48f09fc76a9e179a6dec8e7556b7d51668325831cf70321bef0755b96d493f4e31f130e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x86.zip", - "hash": "f1e2c552801f7ced79831bf0ebddcb227d5157ae3422663ca6c6743ab2e5e34c7a0855da9aac1ea0c8f4510431bbaa8dc2d416e90e12043182a1b6ae0658bf4e" - } - ] - }, - "sdks": [ - { - "version": "6.0.415", - "version-display": "6.0.415", - "runtime-version": "6.0.23", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-arm.tar.gz", - "hash": "47b4427d56b3926ec13343253d4b73488c2eb298b5f29b1f4eabb8258975b511de3a99041acb540c304fc362feff6cf84b820bb13b738cc463f4dc5a637b4425" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-arm64.tar.gz", - "hash": "b4f27faed674545cc139c87361889a1849750a34baea6b1f195aa25d35f53c75db38e9b9551e1ff794c54e5965d9911ef6a04206d7a963519dfe346b9a5a9cdf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-arm.tar.gz", - "hash": "eb6036061c50c6fd0ab532aa0ea0d2571f09955f0b0dd7ee59e66bafce30b7beb869b48c46bad53af72f64a2bf2eeb813a492c44688293c02e7a6a7496ff62a9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-arm64.tar.gz", - "hash": "8911bdf9817ae994e9dac67bdcbf366bc544f9df151f2f32525706cc25a088c03a927642db97b25519ab2f02fd4a7775d8d8295c664d3c920e802a7d49707a6c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-musl-x64.tar.gz", - "hash": "841d46a789266c8d916402095f52a102e937ea36ac78aac7c92f0b66f602f7f55dac6f61711ca55bc8a79c953b06be7a4826c82bc28397da750ad4c7129c35fb" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-linux-x64.tar.gz", - "hash": "b1a3f84b50faf5840f5151bc8e41550f4c5828ea6a8df472e802fae8a00dca1a141ae620e2c20eec90935c322bc1fb082b38dee90a625766df1ec66b0f640d02" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-arm64.pkg", - "hash": "25197e3c881e29cd0d2567ad8fa7f0e2dd40a7f9c0d1410910fb4fe751dfaa94fbd6b31ab3d4d831992f55209452783c77d4703fb0977a8a30d29e2b1aaa653b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-arm64.tar.gz", - "hash": "fa5e6c19cbbc7ed431ce08d84ed6c37a96a225df62a0abe4c70c81d5bc563ba5a84e4672829d3278ae5f8ed6e2e02f98314e6a287b5c5faff34d7f887c6c31fd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-x64.pkg", - "hash": "53953fc3abef0fa5e149369c6f409d209d5c3afa2eabf248a8d437c7dd6fe6aaa0db93ba3af3e9b54f0447796c29ef25e04d59442c0e65729c2c5395e55ecfc7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-osx-x64.tar.gz", - "hash": "545e2241f083942d907b6b9bb5f45ecf5a678568c85be49924ca797457d57ce9ff0486614f2951999a22d3f97828ea67e9fb5790ff68ccb13fa6751d8477aae9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-arm64.exe", - "hash": "c245191bc91c5d0d4dae88f7f2d0e5883e6579f900a7fafd82e5b9b0834696ee4c4785f2328aa546e644d605a607cfd26abc6640d17a6c4f0f316c4c9f4fcace" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-arm64.zip", - "hash": "4db7c641eb5f8bff73a9724cd593941f44b5b04409c8340522287da792ec11d9dc33eef7083d9f1c4ba4494ae5bf6a14037011c4232df1fd4fcc2f72744267e0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x64.exe", - "hash": "350f1f2208e6ea6fd4b64bf2b5a97f49a0616b9d6462f243eeffcd0728116553be4d8aab1cb474546b36422f12cf140941138484c1f869e51aca82178b6a9d57" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x64.zip", - "hash": "5e8f8e5bafc7075dc183cddd8c643d55777859fbcd0d8cdc8dcb5921b97de508ce9b87279e8d26ecdc1dac3b451c655f4953cd6575197aee5bee525b9da4ef18" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x86.exe", - "hash": "9e5fdff19e986e799f748f2b0308acae87c3649346d8adf48b393aeba48f09fc76a9e179a6dec8e7556b7d51668325831cf70321bef0755b96d493f4e31f130e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.415/dotnet-sdk-6.0.415-win-x86.zip", - "hash": "f1e2c552801f7ced79831bf0ebddcb227d5157ae3422663ca6c6743ab2e5e34c7a0855da9aac1ea0c8f4510431bbaa8dc2d416e90e12043182a1b6ae0658bf4e" - } - ] - }, - { - "version": "6.0.318", - "version-display": "6.0.318", - "runtime-version": "6.0.23", - "vs-version": "17.2.20", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-arm.tar.gz", - "hash": "421811f0ebfc6411ed26c1607f97aca626b724785fd13f1b8ddb3801b1fca349abf48123acb07405a81eee43eeae01a6bf282e9bfceee10ed6e4b78afe78e188" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-arm64.tar.gz", - "hash": "cd388dba7837a5936b58034d0b0f8162719f0035e357a14222727f8806c741b833fe24293c9e01c4b5c1c8a1811fc8eccb54eb2a8dd1c4c5d089285f12466ffa" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-musl-arm.tar.gz", - "hash": "08a6e4f4c7bb05df85941f4ab7d2d3eba9f17aa2ac3894558892b8e5b25be4ab347f9b99e67d191df08dd962bd4d76004fbe084dcc07356ab4f8e084fe0ee645" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-musl-arm64.tar.gz", - "hash": "91c15b17002557d04dbdaeca8d3cecbf9e6c69d246c80488a6d22d6a75fd4003453b3f0105020bed8e1db0d4050175c5890818a23e95b1bbe478f9ee3427931e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-musl-x64.tar.gz", - "hash": "ea62d3b52a59345d01256a1d357230cade04f461734ebfc202a893f6d8b8a838d2f42a2ac0a1585cf3d1a48de3787f640fc90238953d4e08cb9a7dd1973c913c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-linux-x64.tar.gz", - "hash": "387409ec54eab90d8e511fbc0482131fdb5e31c042d8aa72beadae5c09f8900a4f4568becd70f274210d6b2ea68dbfbc50ab69ad05c4d801c378adafd7ced2b3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-osx-arm64.pkg", - "hash": "7cbc87b3279283f0df4c1f986f7686377d73a83cb6d7b762f585ee0b880f1e4fc54e5dab9bede036499b5b68d8aff9eb3ded901347923e73fd16b94c84ac9afe" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-osx-arm64.tar.gz", - "hash": "6faaee57ac26cecdefc5dc4afb08f86bd220118df9c6cd01a3782809de3b08aeb7ff5e90f0f1b6a70ef8b9af604b41fcd0bfe14bcdef11e4135df786d53db9e2" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-osx-x64.pkg", - "hash": "f14df31223aba09fb8f2811a6603c6503c9505c7ce03a28d403ee7dedf26cb42ca5a8bd965a69b25b16d7f1a47b91c933d424300e9176df5ae046e3defa869b0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-osx-x64.tar.gz", - "hash": "c9a6aac5a981bf1c10d9c136583df9fc3d34687ea7db0232804796e17e176655f9ae9b42611abdac77b8747c14ba37b09b7c9542a621353e25fe98c314dd0ec8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-arm64.exe", - "hash": "528da87cedd7a414aa73e70d20943ad04b346e4de134bc246287428a05963cc8d64a40c54992af519bfbe06b6a9b2b2caf2794acd4681fea85376fcab3e745ea" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-arm64.zip", - "hash": "de014db9ef5259be7e0ece0c42532a4e7ce01b0fbaba1c84e683510fe5f56c6e495d59edb51c901207f65f4fbcbbad22cd25266cc81afce1f40fef5358a19b0f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-x64.exe", - "hash": "1fb5a4a677b676ff5cf08a4d41a339d95b12fe789a86424f8e2c85ed4bbd6a87f22c7e9c68097dc1be6fb827c43a150e01b3a8e8eb5afdc4542e438ea4b53168" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-x64.zip", - "hash": "2455589dd4e63034cca4200c07ef82e77bd794a6e4d46f98015e7323125ee3c715b3d05805b218ec26d7d2c58916ad55e846b1bdcee0c80a725a671b492a1d91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-x86.exe", - "hash": "3966a710439625c7408c2c1e872cb0841b170b0f170eaf26c85451a85162913102f7e9ffac058ec524b8f889446bb0661620a57e1b92442bcab26d978c3995ad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.318/dotnet-sdk-6.0.318-win-x86.zip", - "hash": "423f82a4f9622f7374d647c6c8129e315a80908e06eb98e428fe347dcaca0369ab0b1fd1f75ec55d4197b8ffeae5c7da8d885bfc738f8a5806485a3ccbe52dcf" - } - ] - }, - { - "version": "6.0.123", - "version-display": "6.0.123", - "runtime-version": "6.0.23", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-arm.tar.gz", - "hash": "f2437fe0aa68aab89132600dabaaeed5854045a82673f775acf9f1c274d09af13016cfd1b9a9bb5615689251cb5c3822492f8972a6e4fac236f9751b779cad58" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-arm64.tar.gz", - "hash": "cd6c33105fd9a6fa0b6ce124e9a1aaa16555903ce5ad5b01e7c7bac6725885069fd6436c5abb050911c64bc27b1cc31ccc76b31e78b4ae897bac5a77cc790320" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-musl-arm.tar.gz", - "hash": "ba7ed66189a501a662f1ca963210bf21de5f6733ac833c7c2806ba11225f0762624e009660e884d35db8f651b1510e853322feb7375a1016cdd0c630ade0a53b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-musl-arm64.tar.gz", - "hash": "b4272eb98b2a1cd09fc9303eee33c175b2c1985e1f038455fa00e4c19da068426a50a3a4c8bd96a12d947255d2a7c3f8a5ed1c26cfea8968fba1a542bdf60700" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-musl-x64.tar.gz", - "hash": "1ad5a65fc427acefb2209f771fc94c9967d3f99251f3b44b5e484e7f1f2a292e542b071d6a84fc630a044e61cc16c696d7734d872e93584b25006cf90a76e8b2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-linux-x64.tar.gz", - "hash": "547d8043511df68c94f0f821cec8cdab8d603edbe8f51021d56b4f8e4666c0c1900b4e91ed20b87d611d2da21d4e9453903902be82941f4ac7bb9c94f88dfebb" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-osx-arm64.pkg", - "hash": "01b975c4c964d2cc0c4196a09b64fc3b9c41dc68e3c0e069648c1786fb7fcd85bda5b03c03aa9f1db177672a8052ea57aef76c84873e11e8c7ac60832a7545df" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-osx-arm64.tar.gz", - "hash": "61329bcb26979cf3c804aeff836ccd82ff67172bfe1abb12dce30b8c5e03f28c989c2874eeb04118da94a6634654e2b2bb4443a26191dd078124e209ed8e9197" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-osx-x64.pkg", - "hash": "5a2a97b3e03bd0d3a79a56d6c07b9b36082e4cfd589777ce0de6b7aeeee383ceec31ee7c13403b82b39e3f4ee4825646430da2891674e6995300092a2ee1f0a6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-osx-x64.tar.gz", - "hash": "8b33862753011fb9d013debcb13733c192ba04e37c5697d2496973e354168b374830091a2e17cc92de6b88124e1af4dc0af8207db02f8fcaadc87c5d1b5f40f1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-arm64.exe", - "hash": "6b8d4743931c96989796dcb3fa503bc6805693b2461f424e42a65069e2507115ef371396e19e633c88410aebfa0c11705dac466c3cb013f723cc198316e6d497" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-arm64.zip", - "hash": "728abfb8a9096d8ac16da2a30ca6f93e88087513bc8e7fd38dbe5921de173a2ebaf6a752948eb362a9be377436c1d00856f334c1f94f88fbb05f3d5d2cc8eabb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-x64.exe", - "hash": "cc08766c968ca36a666ee6a1415fe97f07676313d969b43d04ecfa394375f11477f28b79eb4a8b54bb34a61f99d035b78612b33fb1887b8bb6e774ef28aa5aff" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-x64.zip", - "hash": "32c73440d2b17cbda1a26df06d58866453876be444e0597049b76bdbf45dc1cc1b5b98f4eb441de1736ea73a2f2e84a263b05bc09c21aee1e1eec8316976e91c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-x86.exe", - "hash": "52971e0436e88b31d57982639db52745d750eeb20238d764fba1eb2afbabe5d2b45d8a986f8c4cbb47d11d5f14062543dfb28bd4ec5c816837b02190c875a009" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.123/dotnet-sdk-6.0.123-win-x86.zip", - "hash": "e8c5780dffc8e80a9503d72a5241666fd45a8b43acff1463305673dea46a932bad5cf9c614300eab8fe355bc6fed0b87df520ab6f853cacc4eadbe3142277748" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.23", - "version-display": "6.0.23", - "version-aspnetcoremodule": [ - "16.0.23273.23" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-arm.tar.gz", - "hash": "ccfa4c0ae99eaef029f7f52c7c0154475920c9df8fcf39b84b238acaeaadfa0333e6ebefb67e9b8249d876ea79b25a605e094bb1fb28397ba38050bf13e1f3da" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-arm64.tar.gz", - "hash": "b9624ae5cffec0ed95ff66263ad471993aeafc508856d26cac0f23f7f3e0f66b8680c3ed738f7b097d54a404196e624777731f4e199a698262d47c892c5f8ecb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-musl-arm.tar.gz", - "hash": "558f085c04f73ef740f9a43c8dffbab6c7fb463cbf0ddeb551bce138808389acc1a0d2f7c858fc815a5b3b8bc56fd561237830633db810ca9ca7265b7303cc10" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-musl-arm64.tar.gz", - "hash": "f47d4b1699c36d87db4297e86cf62222f7c89ed0341200df4e7dda6e63e3c1afa255e874501ed2cdf2a9170c508df54b27d88f0be72e8dfc760c02d3088c8c43" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-musl-x64.tar.gz", - "hash": "e4b5f6447d498e352348490e70a7f6c0abf9339f7a1d326f32b5f96cef166833b1e0e942c913795a2d90b203e02f44f77be62f7898c17eac7b6c665cd4c13227" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-linux-x64.tar.gz", - "hash": "c2f0d82fd0dbfdd56c889d435af20f3b1d55850605df892251b4679830dc5b3466c7734912b7073bfca803e5a75a59e929fb36cdc7d4978d7eb0a563da83d08d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-osx-arm64.tar.gz", - "hash": "33aa672c4ecced027a37ead440146a1ada5020741b1565983d6a7482be429baff5323b8063b64213013547ca62877ac1f4e28323714801e5259bbaae8961abf6" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-osx-x64.tar.gz", - "hash": "4c092c32f9717491e9f8107b2f30b4054048d9d941583fbd522908560b922e768dd8801fdb3f0e0e0dcbcb17a4194a037d88963b88daa999cd148074b6c1e396" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-win-arm64.zip", - "hash": "188ca8d270a26e858c70e2e5bb2261aab76325a913c935f2413008f4bd3f0005bb968cfbe876ba2939717bf928d4ba9d3cf669a3767cd4e479d39e14da57ffd6" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-win-x64.exe", - "hash": "6183a8aaad0af1a026fe2d6f66cf9e0676ae3f417659dccab3f8dde1e0f8bc1d7c6dc33fade29ae3b0cecbdb09e53cfc469473a20e000a85c6c98b2423c8a2b6" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-win-x64.zip", - "hash": "1dc5781bc3bdf633a4141b12fee25673c3448bae89d119d8f59c792f39eef84a505035f2526dd624ed6cfac1f7da7e02d3a23f19f3d5e1961876102472212bf6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-win-x86.exe", - "hash": "ac8ebd88cb5b947c06b1e5b44d53a7cdec823d0de8e3f1959556a90ca43b2fb5b19c265b6e011ad8b7a27b13115cd818be6a95b01121de1c5a480b718c4d1970" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/aspnetcore-runtime-6.0.23-win-x86.zip", - "hash": "4bc6c6e2828c2d4e126585a3af45273ef94ef5270480f4b3be403fb42108e1ee3f12cea2c85c05bf311ad23a6b6d08addd980544c493dddf48427226f15d7e5d" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.23/dotnet-hosting-6.0.23-win.exe", - "hash": "b0fab7d01aac899623fa5dc79940749ee58b29980d82d16e6aca794e323de46234b2263d70ba7e83cf989cb6c48d07e293f25a39b748e5a88874791566d38616" - } - ] - }, - "windowsdesktop": { - "version": "6.0.23", - "version-display": "6.0.23", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-arm64.exe", - "hash": "1a5e7999bbfd3619792523478172e549bb5385c87dea934fd78fe6cecd488426a3bf0a91d1b1f07ebf5884dbfac0fd3eaf74613113cff39acf630f1ce1cf230f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-arm64.zip", - "hash": "d7287c76336d6d5b58ab44b02fe6c24a3640d61414b211f2b2e40052a06c881812064ccd6f5f8dcbbd2c207e9d4f06167ea7371e1afc87db40f16ca63f726452" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-x64.exe", - "hash": "73d07cdcd8a876ba8608490d34e6513c05eac9a70ce0057ff53008f733d3615d57ddf33ea9afc736d4c8d4b19fe38d5cc132c2c472c5f1e38bc7650777b4041a" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-x64.zip", - "hash": "91bed4faeddd9e59939dad6051809ec83e1015668d7e9cf69d2a228c4291c7e6154824c86579d9832668a83c25817701ee11058f7d14d4f420af463f8cb74d0c" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-x86.exe", - "hash": "4cc01bb5d2d52bffda533f447aa8bafa73ad5c127d6f440803f0350abacd6119e408e68aea8f155ae715c3427c9ca1ec8acd262f563e2592e86eccb09fd29de3" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.23/windowsdesktop-runtime-6.0.23-win-x86.zip", - "hash": "5a9c28aebad54b1708baa66c421be49e40823a6a534645fdc117e1a4cb8fd1b4ff7122ab546c6507419ec2e04731dc68408e966f6e1d7a21e90975688ee3402d" - } - ] - } - }, - { - "release-date": "2023-09-12", - "release-version": "6.0.22", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36799", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36799" - }, - { - "cve-id": "CVE-2023-36796", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36796" - }, - { - "cve-id": "CVE-2023-36792", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36792" - }, - { - "cve-id": "CVE-2023-36794", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36794" - }, - { - "cve-id": "CVE-2023-36793", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36793" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.22/6.0.22.md", - "runtime": { - "version": "6.0.22", - "version-display": "6.0.22", - "vs-version": "17.2.19,17.4.11,17.6.7,17.7.4", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-arm.tar.gz", - "hash": "efaac74d49c3848a55b861ddd4b411dc667a649c20d2f9ef0221eb48054bb669ba0875613068676fcb1e13bec8866de9d8873472dceaf6f33559f540df62512b" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-arm64.tar.gz", - "hash": "bef57f12a8f9ad3c41767b85158f76c996f38db56bd4b8d800d9ccd107be3e1d47a3d2917a252bdd937e3c30547e431dfbc295c7ffce8eb4ab072ade426c53f4" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-musl-arm.tar.gz", - "hash": "4cf517b9c726358ad1cefebc2a36d327a5f4d1f7e25f4d6e0d07329eeb3ea2954433af2b7172bb4d0866aa12e6fdc0c4e30f7b1e64193d36be6bd05c6a074ad9" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-musl-arm64.tar.gz", - "hash": "72ff1a7faa5ba8af941456f830a8d09514fb63d9d30a352193480919c19dfaa60a19b7cbcb3d29ba0f6d8a3e3bc24450520509dcc043b769cc42c3562ad17255" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-musl-x64.tar.gz", - "hash": "89ed90be247136f205ae1f51ad932fc9ae04ff6b235a08564902f1327074704935850e573f550c404c5c53abde77fc51c222a2a5d94402d48ae379a42a004d88" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-linux-x64.tar.gz", - "hash": "c24ed83cd8299963203b3c964169666ed55acaa55e547672714e1f67e6459d8d6998802906a194fc59abcfd1504556267a839c116858ad34c56a2a105dc18d3d" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-osx-arm64.pkg", - "hash": "c04f1196e8a80c75c54cdd29ded919181bb248455b8c993b14957e0e0369022a05ea4956870b3791264a874088b6bf07a4e5d5eabf41312130d0caeb6676af9c" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-osx-arm64.tar.gz", - "hash": "5038b29e5794271284d8316cbc454c8b1f1e54c30fd15305051008ff005a79ae22367bb2a50b03ffa4ce00228d1d82a3361d675a1a1a2c8ffaee3dffdd7c4eac" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-osx-x64.pkg", - "hash": "0b082d3c6819cf76d8a3f2f8fb9c94a7c97b045ea73cb585d327c3a2381291014108451f0c73151fb550c7ef66cdf4e019ee37b530538534a0b5f48befb3a603" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-osx-x64.tar.gz", - "hash": "cea7d3de081cdc6053861398700211561e2c7990be2e8d982b007f485321c5b6255622069d4c4adf2c0ddaefbd2438625617b10294d7c05dcd36d283bae40567" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-arm64.exe", - "hash": "1a885e849fa42e82d67de49a1d5034e9bd13bdd9b8feacc4eeb23d109ee964cc218d5598f1fdb37005543d808dd6a1284c090e3634ddb92f9f9c695c1696794f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-arm64.zip", - "hash": "be15e393b58ad33c5c27824fd5c5c5932fab288a702e331a9a9a3dd7b7af03408c9a4337d276f68beb6b9c0692947d00e791ddda4029134f0adf81791803db77" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-x64.exe", - "hash": "30af32eb50f70089cdf206b31a7274ad30ad81ba25cf72fc6e16108d647e3f279f5073313f60809715ba556a041b005c3b3ded297d54e0d8794a3e407f31cf0d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-x64.zip", - "hash": "459620d832ceb111d98997c3842ff3b76d5e6df27d108680db2e64525b0826ea2203dbed1a619b4eafcb6136fab37e1b5ce9dead9220cc30f9309a0b9a94d88c" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-x86.exe", - "hash": "07648a53028d2377cd742433102d972e190db48ab65590227403f2e7c71ae46f3693e83aa692f0d845ace57bd6ac9e997076fc81ca46d5eccb93c6d88c67398f" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.22/dotnet-runtime-6.0.22-win-x86.zip", - "hash": "2d18503ed8b2ed43fd35ec6dbdfb57ba2215104b3f5473154b2ffd2b0429b4c37b7fe892f3168dc4ceeacf98ac1c5e06fdd4c3b0a0ee8603e15bc4a36c632e92" - } - ] - }, - "sdk": { - "version": "6.0.414", - "version-display": "6.0.414", - "runtime-version": "6.0.22", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-arm.tar.gz", - "hash": "254be65d003216cd11adb3f383bc1144201f9721e0b8eb1244b612bedbcc1e60d308c27aa2fd3ff972004dbbcdd4be04ec14910bc6287b5782f9f020a43ce6e6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-arm64.tar.gz", - "hash": "225367725fa2af00240654863c4dbe2370b95542d8c411a78017e37e13031a67049bcf570b94d9fdc9f61b1d13db7bf7ff9772bceccb70f43dd468302a47016c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-arm.tar.gz", - "hash": "b74c8d0266919d4ed9f7b67734ba99d5316cd29a645d7ed695d63d9af72f61e525e8f4e141e782a99e56aa6f374dd3a1678d54e97ac5d225032e45f07aa72ebe" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-arm64.tar.gz", - "hash": "a7cf98e577b6525beb60fbcf8d5f641e30d66f97c13b817d3c47f3453be1c1187628033d70e12fc2a466c29260a86c3bff1725da6d4641b971a82d8a6c4fb36c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-x64.tar.gz", - "hash": "b6ee69731118f8492ae80e6a3dc238755c1944d1ae4e74ce35fe231a067bbfab81b3a8cbf0cd14ae73c0912bde4054727b6885ad5009b2284d471a463d587cea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-x64.tar.gz", - "hash": "79bb0576df990bb1bdb2008756587fbf6068562887b67787f639fa51cf1a73d06a7272a244ef34de627dee4bb82377f91f49de9994cbaeb849412df4e711db40" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-arm64.pkg", - "hash": "5b8ff039d90d1c8331f3ba5c10c3622ff94cda9c6c7231240eb45ce8c14c0fc527d2ab2bda1fbbe4f3aa6ce6336d0bbdd18289103d7dca00bbd69e9d46d7fc97" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-arm64.tar.gz", - "hash": "02c65256834ed5cb947089ae4f0b2f5ad0bda44fd3abd06d9f5003e2090017a384a569ef08fa7f4abfdb368345c34242569cb81980c0463529469e522e742042" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-x64.pkg", - "hash": "024b0c97314c524e663ba7e664f5f850a1d9cd17f617f6ed72b6c1c92fd299de44e98f6ea3faac48aaf37092b2c5314e1aaf046a631ec124fb34356d2759dcc7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-x64.tar.gz", - "hash": "399c9fcef1ac858685f67d33079a49fd814d90926d47161680eda23820281acbd3b0a98fc7dffedeb9e2072f68880d74de3e4ff4d369046af157817dce61d5a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-arm64.exe", - "hash": "31a6332c0847becccdfc957bc94df253939f721940c852696f3e98a8d93b2ea126266582801d3ccb80bc5f658909f2633ccb18e613dd36db93d2fe1a7dd67e55" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-arm64.zip", - "hash": "4b81d0299bcfa43a05b2f65d8fad35ba4876631776d4569d8e093ec3512f08ba833a399efb193283f414df3384c49a4ef3ab9e9fb8ce871c1021329d0e2cd723" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x64.exe", - "hash": "e24ab9c5d29f42685afb4ffe444dde03329ed1c76a339dc0dd397057f8392c719855fc2883ffb146ab5bac668e3bfc2692aacdfa5bca11191b41ce31edb5ae38" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x64.zip", - "hash": "6f9cec518cd1c39ab0a161e890d486a920d553f2011d9b0f68ad962b0f5e16a4c14124c99c5bc09cae007ba01603118a3f0f2aaaaec7f4578e7e57f8d3d43480" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x86.exe", - "hash": "a08a723e62a4917b3c7cd57bf809f2f9100739321b6fb8c267959c95929fd9acfaafb70bc838adcef39fba2720b1cae7f821dd2a11e54c95b5800426fbeb5e16" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x86.zip", - "hash": "e2e94d4baffcba62f3e3fe94556998f893bbae1fd9abf8ec4325a6bb52d26fefea512512b0205047afe42520e623d5b68e952315f37287df53c6d922200dd4f9" - } - ] - }, - "sdks": [ - { - "version": "6.0.414", - "version-display": "6.0.414", - "runtime-version": "6.0.22", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-arm.tar.gz", - "hash": "254be65d003216cd11adb3f383bc1144201f9721e0b8eb1244b612bedbcc1e60d308c27aa2fd3ff972004dbbcdd4be04ec14910bc6287b5782f9f020a43ce6e6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-arm64.tar.gz", - "hash": "225367725fa2af00240654863c4dbe2370b95542d8c411a78017e37e13031a67049bcf570b94d9fdc9f61b1d13db7bf7ff9772bceccb70f43dd468302a47016c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-arm.tar.gz", - "hash": "b74c8d0266919d4ed9f7b67734ba99d5316cd29a645d7ed695d63d9af72f61e525e8f4e141e782a99e56aa6f374dd3a1678d54e97ac5d225032e45f07aa72ebe" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-arm64.tar.gz", - "hash": "a7cf98e577b6525beb60fbcf8d5f641e30d66f97c13b817d3c47f3453be1c1187628033d70e12fc2a466c29260a86c3bff1725da6d4641b971a82d8a6c4fb36c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-musl-x64.tar.gz", - "hash": "b6ee69731118f8492ae80e6a3dc238755c1944d1ae4e74ce35fe231a067bbfab81b3a8cbf0cd14ae73c0912bde4054727b6885ad5009b2284d471a463d587cea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-linux-x64.tar.gz", - "hash": "79bb0576df990bb1bdb2008756587fbf6068562887b67787f639fa51cf1a73d06a7272a244ef34de627dee4bb82377f91f49de9994cbaeb849412df4e711db40" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-arm64.pkg", - "hash": "5b8ff039d90d1c8331f3ba5c10c3622ff94cda9c6c7231240eb45ce8c14c0fc527d2ab2bda1fbbe4f3aa6ce6336d0bbdd18289103d7dca00bbd69e9d46d7fc97" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-arm64.tar.gz", - "hash": "02c65256834ed5cb947089ae4f0b2f5ad0bda44fd3abd06d9f5003e2090017a384a569ef08fa7f4abfdb368345c34242569cb81980c0463529469e522e742042" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-x64.pkg", - "hash": "024b0c97314c524e663ba7e664f5f850a1d9cd17f617f6ed72b6c1c92fd299de44e98f6ea3faac48aaf37092b2c5314e1aaf046a631ec124fb34356d2759dcc7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-osx-x64.tar.gz", - "hash": "399c9fcef1ac858685f67d33079a49fd814d90926d47161680eda23820281acbd3b0a98fc7dffedeb9e2072f68880d74de3e4ff4d369046af157817dce61d5a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-arm64.exe", - "hash": "31a6332c0847becccdfc957bc94df253939f721940c852696f3e98a8d93b2ea126266582801d3ccb80bc5f658909f2633ccb18e613dd36db93d2fe1a7dd67e55" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-arm64.zip", - "hash": "4b81d0299bcfa43a05b2f65d8fad35ba4876631776d4569d8e093ec3512f08ba833a399efb193283f414df3384c49a4ef3ab9e9fb8ce871c1021329d0e2cd723" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x64.exe", - "hash": "e24ab9c5d29f42685afb4ffe444dde03329ed1c76a339dc0dd397057f8392c719855fc2883ffb146ab5bac668e3bfc2692aacdfa5bca11191b41ce31edb5ae38" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x64.zip", - "hash": "6f9cec518cd1c39ab0a161e890d486a920d553f2011d9b0f68ad962b0f5e16a4c14124c99c5bc09cae007ba01603118a3f0f2aaaaec7f4578e7e57f8d3d43480" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x86.exe", - "hash": "a08a723e62a4917b3c7cd57bf809f2f9100739321b6fb8c267959c95929fd9acfaafb70bc838adcef39fba2720b1cae7f821dd2a11e54c95b5800426fbeb5e16" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.414/dotnet-sdk-6.0.414-win-x86.zip", - "hash": "e2e94d4baffcba62f3e3fe94556998f893bbae1fd9abf8ec4325a6bb52d26fefea512512b0205047afe42520e623d5b68e952315f37287df53c6d922200dd4f9" - } - ] - }, - { - "version": "6.0.317", - "version-display": "6.0.317", - "runtime-version": "6.0.22", - "vs-version": "17.2.19", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-arm.tar.gz", - "hash": "d028b34601d24e4a4c6ceab12ae701cb76c3064f7080fa0cd599fcfba11236eebc1af57bb60fe363ff14028fdd5e53abc1d9eae66bd328dab70e437f96ee91fd" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-arm64.tar.gz", - "hash": "3fcba3a3f18311980bcddf05455ce37a715d435afd7e1b6acb8924b49ec13ef3f141f5caa52ce295041880d2a8b9c7daa64aa024d8d319ebdd1b6427863fb67d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-musl-arm.tar.gz", - "hash": "6ae7e78044e4ef3686225f884a69877a14e0b0d4d85e8297217887648e793969c463b4bea735e3e31f539792176a9da5e004eda4c63bb52042bc89097cc9a8a0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-musl-arm64.tar.gz", - "hash": "8bfc9d904d1b3c5576bf1ed03dbcaf08d3e8a0d4838171ef1606139396f08c0a72ec2bac6150937477a2274a5bdb5379c7aaab1c107c7f2e0e73c8dd3f0846ed" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-musl-x64.tar.gz", - "hash": "0442546b9d0308fbe004553164522de8b13eddc3daf076514a6002ce4fe66290c896584e9fdd845be4acf52d35bcfc9d60dda4aa23e918b01de438821785a35b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-linux-x64.tar.gz", - "hash": "df393d4b1689285824088702e09205fb51c535941458b8264e7a62f0fffee9125df008d28a1ff01a9f652a5882296cbcceec39a85e3d2ab6db0822612c7cac95" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-osx-arm64.pkg", - "hash": "4dbf9490d0756885f0fc3838b38f2fd3d7ebb48b8be982c6c50f306fd81ec15b00d070381719c5577032600b4d50d7dcf45e9bc4efe4b9fa0267873919f0097c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-osx-arm64.tar.gz", - "hash": "91368141bd3842b6276b47fe9e2428dbed3305e163785a55189ed215e44f60a540c60309380ce1f498c2df5c71217723e09d7028ab8277a4be9694ff72a658c6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-osx-x64.pkg", - "hash": "ad0b9cbb9d607fe648424b9d6ff3480e212ad06fefb5e79d0762111207e5cbbb61cc50adb6d8e5a9dbbcddc73c32e6fda1e1da9835d5b9122e6c3ad73b42e3e6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-osx-x64.tar.gz", - "hash": "70c3e9854ef8585aa78554b594229698e91a3369954ac96a25501eb23e49c1a8a62dd7aa896b8ad9596ce815bf0589b7b457acbd7eac3f64f2308e76e8bbc951" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-arm64.exe", - "hash": "72d2b61b3318643e25ba65cc235cacb82e51a01988ed0de71ad982ba73e9bada5056b0f6b3672ab761b4f7ed959a6462295fbb4cb4398a1d64c10bb8a64f39e4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-arm64.zip", - "hash": "eba5764d1a6a06d29662b292ac108fd1b199c9778b75f457a7e782880aafbd31052892697e31edde2c74af99f9ccdac3ad713422ed3ed29be99fb5aca3cce70b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-x64.exe", - "hash": "35ef54970dc04fe10aff3a28c995bdb1a1023d034ecbd41aa009811f6dc65049c6a5f784ba7e9cf58f1d4444135f76a1043ebf31055bad73c130f2d074964354" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-x64.zip", - "hash": "c3b199b33290473e1761876206bafea7d28da3727f5518587e5bae4e0cde279caaa29f631df0fc21aae81f980df9e21811929e9be2dfed9e2faeac6b53874302" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-x86.exe", - "hash": "a74c5a875b92c6007c53e5c8f2a654034b566d5ba0879a493884d9b0cfca2bcf97508f4ddff17ca96d7c34c0c685ce7d2da98bc107bc212a40dfd0994f7b15f6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.317/dotnet-sdk-6.0.317-win-x86.zip", - "hash": "d69c355bb3dcbc3d43106816fcd19826576d9f9e2dc566f563c2abaffa2f280ce499f17e3950b64ed60a0a06aa9272c0727ec8a634ba9f545b8659064d4b2e20" - } - ] - }, - { - "version": "6.0.122", - "version-display": "6.0.122", - "runtime-version": "6.0.22", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-arm.tar.gz", - "hash": "d8370227f03a0da1bb4774298e863612ebd736a83417002329e1edc57e6265be3a74c8e384224982e3cece5acfa12af2cb67265c765539544d04370a04ab7145" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-arm64.tar.gz", - "hash": "b11799d959d06f0897471cd3a443bb7a94040b4e508a7537fb198561e6ee17edbed36f4e1606592d98bf4f51143363c2df2db874a7e3f4ddc67b442a770bdf61" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-musl-arm.tar.gz", - "hash": "b09c0df3a2d054155ab0aaf3eeb5cdad5668d8b92fd84acf6bc9a6a43a1fa783873a1a1968685f22b257d0319deb24f319c0ab38b45f92083511c3c3e45f4268" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-musl-arm64.tar.gz", - "hash": "f6a6f95ae4250812ed9de8221904f2cfdc2b31649d507f35f632e686898ff66ad7e8a2849254bae7d277727a20467e4750b9491d515e2ab83d416496a9ed7be8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-musl-x64.tar.gz", - "hash": "473bdc160ae6a3b184dc4b44ab4b3792bb2e23a8b5598e855822169a5f548b459c8e07bd368ab3cb1dc8bf1ee5bfa08220a9b30f0aa4f519354392c76a4ed018" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-linux-x64.tar.gz", - "hash": "b46dabc77048aea42a4dd06c003c3f13a15d90a1e62128773aa2082aff10e4d14ea90ad16f714244ccfb1cedecd25e1dba1e5bc51438c85373a183e1659233b6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-osx-arm64.pkg", - "hash": "568851528b02389f71c22a4e28ea9fae793cc6e1532dea4ff49ac702173e5b06e6e6b8863b0f83d81a97fe4e4886c2d685e0243e2ad20e885c7b8fd12bd23c84" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-osx-arm64.tar.gz", - "hash": "cccd071747755bc3cd5c10b9080c18158762ee10d8fc5469d082b809f54b5f41fc55df6f256030bc8b62d578465a62109a78af0c262e8f3e46aef55776e68961" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-osx-x64.pkg", - "hash": "71c2937a19e36899c4a7ed23f281eb5f8504404607bc14009db4933c801ce73151a6a97c01bc396de819b550a55f59c1ab983d92636c145ab1f045e707e678b0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-osx-x64.tar.gz", - "hash": "9aee0e610cc987a045facd33c80acb70fd86660477c8a01442f9293b217bd621a747c5526761dc60def05dad390fc66cbf3dd01ee3625a43b652dcbe4e379d86" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-arm64.exe", - "hash": "b8764686e8ba8e327c69c35743eba8fb3523b4dcd5bc5fd30f237e5e7df60e318c310350f098961dbbda55f8444b341ea31d5acd084329e7b1f68c08d1f5ac9e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-arm64.zip", - "hash": "8725b8c3e20bc6a67687bcdaf115f1114f16f32f1fe9e46666da1b17db4258e9073cf92321b37f9466231aaa83c8fe56fec28f1764bd13d4a13223cccb477753" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-x64.exe", - "hash": "c1513382b8fb42bbd8c2908f3769f452901c06e7c784cb42eea79d6cdfad322f4e07423d3f56deb443bce1d0f463764c2dd258393c2dc1f2a274da370e952c56" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-x64.zip", - "hash": "d45dbd9a22a97fa88ef24609c51893e6b4d2ffb932531f187241e781122e1ab942890424290ed6eabeb66aecb6862eff2455d11d4107fc2613aeaf1c948a367b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-x86.exe", - "hash": "f397435367ef06ef6404dc4719efb8c91e325883a7bba04880210cfac5aeb2207a5e9f0a89e4a568552fcc75a14c9b2234c97454aa851a68e0711ba296e98277" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.122/dotnet-sdk-6.0.122-win-x86.zip", - "hash": "b95df4deb02875d90fad5d54ef1b5e48eeae35fad5d85f3641b7ca8bdf0b73763f0dcb6667da4bc14acba8ddff521b3654d360f47dffd76cefb23717804f77aa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.22", - "version-display": "6.0.22", - "version-aspnetcoremodule": [ - "16.0.23237.22" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-arm.tar.gz", - "hash": "ac6d2d13a75377b1c78c10ebcfd51765a846465125e40f01c7ff5dc627e56e8e2cb664a06ff379f3ab3feb956614e099985386fd4d511188a1f3010dc743ff5a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-arm64.tar.gz", - "hash": "bd3dc49cd2b637edc3797206a0b6b07b40f774a25c3c6932bc86d345cfb90f4af7c0927e1b39cf4fc638ce67a5291b0ab7a5bfb030c629f8e4e0d9ce76715532" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-musl-arm.tar.gz", - "hash": "0606bbc501f0fe7eb86468113ebc33e1c2acd40d1c107b63b17104046d95b8a3231cb6f0685e965f55886bf7363c08b328dfefa3dc7f8068ba9682e1363e0cf1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-musl-arm64.tar.gz", - "hash": "2bfc3f590399fbb97f22ecf35c2421c11e81102aa4a6c1fe660938be89af9ac3911ba679dd6d98366739703b31aca7e75f49f92b50e3e4b5caa482acb9fb1e66" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-musl-x64.tar.gz", - "hash": "1dace8bc0ec8ebd8634dbdaf7deffad93d7ef7bdd842e0ba66cfe8947857014c203d6811ad5acfd2cf6974d511c0d4b409d4e0aa909b1d7fc292a17662d0838a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-linux-x64.tar.gz", - "hash": "a42f600823e19611ddb202bde1a8da8d0e9dadb22262cb2122f8c85af12bddee8793524d9e2096c188b267bdd852ef90bf93533c2d4f2f3151742cfc20fdc244" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-osx-arm64.tar.gz", - "hash": "c39e137d351125fefc078882311eb7de37ec8188444767a15b56d6f242bf5855e0e79cfb205a45c5083e86f039b5e7202727a1f8eaab92706e5c705ba782aafb" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-osx-x64.tar.gz", - "hash": "c899865b0c3b409273fc9d4eec1e0d37406021acbc40d34aea8566fbd1cdce541bf0f1011a625ec0f61798ae334d244f72874943da790dc3d4b98611b140a954" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-win-arm64.zip", - "hash": "01b5b7f58a61e401223f80d549fdc87ab6761c471667303e541033ed244de5b24b8932593881e9456d175b411136edab189812141a35ae51cc6e66d5d8345db5" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-win-x64.exe", - "hash": "8b751251e16cc6e396fc0afb7f159360bd1a1c971087ee8d27c0b112e940b5cd1f4b3cf775051df9231c991e555e4d592b031c458d9a7ceff6e5b9f5e0277313" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-win-x64.zip", - "hash": "70b366ea204b323da447ddb444a589247712926bf9f5b4b6fa479117c70c2aa3d6b07215d8c7eb7550e9cb5524c2c1ae9e65b07dc7ccfbfef89cd0e339d25380" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-win-x86.exe", - "hash": "5e6aa0e7a781b2e916360695cec503c73a593fc0d57cba2c530a203161b6b4a94ffefb5bd060276f07bbb8b626a8909c27b40557a0618cc2e817306242ae12db" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/aspnetcore-runtime-6.0.22-win-x86.zip", - "hash": "d21cae5ca0b3e00e2818b4f404dbca9c365b49e46480acb60729698fcd3c9eeb02c7f50d0f6ab0f03b9d81f466ed4f5d1178c73eb6311b226768c3cf6ac84548" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.22/dotnet-hosting-6.0.22-win.exe", - "hash": "19df24fe6272e6a162a701d8b96c505be560b19b4d13d73fa9ac2a94148187f666cc123d2383efd18e2857af27db3c580f16c8045ddbf1ac2f1507bec8a52fe3", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.22", - "version-display": "6.0.22", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-arm64.exe", - "hash": "2a5617d5ef77e89d650c192b9d48a7cd0cee8d722ff5d8a03aa8bad8af0d26104295627386aa337f1de79df2728a5bff85bacbad2004c5ba114a535bcb9de50d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-arm64.zip", - "hash": "032507b55b690c6b925015bbfbb699041cddeb3706aefd5132ec3478cd36c775dfef5d3f18ac4669960d72e4b91aac3b6764c7520d267301452616f2d247220e" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-x64.exe", - "hash": "448ee5cc3dea9c3c99c5a1bc8895c1a043f9be1c8a23ea4e1d9a4261b46d21c85de5d11a81866436c6216ec2df12de34a86061682c3856045fab5ed06571b25a" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-x64.zip", - "hash": "901a525d2a2bb84ed7a734b3704a038abeef52b16a1d373b255ec141cd8cc7625c8387c8d6160b460e4b9a91173cd4e43f3665c276778ae56bc6ff99e8c291bd" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-x86.exe", - "hash": "8dacb27082abde25cb981021339f2592167efe8688b4c9a3b76082d0a690097459589d155a8f262a4e5d2495fb960f3f54433580de94e43ec8746fc0b54edcd7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.22/windowsdesktop-runtime-6.0.22-win-x86.zip", - "hash": "6c03daad4655891657e510c0974834403ab1bf115a4bf7c9d35ad9407f436ad796812d6c26842ada41441d88876b4cab745fd639602cd191962e3939b0cb9d20" - } - ] - } - }, - { - "release-date": "2023-08-08", - "release-version": "6.0.21", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-35390", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-35390" - }, - { - "cve-id": "CVE-2023-35391", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-35391" - }, - { - "cve-id": "CVE-2023-38180", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38180" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.21/6.0.21.md", - "runtime": { - "version": "6.0.21", - "version-display": "6.0.21", - "vs-version": "17.2.18,17.4.10,17.6.6,17.7.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-arm.tar.gz", - "hash": "a265c05ff50bee5e6d2b46f6117bab812e5348f56914945d09694627a2ea6f309fbd9f5a2656ff90c566fa0208a6119bb87a3fcf26417d64de5549d650c262b6" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-arm64.tar.gz", - "hash": "f34e1319ded1e1115ceb63eab16a4ac7096e36e3236f8117f61ec9f0e19dd50adb473e1213a1018abfaedc4da57519b85058e7b14187a33e0b91e79af4dabf63" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-musl-arm.tar.gz", - "hash": "e021f7a2290358ffa130cfb356831ebb06cf6582dccec85a8b1e6004c100972dfb60854e0a2d7f31d09a579ebfa125d4c44e7a150a89e9040f08c06f963624f5" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-musl-arm64.tar.gz", - "hash": "827bd3b6117ed674ae290b2b80598551b91e67766533895fbd375b121e813f9d7927797fc91aafe3bf2cac927173703c7dbb4fd18dcc6a2648bf1f973dc86fec" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-musl-x64.tar.gz", - "hash": "f5205bd0703a8c6db5dc4157849a734103bf2495ae10b15dce38cc03f12195b1a615367bc1f87a2ec4a05472753cd99858b8be2b74adfb93c3b558ebe1f045a1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-linux-x64.tar.gz", - "hash": "9b1573f7a42d6c918447b226fda4173b7db891a7290b51ce36cf1c1583f05643a3dda8a13780b5996caa2af36719a910377e71149f538a6fa30c624b8926e0cd" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-osx-arm64.pkg", - "hash": "c6705dbb484fc652659737bcd3c5d52289ab1103a6b89eb6c0097b147ee2f8d9a8d739d9256f4375215e816ab701986a5d2f8bd6185543fbe4b17ed3bd35205e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-osx-arm64.tar.gz", - "hash": "e5a853ee04890e0466489fc46e3cfb8c665aeaacda8646b6958337cb16aeb0edbcf6d4131d31510b12852262fdb466f4d9352e0818a7ecb7e00e4e3a5e5755e1" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-osx-x64.pkg", - "hash": "931ade855822419440150facb6273e535b4d21dbb6c049e5fa29f0ce3233c653b9d1f0d8b1d4e749ac4a3c6beea18351678c07a11f4b02bab2161cd74bcb27d3" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-osx-x64.tar.gz", - "hash": "f34a597910eccb84eec683f75f3ea8b6bdfc33a81388face050e33df679863465c905c0c99cdbfc54b3eb2b2a58733f7185a18234e562b1af5c925fa44dcb84c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-arm64.exe", - "hash": "8a986777778775c242ab6d3eb5370e89c7f0dc744967b8c70b892e5a8be1d6252ae29bb7521268c17ad7fdb5d5a62b0bf3df8f9e17a88d27f9f1f3422e1bafae" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-arm64.zip", - "hash": "43e46937cb6b82737410528750c7600e5c2af1c41fd292030b71247a30803a055637dfe9e9c108c48c01d8c5ab50dd8c146593f46bbcc657fa021d9733af8d1d" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-x64.exe", - "hash": "cc0e698533dcd41bea79ce37f62709d59d389726c0718d036ab1ca1420e58011b78e29fa0378b7ea265a87f83879528935a823a8a021c68764c11ad3fe10a135" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-x64.zip", - "hash": "3012d9403a30b6bc5dbc81dcc661d33c22284e6b7685949a521ebe7a96a5843b41bc0da659563a58f88a071783ba68df7c640f1465dfa6ce24bd78385de8247b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-x86.exe", - "hash": "5e9f3c52a790d206f5173d035da5438d8a90e20b824b3d69632974e5a0397db11946390f7645c9be483147d975d0609eae74b3af956103cbac995759d8d5c975" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.21/dotnet-runtime-6.0.21-win-x86.zip", - "hash": "8b78969edb2d6dbbe156f910d9a9c605c7e2618c159c1b5d7a58666f0b0bcc45f4a6e0acf3236b00324b684d2fefe704cdb4b1b0b6029deb2b59592f798da32d" - } - ] - }, - "sdk": { - "version": "6.0.413", - "version-display": "6.0.413", - "runtime-version": "6.0.21", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm.tar.gz", - "hash": "3268e0d401bb1d6b189b780a5a88502b3a1140c6d9176a98bca0c468839d1a1802f3c89c7559314a79b53a940cf6312caf2f11e494b9d98638f32e437a125e47" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm64.tar.gz", - "hash": "7f05a9774d79e694da5a6115d9916abf87a65e40bd6bdaa5dca1f705795436bc8e764242f7045207386a86732ef5519f60bdb516a3860e4860bca7ee91a21759" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-arm.tar.gz", - "hash": "6b88eca7b3caca24049afa1ec8f625ada07d3a32f250d19a0b15ef2c08ab2d6b9617b63f52957f165dbc58e51e2df2d22a12f1c9f9df452e58e3471fd35a349d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-arm64.tar.gz", - "hash": "794eae58a7ffa8c28b690dc950deb6603630e87e9d853d7ba566a4e7d87cc399229bf054239408b165599fb9e71ed6ae9c54fed02dcc0d830971df1dac89adbc" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-x64.tar.gz", - "hash": "6cffebca6fe29d1f848df9aa0b08a92d780680a02bff964a50d39919e9841b002fa954a8043d6a985885191b0bd55ae3bb7a6e6470a8d3d7ac98eaaed1fb4e56" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz", - "hash": "ee0a77d54e6d4917be7310ff0abb3bad5525bfb4beb1db0c215e65f64eb46511f5f12d6c7ff465a1d4ab38577e6a1950fde479ee94839c50e627020328a702de" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-arm64.pkg", - "hash": "f643aa993a0b52808b7869a13697d4ca21259cd814f08fe1bf0b9d80e4baab2ec0af1d9367eb9750c87a211fdab41f73f0ab5570d1970ca946acbb748a2b2bcc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-arm64.tar.gz", - "hash": "e3a24cdcb80b2e283cd93ebb0af4ad891ecb5f2002d56b82a379d5d99b934a58f5ae60d07d21052360f525692fcf7bfde0c678c5d7f9908101fdd2096bea4458" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-x64.pkg", - "hash": "4390ba65e592c4f770b247f11228bbd2ed70aab30fbe6613c2bf7ec0c7c54d09b5a47ff160d4424dacc59661613fd4c9460d62f141a64def02a7228dd160f916" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-x64.tar.gz", - "hash": "605b28135dbc8c34f257ea1d10d02edb16569957e554ecc49c2a9fbb4200960b2fe21a06f2b770a9907fa915ebef0e6260704cc9e05a81af931f10dce7f46165" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-arm64.exe", - "hash": "f48bdfb5759d8a4a57a82b338820d8191a4a8f25a1e5c81b82b340d7c781af1e7e5fdbbcdf47304d7a847a74b69491a16d099ca2fa197ad641a97a7c3a847fa4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-arm64.zip", - "hash": "4b503275d9dc8890e54bdfcf8608eb49cc227b603e6e994a89a768fdb9b0d65e0373f058f95977de372412eeebb33145e24e5e64e643f3911cbe1a308bc2265c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x64.exe", - "hash": "d3e8273d451b3bc15cd8f656ffdaaff4d1b0d17059ada578967063f4b9882b74926af61c6e0919f66b5bdeddd66e5047743544ac4768026b60de7a7591e1fab5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x64.zip", - "hash": "a9e1bbb52484ad0667b258451ebb6b47ce6c7b788c015aee8a86c5e0c4dcf4ee8c82d796921869d64c92bb2afef2c7ceea09cfe255d8519d48f2471a098c361e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x86.exe", - "hash": "e767cfa0664630dd325ddf045bbee5e562c8e966a588a711f0dfba0e6458430ac3f2062c400dabc9d1e94fe7a2a592340593f6fabbe75e951fd6a31cbfe10727" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x86.zip", - "hash": "8f680fc5d49ea8e9c0f24cf1fe10b0243233a40692807036d2a9b05d37f0b5c143bd5f30f7c93409550b01c566216152587d45942fda5a5bee60144cfdef03a6" - } - ] - }, - "sdks": [ - { - "version": "6.0.413", - "version-display": "6.0.413", - "runtime-version": "6.0.21", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm.tar.gz", - "hash": "3268e0d401bb1d6b189b780a5a88502b3a1140c6d9176a98bca0c468839d1a1802f3c89c7559314a79b53a940cf6312caf2f11e494b9d98638f32e437a125e47" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm64.tar.gz", - "hash": "7f05a9774d79e694da5a6115d9916abf87a65e40bd6bdaa5dca1f705795436bc8e764242f7045207386a86732ef5519f60bdb516a3860e4860bca7ee91a21759" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-arm.tar.gz", - "hash": "6b88eca7b3caca24049afa1ec8f625ada07d3a32f250d19a0b15ef2c08ab2d6b9617b63f52957f165dbc58e51e2df2d22a12f1c9f9df452e58e3471fd35a349d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-arm64.tar.gz", - "hash": "794eae58a7ffa8c28b690dc950deb6603630e87e9d853d7ba566a4e7d87cc399229bf054239408b165599fb9e71ed6ae9c54fed02dcc0d830971df1dac89adbc" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-musl-x64.tar.gz", - "hash": "6cffebca6fe29d1f848df9aa0b08a92d780680a02bff964a50d39919e9841b002fa954a8043d6a985885191b0bd55ae3bb7a6e6470a8d3d7ac98eaaed1fb4e56" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz", - "hash": "ee0a77d54e6d4917be7310ff0abb3bad5525bfb4beb1db0c215e65f64eb46511f5f12d6c7ff465a1d4ab38577e6a1950fde479ee94839c50e627020328a702de" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-arm64.pkg", - "hash": "f643aa993a0b52808b7869a13697d4ca21259cd814f08fe1bf0b9d80e4baab2ec0af1d9367eb9750c87a211fdab41f73f0ab5570d1970ca946acbb748a2b2bcc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-arm64.tar.gz", - "hash": "e3a24cdcb80b2e283cd93ebb0af4ad891ecb5f2002d56b82a379d5d99b934a58f5ae60d07d21052360f525692fcf7bfde0c678c5d7f9908101fdd2096bea4458" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-x64.pkg", - "hash": "4390ba65e592c4f770b247f11228bbd2ed70aab30fbe6613c2bf7ec0c7c54d09b5a47ff160d4424dacc59661613fd4c9460d62f141a64def02a7228dd160f916" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-osx-x64.tar.gz", - "hash": "605b28135dbc8c34f257ea1d10d02edb16569957e554ecc49c2a9fbb4200960b2fe21a06f2b770a9907fa915ebef0e6260704cc9e05a81af931f10dce7f46165" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-arm64.exe", - "hash": "f48bdfb5759d8a4a57a82b338820d8191a4a8f25a1e5c81b82b340d7c781af1e7e5fdbbcdf47304d7a847a74b69491a16d099ca2fa197ad641a97a7c3a847fa4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-arm64.zip", - "hash": "4b503275d9dc8890e54bdfcf8608eb49cc227b603e6e994a89a768fdb9b0d65e0373f058f95977de372412eeebb33145e24e5e64e643f3911cbe1a308bc2265c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x64.exe", - "hash": "d3e8273d451b3bc15cd8f656ffdaaff4d1b0d17059ada578967063f4b9882b74926af61c6e0919f66b5bdeddd66e5047743544ac4768026b60de7a7591e1fab5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x64.zip", - "hash": "a9e1bbb52484ad0667b258451ebb6b47ce6c7b788c015aee8a86c5e0c4dcf4ee8c82d796921869d64c92bb2afef2c7ceea09cfe255d8519d48f2471a098c361e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x86.exe", - "hash": "e767cfa0664630dd325ddf045bbee5e562c8e966a588a711f0dfba0e6458430ac3f2062c400dabc9d1e94fe7a2a592340593f6fabbe75e951fd6a31cbfe10727" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-win-x86.zip", - "hash": "8f680fc5d49ea8e9c0f24cf1fe10b0243233a40692807036d2a9b05d37f0b5c143bd5f30f7c93409550b01c566216152587d45942fda5a5bee60144cfdef03a6" - } - ] - }, - { - "version": "6.0.316", - "version-display": "6.0.316", - "runtime-version": "6.0.21", - "vs-version": "17.2.18", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-arm.tar.gz", - "hash": "498bac749688a56a902958ab905cd85ba4b628713655a6e135bf03f6089a4dd42bff271acfa52313936847966306de77f769f51e9cbc4d6eb4b64d83b2f0ea38" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-arm64.tar.gz", - "hash": "e298544486473fca05605931074656edc6025cf5429a455641627b054fb5f6a24d5626fe962413781c13b91c9b7f8cf27dfe2cf093141b259012c8640a79b0ab" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-musl-arm.tar.gz", - "hash": "04c7bad5edbf75c625cf377d6f7e6985d91bb33047e95f555ecd379554f2fb152a20facd0b543bdd9b96627f52999cc1a94c95150f9fb412f81696d897858e97" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-musl-arm64.tar.gz", - "hash": "7d29e8d8a0df057c078a5947bc31ec7c76a3fc04aefe65aaa0e9969913df97c1d4843ffe7cdc3e03317ecaca13a7172cd5102ab68a0226769aeb8dee97007ef0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-musl-x64.tar.gz", - "hash": "a3ec48fcf0cc05f9c6a16d78948524021c696b39c405c31df71311a7aab25004a17a04e62c5e15c7c75dae3caaf732f4e92169a5acc96850baba29b360d74534" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-linux-x64.tar.gz", - "hash": "f528bd63fe3529d17372c0f56f000198812e5b4ea14ad502c4be9a27632387df42a4b94a96f7255146baca4b468ef1c7e7211e44828b33c84caaf2bac3982ff4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-osx-arm64.pkg", - "hash": "f71c1a0280432ba3165e0cf14e768872e76f9c1a39048c5c251ca577eabda2b95a39629a5a6da508ea4a2afd9cb770f75595110a0e37a932db8649ce262720a7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-osx-arm64.tar.gz", - "hash": "94197a99693e96b0ed172b53764395a1f907be04ee7c1c01cff509c4bca351cc5e99ce750e67f4ae13f4c4e7621798c3213f197d9bd1d11bbcd684c3c04f9aa1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-osx-x64.pkg", - "hash": "aecf7d49f986add9d972dedb960c3490379dbc313c7b209096b5f832f93068fc737bac7c904410de243e7be7c773430f4060c88cfcd1b6e1c1377866031a35a6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-osx-x64.tar.gz", - "hash": "33a558e02d599f93170399dad2c61af6cca89214a2b012ba838e221d7209c4aa61c45e1df2a20e0844d97846ceb3ff455f430dc32f415110577c31e431746f4f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-arm64.exe", - "hash": "8cfb86a6cd13fd61cdfc65c364652fefc1cab089ffbcd947a6ff63a71574bf95b2df9e418c1132bdd626347e8ad3272763c4f01fe093ca813251379ae844509b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-arm64.zip", - "hash": "d480bfce2c44ce1334b31b6338ca8324e1099ed59c5f3d000284267ae31344b79e2a976a8178cdcb242762150f2793ddff616758c7df7edd4550f9c2d3ce3c54" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-x64.exe", - "hash": "7d0fb2ee972dcb4133223281f00a21f580d47252d5e640c3fbb6a67cea0b85120ea24060d641cd4fdeb615cdb2f068515b88156a115e6fd987d6d6494f2acedd" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-x64.zip", - "hash": "668fba8e0a4b0ed45c626d839f712dbf6750fecad8d55dade8abfeb015fd5d3a9652922b16f480275427cbf6a1da92f5637b25b268f4ea39abf5f017ab29667c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-x86.exe", - "hash": "15c5046fc6354565cd2cc74ecd1b171e2eed8b13abaf729876a752852a681ba36e9fc34783b8023e3c2f4b5a75e881b7df2736c3f8beb9b7fc0a55c5e16bd1cd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.316/dotnet-sdk-6.0.316-win-x86.zip", - "hash": "572fcd04a9c1de4156031fdfdf22f69fa19a31666665ae3f698c5b8286328ec3726ee68d167f8d81dc2eb84e2507681c4df6b14a76f97fcf79d79ea2307ef9b7" - } - ] - }, - { - "version": "6.0.121", - "version-display": "6.0.121", - "runtime-version": "6.0.21", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-arm.tar.gz", - "hash": "041dc5cb9a5afef4a096e870bd2b6b7e4f2799ba48b025e3107a9d54efa45a35d10040dacbe8c0ce1f4734b91c2d55b792d3e1cff8a88a683af8792091ac51dd" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-arm64.tar.gz", - "hash": "f654bfd76851e3373fc9cc2f71fc8c1096115e078d3d461fd438cc0e0b36d261f7f7c66e67ecb3db862dd75ef487e280976f98206fa7c45c8845b9f7b085f5ef" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-musl-arm.tar.gz", - "hash": "61aa0c2edc81eeba509518119c6d2c811c686f0d87825bdadc5e398a5df8629f27fa688d546a48bf867bd285c6884a6f1d2e5139159d6950525dc50c68226e8c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-musl-arm64.tar.gz", - "hash": "875d9e1b73ff4670e619214d019ccc00e67d72e8a2aeb7115f7110b967396fd426b4a3f3d623f52fd55dc5337d2cd937ecf69ecce74c9cc4dba207cf5a631ff7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-musl-x64.tar.gz", - "hash": "f4deadb4c2bab65961f7bd80e0d83f07736fb748f5ad063e0cc18188bf9ca72dc991a9a36cfacfcbcc3832a7bdac17b8954e33691334156976f5d83754e43a1b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-linux-x64.tar.gz", - "hash": "d3eb3b11588a504384ee435e583eb302d7d94d02fc50b253934dc7f12b87ff49eb90724e2942a6ef6c695df58be46132b1eaced63509984566ee518fa4bb55e7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-osx-arm64.pkg", - "hash": "ce5be5abe85db1220e84dcdf394f8436bd9c150d43e91dd50d5f5f99f325ebbca23f1c9ab5d50abe81a2e3e091591b3f7422fd0f0578acb998f1a9b9648eaf03" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-osx-arm64.tar.gz", - "hash": "e87ecb0787cdfb9fa2e91f7ebd1bcd9be239f246ef2d5750a03dd45d62bab357b82bcfbf5886e300fffc56abeec18ca8e567484fbab6a437cb33ab4cf90d2bbd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-osx-x64.pkg", - "hash": "25815bbe9ebfc30472226f5f2ad86d0015d5d785395d8601245bf548a57471180b04bd896775ec34ffb47151ee152012ce92343704afb565d44a51d81d20ea79" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-osx-x64.tar.gz", - "hash": "aefcf46b7a1e10f4bb31374d78f93321dc14e5b02745153fcc66a07882a625e6b7826b80ec66fc3bb3f35833a89961019b90e3ceecd64a93e7f1d18238a20641" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-arm64.exe", - "hash": "4c43238ca63ec79a41ccd714697a236d79baf584d0c365541128d48734c0c758e7de315ff1e744d6bdaf32f9d6b6b05580e2f5597cba66a9ae6ec039ecfee65f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-arm64.zip", - "hash": "c4bfbee934e82a4a74ae074eae3d489ec64fc0775a18332e9311d42f915d516e821e5f48968ac5f757985ee1977a35b3f0e6563b589318e182eda3ecdefd1662" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-x64.exe", - "hash": "de96667f3a3a284728e3e63348d9deecec5ee311c0ba4ba04642721071e24dd49de9aeee4e4772b2ad4f05701d16145868af3b52e3329075425efcb4fb20b101" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-x64.zip", - "hash": "10434a43d7bda8f029360348862e6aa36710bdc72013fccccf78a12477d10b6fc14176325ed84ee7e1136c3b17d56ed2572aa19e0a5779136e57f890b56d7529" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-x86.exe", - "hash": "dad618e1e1ef0737f27a617d9a09b188ea5e045cf13bdff26bf5b6ee814ee01fbb43ee31816ddbbb1ea4fe35ee7902305b31d915b8d834f851ffb4053623cdf9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.121/dotnet-sdk-6.0.121-win-x86.zip", - "hash": "6aa0c683c5baf72ebcc73335b33b42065b6e6786d3b7ed35eb0b886cf4bd3fd84c3a76adc056ef50237374a8a76e83a552e9d0dfcea22191fa7d30be3f9b729d" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.21", - "version-display": "6.0.21", - "version-aspnetcoremodule": [ - "16.0.23196.21" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-arm.tar.gz", - "hash": "11b3db008c07f4ade98307edeb90de269c70d9296c2a0ea36628c4b46dc27ab5f4c0bc3a90e56ad55dacb0a88b7ae6a38ace3bb3d1841ae8c6428a3822da2b3d" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-arm64.tar.gz", - "hash": "3d39f458831c2e2167c06eb85205a764e9aa497ccc26cb19968f03cb3102daaafde391a707f08c3010bff95cfc0e9586ea97c0fe7d8ef885b4aae009748591c8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-musl-arm.tar.gz", - "hash": "fd19d959470c6304237dac0d20082391fcfa123aa604b734fa152a12695acc73647605e521badb5b49c4968659bcbba1b5aff60ca4a279c2d29535985cc51287" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-musl-arm64.tar.gz", - "hash": "ee720c88d3c77c9868a427e57a09ac57eb0c8529a281bb16cef6eddf574ef5084de9cc80df0f6c8371717c2df2392d11384fb0eb682909f3a5a1e2e6849b0ab9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-musl-x64.tar.gz", - "hash": "3beb72a24c2e2b91db929da38a3f0b975f8756f67a8302964321bcba93bdfb8bc407615b046a98b2daa8a755a3eaf6c8bab441a96814ccc22f8ff1753a7774e0" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-linux-x64.tar.gz", - "hash": "3a74b52e340653822ad5120ec87e00e4bc0217e8ce71020ad9c4a0903b87d221b538c3841949be2ca129a45f8105def0ea5152e44e7cef8858958ae04fa0dd65" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-osx-arm64.tar.gz", - "hash": "bd1cf2252d61ab88e39d7cf6e7b57168363f599de7e2aafafa9f2373976c97653e83cbfff5d1708276b6503f8a21f60af8c8601835c4d6e0b603b3c4bb90902f" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-osx-x64.tar.gz", - "hash": "b7d604bc11224b32960f11ed2332cfe5cd595655dad5c2cae1fba40e73ec637f9f6e4246659296d90f544d7aa7c5248b0c7999cf82b4a325acef7368416c1dde" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-win-arm64.zip", - "hash": "daf0f9596eb65dd4ae5b7f4ff910ae0286457b8f225515b5871dcdf8d54c1a82ff78cc7686816f8e03eebc9da150345075979155cabf1ff87c65f0f0d0cd71b9" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-win-x64.exe", - "hash": "e50f4f1406c9a6a59f37564156a646ba82938bbdc6270654f5772a40658197ac7f25e79c5a1be7de36c87da6c68330278ac70b3a1aa624cd56733eb8bcbbba69" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-win-x64.zip", - "hash": "5a9d9d489f1f1d289cf38ac7a2ba90729af445729bb6d71a8c76830a28e9592c8d4733ee7d3a029e06c17d23cf89ff29740915758cb848727caf7aac7b59cb1f" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-win-x86.exe", - "hash": "f3f63a6af46a4af29188a2e35fc16e7a065e3a369ec546a41e5ac05682acd9a60363741235942f15641b21b609466a2bcf34905df6b4fa8dfdda521ac9fe3734" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/aspnetcore-runtime-6.0.21-win-x86.zip", - "hash": "759536157e403112abbd857c4e084fa232c16d0a07721b4b4c070b7376deccb52cb6200a315587ef8dbd97237ca2d59294403a472f2aa258b528bc562931fd4f" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.21/dotnet-hosting-6.0.21-win.exe", - "hash": "4b8210de16166d2431692e9a5fecd3d3fe2ddb3db4ce59fb4f2ff0cb4c1063fc61140515b0c540eb744c336d758f0a2d4d5adddeeef113bd9c966de33d955025", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.21", - "version-display": "6.0.21", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-arm64.exe", - "hash": "f6ce5d828c9f4ef593c9b40bab2210c689cd331d11b972e32fb089e2064bcb435fe5913e8b4de248ee1d94b6bb25df75712fd7832bbab45e9e1433a57fe446c2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-arm64.zip", - "hash": "6da311ec4c2640a94c2f76ea8fb3fe0cb745076d2d8172a72e9c58c01a2f1f1c9afa84c95ce108dfaf5d0b987afdd8284fba5d487607aaad04c32337a86f83d7" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-x64.exe", - "hash": "49192c5141bb04dc19483e8b1adec9c6f56fa54ef8c55e2f4fa4aae73abf9119bb7b1dff3d8f9b3307c50de8989669398a5f6d8dc4323b81b6a1def5ee6c6e79" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-x64.zip", - "hash": "2354cbf447b7faf180ab5c6836c51d1c9f6458e77a0da2f0b1096d9307262651ca0696bd9dda12455492cf739b0465698a9e2dedb10c7298822e57e79ab38ed1" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-x86.exe", - "hash": "e1a19dcb47dce660d17d459c4283b5f44da4d62c88c6d7ac967d791a6fffb10ab3946b1637423a19615190e85d3d88582d9c786d867f20b7cf0873a486ca95c3" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.21/windowsdesktop-runtime-6.0.21-win-x86.zip", - "hash": "1f5b9b6069acf16d7b336e4be798c8846ec5da4c680a9cebd7e4c79922e197cb09a88b938581791cd91a887cf47f67bfcae09a771b2bd7bb1d9a155ba90e00f1" - } - ] - } - }, - { - "release-date": "2023-07-11", - "release-version": "6.0.20", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-33127", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33127" - }, - { - "cve-id": "CVE-2023-33170", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33170" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.20/6.0.20.md", - "runtime": { - "version": "6.0.20", - "version-display": "6.0.20", - "vs-version": "17.0.23,17.2.17,17.4.9,17.6.5", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-arm.tar.gz", - "hash": "48dd2c78cf873c87b2baef65211bb5af293bcb23248d7d98e8c6fd5e3c7cdae6fc7ce8a8f857b11580a68ddb905825860645aa26ae123ade7ac9ed093d4e2670" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-arm64.tar.gz", - "hash": "bf9cd8b13ebe15bbe41d4f3229cc902c3de2eb4f0008f4b239f3d0ec5aa01254adb8a98742c0e32e98f4ba95923611ed9f54963225b462a829c184301bc98ef1" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-musl-arm.tar.gz", - "hash": "092c14a32269fd19ad412e88c28a66e9e93fc15e5def97549504640bdd5fe12a740c34c06b3c2597f1de43825dc9047493b8e01ba35f20945379e0c6483ff639" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-musl-arm64.tar.gz", - "hash": "64e16eb79ceeabf3510689ff8390a10d487a89308aadc1c950f4b1cb6f8fcdc95c477508dadc342180d954aa317a09e71aab73d1abba3c5a91d15837ea56bb1e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-musl-x64.tar.gz", - "hash": "373e08d7bfc8cf990305f72dfbf3e7b5ab191809375d564d55f0cf1351ad51eb1a5d6bedd3090acb03054ab10cf0fad7b92f94452ba1fe02cd10fdd68646aba0" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-linux-x64.tar.gz", - "hash": "3688d7170a59015c36d6a5532db67bc22eff66b3eb0a7fc28e1f425791e27a5f467bc7dc593d7f455d72d08c7d27bfcc92b3c8bd30ec3c7c583a8aa82b5afbac" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-osx-arm64.pkg", - "hash": "88f1f17829789e078d0b2184537911af9f80ee4dccc5f75a7229f8dbd782a3000a0790a99067b5940f710cff7adf44937366fc9e787cde3b30a584453fbaf741" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-osx-arm64.tar.gz", - "hash": "27297a16bf1eec0e5a4154d8575b66008227a595cdd77277ae9796a53522b143ff51e063a7aa53a6c57717061cb2e5836c314ee43eeb86d465341fcdf834d773" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-osx-x64.pkg", - "hash": "cbc1f38a3611893978af15d5303c30796440fa3d0610690ad60b271594e4c6b773f4314d4f878761fd10fc45d98c26947f23d0233cc9e771db1ecf4f336c0fbf" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-osx-x64.tar.gz", - "hash": "f21cb044df7d1f57ad45b7ed65893a103cd6fe15b78ed3865380044207136d42deddde29872458e70fae9c8e7f254dd032f7539b4b9820995a075d92b907d49f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-arm64.exe", - "hash": "f1ff435a82d37aa922a1a3cb594f7fe073a63677cf04fe40b160fa4be522c7588123ced159f277f3138fc504bf4a8465c30aa4c43dadc5abc6eea4a5ecb03ce4" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-arm64.zip", - "hash": "308d680fe33747fcb1933b939ddce709426bcd3e78f46e3eb3242d4b1d84c48088892f746c355f10eaaf0f97efb8ec73f0382126f91d4f8c89561baefc3a9565" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-x64.exe", - "hash": "e57c9445e595107a5d35f1d885d2c36c0c9779ae0ceb942244a942ccfda849e7ce089e36d77ef6a9d705501b4764ffce4662ee9dacfe89dc9a2cac636561e64b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-x64.zip", - "hash": "8bc4a152d929df153bb545cd74828a450fbad7c4a80f305e1b922c7e1c4856e7627654a9a26e4459dfc1cfff048bcb17b3cd4f34fde3d600de16f5a4d352153f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-x86.exe", - "hash": "c8bec3d8b797003497c6005403415b48c16ff1dc55108a2d77c09331668e2a60f17c84a4b34e44e20b6bb0b60609a715eed7eeb79e4103b8d019a4073cec5222" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.20/dotnet-runtime-6.0.20-win-x86.zip", - "hash": "40a8f889d1db8672bc81323df37fdc186fa3f8eee1e9fef6a9d0c60632ae363d4f22a940eb863d63307e1e704687d730560e3a01312365ca815d1913cfc2716f" - } - ] - }, - "sdk": { - "version": "6.0.412", - "version-display": "6.0.412", - "runtime-version": "6.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-arm.tar.gz", - "hash": "4a22174875ae06a48485aa42353ef61e6c424c77d34139bbc2ad5dcbf72bda6625e748af98df54e7677b1b3fc804267b8828ab1c5caa45a693f3f7bf4d6a3306" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-arm64.tar.gz", - "hash": "669c19665f657de00fda41e5ffff8d80395618dc1cc7d6ec50cd06668b135b5fcca193919172c65394210b7c060eae146fd6d8d57deed889ca8fafddca66d06d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-arm.tar.gz", - "hash": "8e39ccea1481e6588e9c2c52292d8a9a66615f7fc73f91a30b350d854bd3ac4d5245c75fdb3de5877f6eda73b2bb5ad1696ea925f7b9d14347964603db89bc68" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-arm64.tar.gz", - "hash": "936a120f3f514ac20c1d616400d9655b1f6af75b7e026587c9598f07e213176393bb3a590615649604956af6f7dc35685665474cff900f0c0bdbf41b5ea60cbe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-x64.tar.gz", - "hash": "0cc7a93fbe53b4b17e877e402386e9b552ea4c9fcaced8f138e149403db1f3e358cc1be86d2a20408e3c3f82045bf897e2f6ccf0225cca49c834a52697f8d412" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-x64.tar.gz", - "hash": "ee97aa5258e05aecadc66e844fa8eef97d51e5035492999b974cc8272e4db1a862a1f88a925f38be9e95c71d2e961b56459dcd614475895df608945c8057c311" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-arm64.pkg", - "hash": "a6a2a546466e542ecd115ece22ece78cae1011625114126a46d3d0d611f31855e692116fda52e80ef0133f520f89d92e5349fd9e6d528c42335917517e5ed035" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-arm64.tar.gz", - "hash": "3086e027b94ab8bc5b27e2dfaa7d16484efa2f6a7c1e291f420313021b3e6f65a5208de4b0d86271c3b83d05d784f29e231176dc6f5ba04e567336b7d7b7b871" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-x64.pkg", - "hash": "36bcee4d85f3f4389468b35b246957adcb075a8ad2388608bbf2417b2cd92791fc8600cacc4ed264e72ef16245026707c99b62edbba879b4cb74a719f596078f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-x64.tar.gz", - "hash": "0aa713780c4b7f4e0ea72a0813715883f57174f04386b85f3a6dda1a66d9cf6d24c76cd1e0fc0a0991b80b7868b39c719d5b98254e4f683b6bc89a9b4043be9c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-arm64.exe", - "hash": "b2c071f0a805b68aab8b017e71efb7b90057d40f0ef155539e80d3b197c280ab3e2ef685cea33c6c5bc46471f4671500752ab158b98333bc3a0aa8f9716f647a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-arm64.zip", - "hash": "0591fc394ca5e8cd52d4ee7dd6884b57b0d46678bba4cc95e6582eb091eb34b53ee7f7fdd8d1aee3d6cfdeb0a09cedb66761852fc4d7a8954e0821b35f6305f5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x64.exe", - "hash": "7465163a2681b37bf164c6a257fc72e3865c98ed56a6a1a378302c91a0482a9c3405ca5adae46d3cd93859751b8724a0f67aa942e8a982e52a65306556c2a3ab" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x64.zip", - "hash": "824f5dd4390cad4ac7ddc344a6cdecda3ff9f19adef0ac77430302a2fa8df57e1e044c2c3ea83545ff25223b856873364239067b448707bb009788dce7f0c732" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x86.exe", - "hash": "6da206814c925456e00853d9697c11f8429ef2f9488a79ebf7888109e56429cc44a1ec5403b4bb3c0dbe7b4234d2b509d71f02b2cc4d14ea852d0644a388c969" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x86.zip", - "hash": "b25b8e7aed9996babeffaf5361c6931c6742a37777589a4bad313517082e9d7145839d3fe18f847c52aa58426e5701078f100e5146c509877940b395a5b3b718" - } - ] - }, - "sdks": [ - { - "version": "6.0.412", - "version-display": "6.0.412", - "runtime-version": "6.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-arm.tar.gz", - "hash": "4a22174875ae06a48485aa42353ef61e6c424c77d34139bbc2ad5dcbf72bda6625e748af98df54e7677b1b3fc804267b8828ab1c5caa45a693f3f7bf4d6a3306" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-arm64.tar.gz", - "hash": "669c19665f657de00fda41e5ffff8d80395618dc1cc7d6ec50cd06668b135b5fcca193919172c65394210b7c060eae146fd6d8d57deed889ca8fafddca66d06d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-arm.tar.gz", - "hash": "8e39ccea1481e6588e9c2c52292d8a9a66615f7fc73f91a30b350d854bd3ac4d5245c75fdb3de5877f6eda73b2bb5ad1696ea925f7b9d14347964603db89bc68" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-arm64.tar.gz", - "hash": "936a120f3f514ac20c1d616400d9655b1f6af75b7e026587c9598f07e213176393bb3a590615649604956af6f7dc35685665474cff900f0c0bdbf41b5ea60cbe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-musl-x64.tar.gz", - "hash": "0cc7a93fbe53b4b17e877e402386e9b552ea4c9fcaced8f138e149403db1f3e358cc1be86d2a20408e3c3f82045bf897e2f6ccf0225cca49c834a52697f8d412" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-linux-x64.tar.gz", - "hash": "ee97aa5258e05aecadc66e844fa8eef97d51e5035492999b974cc8272e4db1a862a1f88a925f38be9e95c71d2e961b56459dcd614475895df608945c8057c311" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-arm64.pkg", - "hash": "a6a2a546466e542ecd115ece22ece78cae1011625114126a46d3d0d611f31855e692116fda52e80ef0133f520f89d92e5349fd9e6d528c42335917517e5ed035" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-arm64.tar.gz", - "hash": "3086e027b94ab8bc5b27e2dfaa7d16484efa2f6a7c1e291f420313021b3e6f65a5208de4b0d86271c3b83d05d784f29e231176dc6f5ba04e567336b7d7b7b871" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-x64.pkg", - "hash": "36bcee4d85f3f4389468b35b246957adcb075a8ad2388608bbf2417b2cd92791fc8600cacc4ed264e72ef16245026707c99b62edbba879b4cb74a719f596078f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-osx-x64.tar.gz", - "hash": "0aa713780c4b7f4e0ea72a0813715883f57174f04386b85f3a6dda1a66d9cf6d24c76cd1e0fc0a0991b80b7868b39c719d5b98254e4f683b6bc89a9b4043be9c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-arm64.exe", - "hash": "b2c071f0a805b68aab8b017e71efb7b90057d40f0ef155539e80d3b197c280ab3e2ef685cea33c6c5bc46471f4671500752ab158b98333bc3a0aa8f9716f647a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-arm64.zip", - "hash": "0591fc394ca5e8cd52d4ee7dd6884b57b0d46678bba4cc95e6582eb091eb34b53ee7f7fdd8d1aee3d6cfdeb0a09cedb66761852fc4d7a8954e0821b35f6305f5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x64.exe", - "hash": "7465163a2681b37bf164c6a257fc72e3865c98ed56a6a1a378302c91a0482a9c3405ca5adae46d3cd93859751b8724a0f67aa942e8a982e52a65306556c2a3ab" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x64.zip", - "hash": "824f5dd4390cad4ac7ddc344a6cdecda3ff9f19adef0ac77430302a2fa8df57e1e044c2c3ea83545ff25223b856873364239067b448707bb009788dce7f0c732" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x86.exe", - "hash": "6da206814c925456e00853d9697c11f8429ef2f9488a79ebf7888109e56429cc44a1ec5403b4bb3c0dbe7b4234d2b509d71f02b2cc4d14ea852d0644a388c969" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.412/dotnet-sdk-6.0.412-win-x86.zip", - "hash": "b25b8e7aed9996babeffaf5361c6931c6742a37777589a4bad313517082e9d7145839d3fe18f847c52aa58426e5701078f100e5146c509877940b395a5b3b718" - } - ] - }, - { - "version": "6.0.315", - "version-display": "6.0.315", - "runtime-version": "6.0.20", - "vs-version": "17.2.17", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-arm.tar.gz", - "hash": "486f2eba046ff10a5c35a1117bf384039d6d9e666c555c7a958d4c04714ba0b4fc68e0bf20d9a0246358df1a2db5921f00bbdff921790b382197dd2cc13c43f1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-arm64.tar.gz", - "hash": "14734480bb92948c811deefa447075478bfd9ac82c856a45036ddfe3bb3c45bae6be57aa9b61afd3a68551de0e4facaac4872007ac835a98b53c37f2206cc4a4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-musl-arm.tar.gz", - "hash": "f8bfbb74eafc490c67002ddf6ee2be9049b8bb3f94fc787aceaa4ace67712b816ca6967432e55314dd4563907d0485edb268ee9da508c358217e02d372e1d378" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-musl-arm64.tar.gz", - "hash": "69165b4e66f5c723a6b36cbcee0c427f37cbd01e90c20c7789a54ad65c7f23a0601f0a1f4364a42d1b946d9952123bda4a114d09ce16031c7b359c100bb07e94" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-musl-x64.tar.gz", - "hash": "5dd90ffb508e8fccc1966886c8d3f22a11d3a3dd7f3e224e010acea26a843fd9877dcf6ca468fb9c5a6cb7a7b6fd0b565574f3499005638b985c0eb1e2895979" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-linux-x64.tar.gz", - "hash": "87a1004bb9acae2571b70203c1379b297adcad5ae230e9736fdb82d2be64df5627ab8680b12b9652da24937264a1463064a901425445a75691b940f0e53b9dde" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-osx-arm64.pkg", - "hash": "95825a77065243a6b42285bc285546880da94fe9bd76a2720ae6e4ef7c7a520009eb8bc925e2d28fb5638b816986ce2b038111aca9f9c03cbcca308f0d0e0fa1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-osx-arm64.tar.gz", - "hash": "f4531255abb9f0fbfd16024506c3df8c8779964db300734fcb246c22809387f380b6c2eb2743152898b95e2afb5c79d6fa7e68988ab785535a17283ca799c08c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-osx-x64.pkg", - "hash": "189cd383f55e2707a9ffef1c79c23d3f8b6c078f4e4612a8632ed4f738e3045c978790c1bfa4649fa8873ef3d58ce222643967047fe09cae1dc11a4947177491" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-osx-x64.tar.gz", - "hash": "e2ad9e14f84c44c99be876fa38fe5a4da9d55e8cc90d35c353a37192df779b75f19982e1a119757a45906a87925759b3e2c151add83a99a37abe350ae95d2446" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-arm64.exe", - "hash": "52e06697c883c7406de2a8dc4f5a4bf06e9c40c42b36c19796a8e9feb02b156833869ce25311a6ae59457dfbd3478707473f4338f24932d6ed659f894287baf9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-arm64.zip", - "hash": "bfea4c09295027cbf190db188dd9fff9794436d04a4388891f48f9d81dad104c791d9f074e7d5d6764a65c502c632a33c9e211fddea1314be1f49e91a8950e21" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-x64.exe", - "hash": "b1912c6ea5372b0ee6bc607d7e281d5719e2a31d58cab571a4a6b0501d501e3eac3d83e9d61c6cf0ef1a7c05df8f5a48eb28577068b22f51288f07899899e8bb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-x64.zip", - "hash": "34ad781f16fbc8b238ddd779dc115feaea7dee0de6b4e09e771b6880e7dfa41598a65cd6ed1b95a2dd69f733fedd5daf2aa767c25b0a23fbb57743102757da18" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-x86.exe", - "hash": "2a02f33ea752afcbec6a1b69612c25f5ba8b61b59395c53a67b968c3b57520bc1c93f436c6aac6b3b92db5710cf0a34be572a91973db6ebd61ba053f90ededd2" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.315/dotnet-sdk-6.0.315-win-x86.zip", - "hash": "2e70676106d9f6e4c588b621e0546372a0ba21844540a5e66abef3c54cc73718767a4cd7713c65e6f47df13120bf9a957c9aa380335f4413b3d3a27bd022ca70" - } - ] - }, - { - "version": "6.0.120", - "version-display": "6.0.120", - "runtime-version": "6.0.20", - "vs-version": "17.0.23", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-arm.tar.gz", - "hash": "37e2918fcf1abee5ca7d6d229887cde20d6a6a078a81114b2df5c9a146e6514208a3b2c8aa64d2ec4c9578ac80dc3adcddb6441cbe6dc2e83d3e75344473adef" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-arm64.tar.gz", - "hash": "6b9d4d65a1a9f9fedb8302254455165680e1fde4620880dfe051818492f98f1c404cff682946ddb251be8063a6f3b5ad3c22be6cc3aa8df940526818e4d51ecf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-musl-arm.tar.gz", - "hash": "81d3e63983f2768e31fd3aaba35dd3f5a6d5321f830045fa8f000089439be8f4e9a02b940c325c2e7be1d87709fd5890d76230ce399dec64ab6fc60d86a777e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-musl-arm64.tar.gz", - "hash": "c3e9a469346f48ab27042ff96a467d19a5f71d928233e7feca3853905aa27083ce93432b2126cd5ae8f2d95728c747afc69ab67605dca0248e568bf579c71ada" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-musl-x64.tar.gz", - "hash": "9fb8f03c764305a78d180b8f91f17754ca28fe006cfc21ea8fcdc2ebfa94e19502b25d3a31263dc505043cf9be30c1628756588177c353317d9303f280880d16" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-linux-x64.tar.gz", - "hash": "1e643a659ca53aa0e6e4e69c215d07919d8c611532970094d0460aedbd08f790b455d88e5b3e5ca7767b69af98be190b2afb8c959dbe9ffef205b0c910684df4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-osx-arm64.pkg", - "hash": "dcf30348098dcca3634982147cc232f030d6a3899157fa82e5727bb366da874e9989426f1a214e92a904131652c6f324f1572067e174a342983eccd067c9a657" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-osx-arm64.tar.gz", - "hash": "a3c1d976d02c0716228e4154aa793c221656bbfbd244adb39ec9735fe404f9b0680d60b40252527b9a89ba0489387109ab49a7e4d2da0035ddbdb0ad4e7c12d2" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-osx-x64.pkg", - "hash": "1282b7fbb34a4f110ff7d788a0575d93b39f855981d89808cd61f9abda24bda8e88e1e68aa33acad7d9b7df8c4ec915880b275732f9e9ad406353b7f8773ba63" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-osx-x64.tar.gz", - "hash": "6509ac01e97c2426cd1a2812be593bed80290e38dacf9304f38fe92c9d18c6004d1951b18f14aac689a85278c2883bd9cce2dc3ecc4daac06338b00b8b780cb0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-arm64.exe", - "hash": "6ebf85517ad4059b510ea93f36fdf275553b77082cb58fc105937717ef488be55f2270ddfb407148ff710295c3213dcd0dadd27bcbc2165b00ea4d4ed3e8471f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-arm64.zip", - "hash": "fd4ccacbf3748a1580c08be36a4ba03c45fb0db2f8ea6199f6ba2d3b264fb43051501e21cd45b2cfa1abb7405f557be5d0502f065b8272b25e4445b03d3c2745" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-x64.exe", - "hash": "bdcb4883b0c8d384bfbd8534f30ce2669b2fe0e1ca71c05791e22a6cb74855abd651c2129d90ece3da9e41c9c986bf9c69ef9992c8756433677aa9726dc889b8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-x64.zip", - "hash": "743a3c972e16a8ae139fd3f828ec7e2d3bc6687a266d2dcfb0f6373afcfcd1f88cac4b9e410461fcb341a34bd772e41c688a459c94bdac26c22f99b3e8e85af3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-x86.exe", - "hash": "00db86bdd488674dd6f616dc0de21bab8da35b03f36339b18b563327d2783d1a11a5b8fc41b137028a9ae6b1b007eba7b540a3c5ae0d2fdb4e43280c17173f7c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.120/dotnet-sdk-6.0.120-win-x86.zip", - "hash": "b3e9ce2918e6b434a6acb6a67f080d42513c1105ee635ed2543383935bb9121c92b77278e2acfaf2ab71205377077e3a81f840b15513a62a2c2ed9e8a86e7f77" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.20", - "version-display": "6.0.20", - "version-aspnetcoremodule": [ - "16.0.23172.20" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-arm.tar.gz", - "hash": "5ef3e8a629e5759947e9a7260c3d4359144bf02210831c23d8595c4176cc55419ea5f9c222439d79a6d1dcbef19095a0d2594d65ca09548869f94ec1ca95d7dd" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-arm64.tar.gz", - "hash": "83b1825c80cabfa5bbbd8c3e69b3525fa5cebef773957f96fee9319d60285155817973a176d47348c9b22bff5af24044f0f06b59229c067ce8adad4f3d4123de" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-musl-arm.tar.gz", - "hash": "87584beaed502c020849337a1ba059eb7aba1dcf880cb3d56f4d1cd70c452645f053dcb64e0da0d7bdc58b28c84ab2110a7b1a32bcc0616bb4d2b3efcf1f68d6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-musl-arm64.tar.gz", - "hash": "18532b56c42ea75039e4194ff0b12bdfecf8dd67443c50f22102e3bc5449b25dce15d1fe6fb330a8756d510fbdc257225c7e3ec86b93e6653442f19a0e4ebf46" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-musl-x64.tar.gz", - "hash": "fc615ee21591bffa97c5eec8c34aacbcd8a769d6e4b245578add58207f13bae30e70d93b89052493e228ab32eaf2fe529c04dde5a0bac6249ca709fd644009b0" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-linux-x64.tar.gz", - "hash": "891bad6a52a7bcd5afa2a784fe68044d282f6d53fedab4bde6dff8d7d2138a484e947f7a6be156094324b37e9d7e07e87a67622bcf2ea197c2924389edd1d185" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-osx-arm64.tar.gz", - "hash": "fbc4033b79a651923dc205b923ef6c9ef048c862113ebcaeb8fa6388827245039369e261e89ac371e895c538aa78fdfc07a5a1c1cbc41713f54a15bdc0ffdf5d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-osx-x64.tar.gz", - "hash": "5f6efea102c20805430815228070461216d8c5b928d090ec9d6d245eecbe23298920d1834276a0ce77bba524a14c83d97464580c72660bf3a2367a02f1872e31" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-win-arm64.zip", - "hash": "d5c042d7d63a5262761ce955be68cca9f39e17d7d9e7cbdc3659408e7fff27c62c65eddd7401f7affc819c246b4fea19a2e4bd815c338babc9d177affb7cc67e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-win-x64.exe", - "hash": "94099d52743928ce6f659865ca519e86131305750b1abee13948596e51780c91737213b5785661a59abcbd7ed5ecca2dd976ea056ea14c46f28eacac59974705" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-win-x64.zip", - "hash": "b3b837fc32c33196fc9b5332f258be80b651db2393e921f1169b8703ab2d2507ff4bb34057f43878a48bae27e82d2340cd1da94e9a3b6ef6ae8577a89e3f9345" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-win-x86.exe", - "hash": "9b10acce1bdab389e4f71dd72c3ff79aee0abd6631425162e978218c2ad03506a99470d45a574c016a03e395084cef34e4be850aa3c091a20e765f78d91c15f6" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/aspnetcore-runtime-6.0.20-win-x86.zip", - "hash": "c41bf936e6a677ec138d81b794c12d93bfef2a2efcbbc46a1a5a3206e20d80b044eb0d50badfc02fa8aa49b687bfb969a70e9b617763be6a9f8eafbb8c2953a8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.20/dotnet-hosting-6.0.20-win.exe", - "hash": "0b1d92a5161c9a2665085c90fc48567e0e9b92973b4221ab26c215d5520b3a83dc1014102c31cf99e67a875fe4f0069dc27a5b5b7ce08b0621230bb78feee88a", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.20", - "version-display": "6.0.20", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-arm64.exe", - "hash": "a5798928573622d3641ba14889809cdaffce4014ff5861da205d8da71618a77106e87a25e28913911f35d6744cb2ca139686d7e1a84e3c707adbf5d29616f4d8" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-arm64.zip", - "hash": "aada348b6fcf8c681d5cf49ef211f2c7bab88acc84e74efa8f9bf7a55cba7cb3b791ad360e719bf4f230cf00f7d040da2445e167bf31bfbb4df1dde0b506db2d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-x64.exe", - "hash": "eefd2e2dabb633b0d6c7e523dbdf072c9634088cc6d38c63aaa17c004e38366bcf2dcf5305093b5279a7366c11e177366ceb9d48c14600e140f2efef6caa6308" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-x64.zip", - "hash": "4aea0d7aaf77ff9b43f31de571bbf979769a5f00cb652d346cfb0c860a12d078422c6b195c5965997bea1aec0c30633874d409cbf2fe3f4e6f1b5e0328df75dc" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-x86.exe", - "hash": "d9288d30122891edc2be5a9e65e00bcff678ee1bc9b125f7e5cb5aa1df91514a8f409f5a122e8751bbb122b35450b69c796ec94027e4a5c443c645fcb8aac29f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.20/windowsdesktop-runtime-6.0.20-win-x86.zip", - "hash": "b38adb6ab546897a6af0b85e8f5910bf1202510b01a99ce77edba59a0027eda61930f432f75daf339f607afe978c15893cd7d40d47fa33ef078bd2fe5eedc75e" - } - ] - } - }, - { - "release-date": "2023-06-22", - "release-version": "6.0.19", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.19/6.0.19.md", - "runtime": { - "version": "6.0.19", - "version-display": "6.0.19", - "vs-version": "17.0.22,17.2.16,17.4.8,17.6.3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-arm.tar.gz", - "hash": "d1ca1d87c05c4e5800f06dffce0cea5b095af1348898676bb7e64ba3b7d97230464211279e9bee3b52be794f7990b258f8f474baebc7470a3599b2f1090cb7e4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-arm64.tar.gz", - "hash": "7698ae2a9f7bc32f99cb2a945cc58b47e173720412604807c09c682cc03edec8e4a7cf19d73e087733437da77e7f05ecc8618296f7f9165ac8ff5dfe51dda346" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-musl-arm.tar.gz", - "hash": "efb0b0ed5b1b518ada7ed309a9bb1d758a66ab95ccf150db20a8c329ea927ecbecf8916fb479710095c8d0bd692e58d1c6f5de993d141848008c5bbfa0bfc013" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-musl-arm64.tar.gz", - "hash": "2f418a830cfbe3c2b458f3ca4c8db5bc0200c8971ae8148dc5810a537c05b2e298b6373fa20fbe796196aac4954383b8c03a29e4ba3cabe35ad2eb0c1700a576" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-musl-x64.tar.gz", - "hash": "ef1bbb20171723d9fc4b45a19c4d1bb0ddcdef362f006c1cfd8e9b3b56ee23a749b2c571c7ceacc763e028b91a6fb4b4b168129ca45b9f4117e2ae6bc27a0746" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-linux-x64.tar.gz", - "hash": "6e8e1db8b247c92c8de4b476e06ad464b0bd664919394afd5fb3962db477490e54865abd2510c29457efdef3be23f0ea4683d6caabcc74a6d7abddce4b4a154d" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-osx-arm64.pkg", - "hash": "2512be3c37de3ff6ab605dfb371ea055c6afff8e0cdf487a77a71b834286f4978385a01b4e838ccdaa79e72557cc375de9fb12118033711b363fd22b1a5245a2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-osx-arm64.tar.gz", - "hash": "9a7d0d2c493dcb0cccfd2ff9dcb234a6886f7c261a1a403aa896ccb3e6d76be6d7ad865e18e8f040f769833cc41f1caad7cce2909f9c4ded5ba3bba219c76071" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-osx-x64.pkg", - "hash": "36b6a8d27e973c08b789e5428d7d7e2fef9da4a3303c8baa9cb6e4769a6b2cf00c8993465475625f863a09e1d594a8263829da1c2ffb5eed11c51d0d62353cdf" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-osx-x64.tar.gz", - "hash": "c0b7738b198789ba0fe4e2b301aed2b129eb8b09e826c35b6e56b9a205d4d7650841cc0870bb3629c3aef58e03b59cbc37da6495bea4ad674b62d81240639b4d" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-arm64.exe", - "hash": "6a3c96ac49595b0e8fe17e8c82b3425c96675db5e634d41f7454458afad7feb93de6ac3293ae775875ebd1a5f9dd64c265622b7fcd7d4df6abeff3ee3901afc3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-arm64.zip", - "hash": "20b912e0553ca7e391f10dca3fd2e45dc840b6edbcc1cd70a98b1b40d88165da18049600bcfa6443685ef1f8fdebbfefc8d702d2ea13e1e47c2cf7a7a748c4ce" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-x64.exe", - "hash": "42c0df6a0d852dbae1305ae32752a7f9982e9206a87588f56518531432e69dc7af3c89110f9074210c209b31712d736344487d8576c0271cc94258eda52fcd78" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-x64.zip", - "hash": "93f3b6061bee3326d591dd257c594c4aecdd7cbd76c3dd722253141830221ae78bd3e45e846139182ce9e01fe53f89e92c5887994e54ad639daaab7cfef9e22e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-x86.exe", - "hash": "80c6267efe2c465de6d1688bb0caf4f5edd63ea9d6b904efb18df9995f1f97b7a1d50a87d29ab9e8b5672a53aea90ab09cef9de36aebd5c95bfbcbd4c84eedbe" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.19/dotnet-runtime-6.0.19-win-x86.zip", - "hash": "577b0fec09365a694bde4733755a1b043a713cb45d302f210af34e7f7b643a80c96b09440ab89a302f708e883a335a8cfd1d7a56217e40afc0620db61ff608c9" - } - ] - }, - "sdk": { - "version": "6.0.411", - "version-display": "6.0.411", - "runtime-version": "6.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-arm.tar.gz", - "hash": "c0b4e0229b0e1b536a995c64633e4ff5e2659b1a0127466035f8c11c9acc72c2ca22b1967d2792502dfd0c0f2f6a3d29d9936cf00da1d7ed64df8f90a0046af7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-arm64.tar.gz", - "hash": "e10aed4470087f30e48bf2c3d7e98a680cb7b5f5cfaaf2f7e5029c648e4df9ab140bfcef3b84195f6f8984b56b4156b7afde957b3695e68e9ed24934414a62d9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-arm.tar.gz", - "hash": "fc91104e58fbe7963ebf5ac4e9780d62feeb50a688220cd4c8d1e1b3f4c8a3145854c55c1aa69a4822d979767feee3e01aca7825dd830f4d1cc6a8dfeb4ffe8a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-arm64.tar.gz", - "hash": "404634907cc174c5d357562852acdf1f82f07aaec5b6f8abbfdf4b251f394166a498024a3181d675346f385418074783c0e9cde71b624fed31653983daf00d53" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-x64.tar.gz", - "hash": "ed5a1525a360bd6278eaa29dc528a4d50e10310d550caee234e5b31d13a9df776c4b3d904f3fa02ead4f759091f21c250943ee1fe4f6c41cc9cb1e4f8af13f90" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-x64.tar.gz", - "hash": "dc8aa1f84ad97cf25a979bfc243c200b7a8e73b930b68d5eed782743d88aad823c32c267c83d7a19d3c4f910a8fae7f12d07ea5a35a1d3a97e13a8674d29037b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-arm64.pkg", - "hash": "e516b665e7cc172924708cff4617da339d677d17a26f811e5719501588440e5a2fb73c535de741251ab6c1fc296d13756dbaf638b4c1de9e2ce32e8d9588a8eb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-arm64.tar.gz", - "hash": "0095606938cf1b6d5c54516ccc4d9ff276c567e569d2644dfc2f00c8a20c88ca8b09cfa1bb1254c04463887cb9c2bc057e62afde026948ca326998048c4d5d0d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-x64.pkg", - "hash": "f1e734daa9b38ab18ad52ad91cbbdadd5bca2c4cbed1b286b4559efaf955a97f7031aec0fb1706741396fecb6609da1157e107fd672deeea857d6deb49112d6b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-x64.tar.gz", - "hash": "11068da9ae996d0f0c2410ab2fc0a6637d5daa25ef9c152cbd509ee9ef51e452134a787b5214e8122a797b3cd00771fa3bd54c2e4aacbb3cf8ef103dc85b0a99" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-arm64.exe", - "hash": "e872c6af619b152908887a6739ee9d21c24f66aa4e51460e9e3293598bfb6dc89dd6644e0d8bf05805d7fd501365cc7bf00810667e437306bd91aa8e1242dcff" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-arm64.zip", - "hash": "8c8c5e4a33d9e2e57607df4e33088925d9d1fec9f84deef4ba7f86f154f324ff7d5f5ba47263277f69532407b79660c07e19cd6ab876117dd423c25f94cfe0ce" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x64.exe", - "hash": "22d44afd53349e5457f537eee1382c373586a1934f9ff4b0680c99f7dfe564d57330b43ac3948491d9f02c3df875e4c3826b39cef84ac1776c84aa5ea3a9b8ae" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x64.zip", - "hash": "96efc948434bdb88aa2d609c65a8eadd9df750fcdf156b0384caa004e170e16113d5bcb719de423e4f0b184a36004ea86bac8e3d553047485001976740d59bc9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x86.exe", - "hash": "4a67e8bc9eff5c6aec93e46d443b67dfe611a9dd33c54513de962abaeef03b80335725f3e085103064c11f3e55a89033c43e8244f04267057ad5f585898efe95" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x86.zip", - "hash": "4549f8a992da3c3e0e311f1a4178ecb8fb5831e9f5f5dc7d4ae699a46619c61ecd02613cbdc9443fe76ab3e86d5d4b4df4a99db034fc370381b832c73225096e" - } - ] - }, - "sdks": [ - { - "version": "6.0.411", - "version-display": "6.0.411", - "runtime-version": "6.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-arm.tar.gz", - "hash": "c0b4e0229b0e1b536a995c64633e4ff5e2659b1a0127466035f8c11c9acc72c2ca22b1967d2792502dfd0c0f2f6a3d29d9936cf00da1d7ed64df8f90a0046af7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-arm64.tar.gz", - "hash": "e10aed4470087f30e48bf2c3d7e98a680cb7b5f5cfaaf2f7e5029c648e4df9ab140bfcef3b84195f6f8984b56b4156b7afde957b3695e68e9ed24934414a62d9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-arm.tar.gz", - "hash": "fc91104e58fbe7963ebf5ac4e9780d62feeb50a688220cd4c8d1e1b3f4c8a3145854c55c1aa69a4822d979767feee3e01aca7825dd830f4d1cc6a8dfeb4ffe8a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-arm64.tar.gz", - "hash": "404634907cc174c5d357562852acdf1f82f07aaec5b6f8abbfdf4b251f394166a498024a3181d675346f385418074783c0e9cde71b624fed31653983daf00d53" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-musl-x64.tar.gz", - "hash": "ed5a1525a360bd6278eaa29dc528a4d50e10310d550caee234e5b31d13a9df776c4b3d904f3fa02ead4f759091f21c250943ee1fe4f6c41cc9cb1e4f8af13f90" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-linux-x64.tar.gz", - "hash": "dc8aa1f84ad97cf25a979bfc243c200b7a8e73b930b68d5eed782743d88aad823c32c267c83d7a19d3c4f910a8fae7f12d07ea5a35a1d3a97e13a8674d29037b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-arm64.pkg", - "hash": "e516b665e7cc172924708cff4617da339d677d17a26f811e5719501588440e5a2fb73c535de741251ab6c1fc296d13756dbaf638b4c1de9e2ce32e8d9588a8eb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-arm64.tar.gz", - "hash": "0095606938cf1b6d5c54516ccc4d9ff276c567e569d2644dfc2f00c8a20c88ca8b09cfa1bb1254c04463887cb9c2bc057e62afde026948ca326998048c4d5d0d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-x64.pkg", - "hash": "f1e734daa9b38ab18ad52ad91cbbdadd5bca2c4cbed1b286b4559efaf955a97f7031aec0fb1706741396fecb6609da1157e107fd672deeea857d6deb49112d6b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-osx-x64.tar.gz", - "hash": "11068da9ae996d0f0c2410ab2fc0a6637d5daa25ef9c152cbd509ee9ef51e452134a787b5214e8122a797b3cd00771fa3bd54c2e4aacbb3cf8ef103dc85b0a99" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-arm64.exe", - "hash": "e872c6af619b152908887a6739ee9d21c24f66aa4e51460e9e3293598bfb6dc89dd6644e0d8bf05805d7fd501365cc7bf00810667e437306bd91aa8e1242dcff" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-arm64.zip", - "hash": "8c8c5e4a33d9e2e57607df4e33088925d9d1fec9f84deef4ba7f86f154f324ff7d5f5ba47263277f69532407b79660c07e19cd6ab876117dd423c25f94cfe0ce" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x64.exe", - "hash": "22d44afd53349e5457f537eee1382c373586a1934f9ff4b0680c99f7dfe564d57330b43ac3948491d9f02c3df875e4c3826b39cef84ac1776c84aa5ea3a9b8ae" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x64.zip", - "hash": "96efc948434bdb88aa2d609c65a8eadd9df750fcdf156b0384caa004e170e16113d5bcb719de423e4f0b184a36004ea86bac8e3d553047485001976740d59bc9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x86.exe", - "hash": "4a67e8bc9eff5c6aec93e46d443b67dfe611a9dd33c54513de962abaeef03b80335725f3e085103064c11f3e55a89033c43e8244f04267057ad5f585898efe95" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.411/dotnet-sdk-6.0.411-win-x86.zip", - "hash": "4549f8a992da3c3e0e311f1a4178ecb8fb5831e9f5f5dc7d4ae699a46619c61ecd02613cbdc9443fe76ab3e86d5d4b4df4a99db034fc370381b832c73225096e" - } - ] - }, - { - "version": "6.0.314", - "version-display": "6.0.314", - "runtime-version": "6.0.19", - "vs-version": "17.2.16", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-arm.tar.gz", - "hash": "9ed8ec979dc87811d4b5be0efd1b5ecb22c1402b82f3c6b76c7aa3b6b813d02fc105c5dc083d32a994b6a81f882e342d17db00a3748f288d9c4938a9616ad1d6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-arm64.tar.gz", - "hash": "696c71df9d97749eb0f5e0ae57f60779153e8b1897d8b8c0e4fb7d6052fed2af33a64eefb60d636ea94bc826f7aca08cef64e507d2b83405a65e8e5f20a987a6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-musl-arm.tar.gz", - "hash": "4f65b711a24d3762c0fcadd91b01dbb4f1b7fcddb90ff33b234858fedf36fa58ccba8e3c022afc8ca60ce1e04c515e44c7dfed412357f39f6e69e6d80aeb94bf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-musl-arm64.tar.gz", - "hash": "265dccf7ff99d97d8f951a403362a424d7f5cce3bc9b374213b99470674275f52374ca628c3908a55cf8861968f0cfcfb5aa3dad642b2d4649d4ab79b8576987" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-musl-x64.tar.gz", - "hash": "43570b3000bdda5035647a9aa62fa152deee50e1cb1ce235e713280b52d100e054c3b2ac238ab4f1c168d80bafceff4bbd96a6defb5081ed3df568a5571ba485" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-linux-x64.tar.gz", - "hash": "c22d1acfb440a060cb955699da651fd69e041f73d96299136b104256507c8ab45dfc302689b6a6900db0f17ba1d9d788dee7e6cd8f4635bca1f777a4217eda6d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-osx-arm64.pkg", - "hash": "e98d8cf7c4fa3fe995c22e9b98bf685afc9b5b30e567c815e1e9c6ebd141fef407a464e208378d6a1ca2521cee9d956b515cb977556d3d20456f5820e2ac6852" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-osx-arm64.tar.gz", - "hash": "0f50fe1bb2845d947cd44e12b831011cf7ec2644f772920ff90bae5cca36a265624c1742ce05ea46635216a636b66611c2fe96405bf1a90c37e5e21ad51a3b8e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-osx-x64.pkg", - "hash": "999f28f8a4bad35e5be4884ccc9eda4baf8d2b6456c0e5c7bb19574d7084dad8192f1b62dead6c6074072647e8e517e4cf1ce391961566b93371a1e5a31ea001" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-osx-x64.tar.gz", - "hash": "ca7c6162975cba3b603c95f50ba04aa18615d61a0008f928f1a53d59c7c654fc237459e006557b4d5925d00942123ea6b39c59f5d2636872017a37380869c5e4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-arm64.exe", - "hash": "ed6f961522749d34a5f994f8e7894a7e605f59a5371c6e577e5d19ff227f9b2775cfa9786341a64d5bacdf756b214fc6fe8bd4bd38777ad668766a0e5d73b1a0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-arm64.zip", - "hash": "82fc147e2304115e9eaa02b37f452102b422cefa6fc71932a4e886c2ff10c8994fd5ce7985c90235d06dc27af1afcc4f0204dfae3119491da43f897e429004d8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-x64.exe", - "hash": "6697423ce4e9133411da1d79dd1069df817b980c6700f6b6269296c5622d511567ef5bd132c2281bd78b8dd11df008c14ad2eb6dadc9c67d1f1b83a8dc03b2bb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-x64.zip", - "hash": "2b2f1aefeb385648931ecaf54590fce1da629f6ff05c51a8be6789e76f9f258b96ddf39fd4208e7062a94d70d2f31a7fb80d487bc17954fbd9ac3f112f2005c2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-x86.exe", - "hash": "e810a80ffc4c7f2b886f059e1b0bcd505bbbc8ecc1af349218e01e46f88b1f22a8c57087b6152193b6f6d5567b7b49ec2fb7358d0b77948aedd9be2cb4f4bfd5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.314/dotnet-sdk-6.0.314-win-x86.zip", - "hash": "670934462f42eee244a5aa51bd8a128977a81816fa9c32340353269f81bb0dc271b600460da4797a55322ccb0e315ea78905b2a30fddf42b8a54de69930befde" - } - ] - }, - { - "version": "6.0.119", - "version-display": "6.0.119", - "runtime-version": "6.0.19", - "vs-version": "17.0.22", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-arm.tar.gz", - "hash": "ea677df2acb53bd2822df44e3ab8c6e7700c7fe9878b535fb09e0b0d25de37daffb05bacb42a1d8f075639689e94fce063d5a58a3a372128814f13af733112cd" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-arm64.tar.gz", - "hash": "82780dd9b3205f9df2c90cf19075d72646c814820c93806a39639457bc33ae7e5f06162cc8845e8a1a12d71b190ab3d2f81a03db4e41779c348e626e079e292c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-musl-arm.tar.gz", - "hash": "61cb84cdbdc2c559dfc6a50a48724443117c0ee52bc1906ea4e5dde5a2f0713e0b99a96016aade2dfe88368004ecced15916be23443c1ee15d75417cf84996a6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-musl-arm64.tar.gz", - "hash": "dbe7779136acadb8bff7e6256d27b095d44accb1af29480f53bb52acd3e6de594a3718cfeba8426c30f7bf08571d2a88dd110c6431c3c71295084b2d03ecf0c0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-musl-x64.tar.gz", - "hash": "16e72176357be34daa2ce7bf6d9b8c5b159b9a0b31244b1d358fe5a5ca7d88f8089cf02091f587d721400ae3a85a169f86968641b4bc25873fc42bdba1514047" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-linux-x64.tar.gz", - "hash": "16eea6bbee81062d2580e6465acf3248cb3c436b88f875d7eb2d44a1cc1aa73db3b5c9426e95e36868067bb2cfee7f595a2c8a91d098558b0f0e76d2b5225ef5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-osx-arm64.pkg", - "hash": "a60eb9966539e79e7ba84070577a4e2d51fc9d00d490c39af689b9df768eea08777b3b556c33034f2e2d182e15c8f0daf81e5f3079eed9a14f2c41d4211827b9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-osx-arm64.tar.gz", - "hash": "7ca75812542e96712dc4c730756ca67baa9246377f57c318acd4a342422b3c61a45a645819c54031224a9a859ac8c0ee05b25cda7e1019596534dd0c0b761ac4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-osx-x64.pkg", - "hash": "18681ce91bb6ca8e5084565fa775e7bcc4a70da65a4d40b0c7d1dc1ad2006e59260835038804882cd0f2853d076b6f101ae80546c26b16906e24622dbf147307" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-osx-x64.tar.gz", - "hash": "ae425feb43fa225b6ceaae9fdbc18ebeed5798e671e5066ade1db907c5e735efe9196ea125a202f536ce99dcd6a9905a1e436ae371c74b36b96e02f92b466ecf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-arm64.exe", - "hash": "18c5bab07ff3e83b1c9d60f430ee0420743d5b9d448ece6d39344022f62c5e91f63b8570477be21c5ed02f28c0f5a43b9a715d5c23713ba88b38c9e9e2b1cf58" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-arm64.zip", - "hash": "540fe6d86b14d2b5691fbf344ace0489d99d4d2e4a62b505badaf447ae9b7d0ef00ddcd272712b8bfae9af65e28fb78b1530e065655a43283e3790c9cb59bb90" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-x64.exe", - "hash": "ddeb13f1641fa67df327045f82020878cfd6fc5335c29413f475bbd2423e908ce6be562cbf2bef50c52d5c96dcb86993a18b153a86e67febcdb8a9f727385839" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-x64.zip", - "hash": "32002ac36ff30535c5e6e5b89e5ca2599edb24409ba7e5c51b0412b06fbce9d33a83c6038ba76887d81d980cbef007d41667f0faf642c4b19afb8589554ef10a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-x86.exe", - "hash": "1d3115d493dc71390a043808aa6533c1a4d75de0acf7de20948a6a022227d4564df361e9ef17ce2d3476d37a349c9aee1306a16e3597f3b7d3932110bef8d0b2" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.119/dotnet-sdk-6.0.119-win-x86.zip", - "hash": "0f9afce787f1bbcc2073a0f9c26d84db91c94654755c624ad8d1815eeb71efd039b2c7202459c4eed034d6643697e5fdaac75f9ed8a8d7bda1c7f1b85529501c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.19", - "version-display": "6.0.19", - "version-aspnetcoremodule": [ - "16.0.23170.19" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-arm.tar.gz", - "hash": "0601f72178b962fb3f2890a7e5a1f609398894e94d6d8a0373df842a69214d5e78d7196217a28116b1a18b1d673c80400c048db10cda46edaf13de24f6f22d75" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-arm64.tar.gz", - "hash": "739acf3966e32092243f9a2ede241a16b2ae7c26bccdbcd53e63149429c4fad7d7166beca8c54ef1e79f18b43d3a5334bab42128a534aae7499cd137b833e888" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-musl-arm.tar.gz", - "hash": "6e694b98df81df78e947d5ad6eb20b24afedbcfcd187b3a87b29166a8c438713a0dfd2c69324ab72b344305fbb4b9979ebae6c35aebaa927f9147e4b5db69e55" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-musl-arm64.tar.gz", - "hash": "b684520eecec5bf9d6c0945f68ff49fa75253c6ef05e6987f5860013ca56360bc73b898b8d2782390e6e1a98d80621145d7c1c67386fb46c7d7a5a125fccd91b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-musl-x64.tar.gz", - "hash": "041ef64cf271470ef94014214fef6ea0123227f4dbb2554ded6e8c1a3c979be96725f685a9679df3127e067a5ef783fab21993015be176bb6ff3f6da2418c0da" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-linux-x64.tar.gz", - "hash": "537e4b1be4fcaa5e69013b99c86808e0a13994c87d7542367b3eb18196206d1c27e46a865d89784229a04f69dadbe0b283d7adf1e7848c8d3c7998ee80c9e765" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-osx-arm64.tar.gz", - "hash": "6cff56c4da0d55eafb334775792b92ff22d1b3b6aea85375f90e55e4f850330f70eccab3d8bc8755c8a5895df4d7db9c3099f63982a1ec58ada196d2fcb574f5" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-osx-x64.tar.gz", - "hash": "405f3ef158ae0d8bbf755628b6d3131618255170885164422107955d94ee8483adbd6cedf4e5b414413cefcb15945efa2b44675b1f851647ffb4d92eea7505b0" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-win-arm64.zip", - "hash": "640cc404ac647df8e602d80f56970aa85490a424c8fd2e2e437e59e2b93fe3a1b11de7563628ae5fa908710cf375b9dd3d0a7771edaa5b7988c1bf9d72734094" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-win-x64.exe", - "hash": "e0762ac40c9e2456eab835d47d5486e8c16f8070743f0b4df79b18b91c4f20bb6d76f6b96dd8de009ea8bdfcbad44df41c874946c34f4c7a7a4f2310d9054eeb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-win-x64.zip", - "hash": "3fd28c0d352a420d4e7b79f7faad772919081f1cdb315379ffab0a2e6e29941d130077932b0aadb222b2657325bee93985b1a48d08aaa3eff24955c9289f707d" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-win-x86.exe", - "hash": "5990c40673d40a0cc56220168591319edc467dcd01c338f6f0c5b1db0f5cf98ffb51ce5919fb05143ee80ff3ebaf7e8f7b02d97b827a878bfa6d863614cfe885" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/aspnetcore-runtime-6.0.19-win-x86.zip", - "hash": "d0104e799ef46fb980ce9c4d1e6f7f6048f896007e2b35c2bdbd6d9ec19c35efaef096395d4239c8f68c674f5ac109ebb6b19404b23b78f390c8bdb680a40573" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.19/dotnet-hosting-6.0.19-win.exe", - "hash": "fadc48a76561a7abd5cc599db737afc2b1638013c95e29cfc8955caca1d57004bd9078c6ef9696becfd75baa2983fdc2ff4382c9ebdf833a11316c2dec218884", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.19", - "version-display": "6.0.19", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-arm64.exe", - "hash": "ecdc0bcb63d9f4047110dffd3a7c9f60e1cb4bfc41e493f7e1d0c6eff74bd81d4cc246a2b4c60a97328c927dd4f5ed311aa75f57f60f1845d7b7de66da32eddb" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-arm64.zip", - "hash": "f704d01bcb44eeb90bda47c0fa5b2e0f7a7103f19906795541ad93c5fcfb5585602bc192ec890928737ed04b782fd6098cfb279ca407e956047e5ef9ed509e5f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-x64.exe", - "hash": "ee214705a57e0da2f31dfb4a4ce2368898eef10bbe024f2e0b05889a85d472d3acba9cd935fba5391b84463c1245f641bcc3cbeb9a48334fb6d41e7b3a2a9d61" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-x64.zip", - "hash": "48815f30fb5a23ce301a3b64bd1a6699d6d1393e73e770f1b8da51aff94f402a5f5c890fa9c5a24168ec12221f722c74f13b849eedc927eb055dea99efc61fd2" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-x86.exe", - "hash": "993422cec9e7aabf884c6030c855e62c674d85f9ec81eeaa63e9d0f8c395a75d142e8c59eeba57916e2a95650fadbe9e01d7dbbc989b784979dec442171243bc" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.19/windowsdesktop-runtime-6.0.19-win-x86.zip", - "hash": "4cb2885aa448349ba36dbe532c4787e7ae0e237e75be764c83a9e871ee49198db23128bcf67405c7a4805ec23e9a759088604ed987db5ebadf17bc40bb9a8e18" - } - ] - } - }, - { - "release-date": "2023-06-13", - "release-version": "6.0.18", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-24895", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24895" - }, - { - "cve-id": "CVE-2023-24897", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24897" - }, - { - "cve-id": "CVE-2023-24936", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24936" - }, - { - "cve-id": "CVE-2023-29331", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29331" - }, - { - "cve-id": "CVE-2023-29337", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29337" - }, - { - "cve-id": "CVE-2023-33126", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33126" - }, - { - "cve-id": "CVE-2023-33128", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33128" - }, - { - "cve-id": "CVE-2023-33135", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33135" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.18/6.0.18.md", - "runtime": { - "version": "6.0.18", - "version-display": "6.0.18", - "vs-version": "17.0.22,17.2.16,17.4.8,17.6.3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-arm.tar.gz", - "hash": "3ae9533357db02a4d697a83b6f58a3686751558d3be8bb22d097d1d53b176d5d935a2d0bac11d63b64343aad55ab4e08ca99805f129e09b3928123b73b23dc04" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-arm64.tar.gz", - "hash": "7c9006feb7fcc22510ef99841e55b0737fc3cb7404f3aa0f56eb4dfd82da62dcdae3fecf0125ba1f1b5d17607ed595741e802dc2234c79ef1047a9e99e61b6ec" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-musl-arm.tar.gz", - "hash": "bb60749f3ce8ef78e34ff48a401b99931f4989f9badb477d123d043cd493bef94c9c84a40216952ea9a6ceb409f9dddcc4a15cbd1e1035dd2ebd705c2af6bfb0" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-musl-arm64.tar.gz", - "hash": "e37376a0c723fa9211ae904b34c1c35517dfc95b27078722c2b3b9e0aedd771551e3bcd1e1f502ae54a55843ed57236ba57c26110b537df7de77d391d9691bf8" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-musl-x64.tar.gz", - "hash": "3265ca274799e4de33fa0f60a9b88602c2245aa28da7891ec1343d1193d1f57f0c4b1cb5c561cc51bf73aaa92a4d5f382b8f63425fb32451b99837ccdb5d32b1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-linux-x64.tar.gz", - "hash": "bcfc88238f901c14d203a33eff036106fcbcfc40de7e3717f61434dffd86b5444c176dec5beeddcf80e7193f77bf793ab1e2284c91d54b93931a4668ba77c634" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-osx-arm64.pkg", - "hash": "935945ac5b3ec79317f754b9b52f937c18e640719191a9068ef2cacced6007cb6c8f307a1759ce9786fd837032e9a8faed78c44148620a156246f35440e0cc90" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-osx-arm64.tar.gz", - "hash": "3183a2ac94c2e33637e8e193dacedadafd49e7b39b10a9429f0d9b4f1b7beca1eb72539574edbc2a9c6f97b36c157635bb4b765adb791fdbc4a477ed890aeeab" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-osx-x64.pkg", - "hash": "e303522dad7b23d814e3dfc81f5a4f2a6214102ba765d64a2d13dc924627be0da3f87304bc254e41e648c240e1429b6f864167fb1edd998860a4e5d507c71358" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-osx-x64.tar.gz", - "hash": "67d7a3a5ef59ae16c76c82fdefbdf5dad8920500f03bf868eed30aa21029ae06e3951a7a5337638cb7449ffe643a6e7307bf94984ba7dcab5c50f4194c484ca2" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-arm64.exe", - "hash": "1e06777ab250e27e1796cb7a24537e8cd062a535bba2ec9f270e563da50646ef928ab333365e6fac89fbf0a911f45adb684b897e86535275287548c93a6cffc9" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-arm64.zip", - "hash": "bb6a82d791fadf2af1d609b104d8b4314e5757232956131020ee262fc40f1c6824670fb31ed5549d9a36d1974fa5d7ba356dd846810dd7f188864d898f32c5be" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-x64.exe", - "hash": "f32d5e244567db4b4e605b374e995470a2ce5215c618219159f238ae8b32d0ac6b05ece9b82dd11e316085756ed658e2985c64af3430c0d51e692acb8f5c0a08" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-x64.zip", - "hash": "22192997e474d22a54edd39fe2a8b688b775a02e9064bb0ef4dc24b81b5064727c2f42fd59b2a9351ea2e59d15410d3a71e276b6b9fc599c90b3092bf32db498" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-x86.exe", - "hash": "5fec30e96fa9a99a8a8798e3fa608920c18f12c1c6b3ff8c509c1ef8eae5517957cbb6c6f71177a47190266d644c2d6f54f17d09577d1624512822a4f4c815db" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.18/dotnet-runtime-6.0.18-win-x86.zip", - "hash": "b6f576a8d44b94b85a938aa4891a0e28c2b5b049971cc0c81776a79fe0b0b66c764419015088fd593389cfa9ce20882a71705880ab0dd024ac4e3596f234291e" - } - ] - }, - "sdk": { - "version": "6.0.410", - "version-display": "6.0.410", - "runtime-version": "6.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-arm.tar.gz", - "hash": "3869ed4526c0758999a11cab20ce943239d0c45b330cc28c24c6b6917454b5a417aeb75a02ec974a5e638103554d5e8b839c2eb3f436591ea018b4a8abdc336a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-arm64.tar.gz", - "hash": "75776b101672714f4e919b71313c3abba6f9b8a14d36751b31fb5400106e87d55e3aa45c1bf25be26a40847637f583815e40d61a837bebda66f30b88294f7e49" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-arm.tar.gz", - "hash": "22dcf706adad8d8be3eff2131b9ba64ac040e28f945f626dfc8a9427b5e117224c3bc157845d4cb9e951d44bc91cdf80919921d2440312ff71696abca5705e49" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-arm64.tar.gz", - "hash": "3684cd7cda7d8e4e15b09608665904a1118384570853b64b7d79bf9ab5404ca05f6d05dba32557dbad7dd0a97d0877123cd7b19418296b6e2cc5b99199e60f28" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-x64.tar.gz", - "hash": "8d9485377388f17c6220e72f6a9a55f7e37e552b01dea5cc67cf560584e00cb1e309376d2fc0fcbba5501c2adda0b69110547104dae5c694c9c5b094783b4b1a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-x64.tar.gz", - "hash": "8c85f5b10eb786c8cf31bf268131a2345a295d88d318310dc8457d831f0a587ec1600e43beb7f55aec2248483b9a95e905a468b592f0c910443b4aaa9baeb2e3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-arm64.pkg", - "hash": "4d29d2dade8193f0bd249707da1d0ff5c37d3fa881fbccb8949c2c9c3678e25a313345c183bf3c577a3e9f96dcf5bedd59898ae0d930ab0c8ac6b327fb9a5340" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-arm64.tar.gz", - "hash": "c52d9bcf96605b2cd76eaa7c09455d8fea29bce119c7072c94b4c51dacc171ffd3ee3d38ffa4a84f1d1c750ac8d957447aa4c77c71c4a90af4407ac9a1afa6ad" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-x64.pkg", - "hash": "53e86e3446bb1a8a8aab5b0977b12b3281a06916374398d012342a0ea70ce48b269909a44f5a9dcfda65f1c349c28568b37130a61cdf89d9990f8c975c6c96d9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-x64.tar.gz", - "hash": "dc9aa3a04b3da513311b385f28e2982879432a79e6de3da8d7e339fcb02e2a6684e12be35c6b193cda1ce02a9979c91eda5d2e7295cdd264f1e09ae5651d1b22" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-arm64.exe", - "hash": "234b63752353f7f509473bb9b210fd55080c29f0a7b2de58f2324d3e21d6b801929d8ade110350cacbd3f2831e4865bdfda6d71c93ccdd83b99dfdcec282eb87" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-arm64.zip", - "hash": "9cc28a64e6737678cc5d44c95f3731929a5809b74bd39d5bde63dd3dfb636f3504719913b172db6408d3efd454b49fd88d465990ad2d3dfbeeaca50c2deca963" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x64.exe", - "hash": "7f6d2f3e95c3da25699bdc6482f75b0526f40c36ba96b6aa86a89605ecf50cc1ed1a00a9aeeb0eed2981e0e2d3f3351535e6ee24fb5f34631f36fade65724ac7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x64.zip", - "hash": "dc9a8f001c297481bf82a721cc6133341ffc1c375f483bee63a93760e4e3349e38580cf56a693ae52cfe36ebe78f47c4be770c8fc244ac606f529cdb4b5137df" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x86.exe", - "hash": "74386db19ed93698d9117bf887a800a478dd02ba74cf7d84051b7cdb01b74fbc0aac13751bec9cbc732f851590786fe6aad6c57ca32d794f0acc959da7cf18ae" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x86.zip", - "hash": "c0cd1f12c9367f2834d1ca19c224e55cae2b854c79b95d1bea990e3443d1b8b8d94cea526dd195f277ac9a76a5650ed2c2b2ee0e399a4dfb44a3149325e6f731" - } - ] - }, - "sdks": [ - { - "version": "6.0.410", - "version-display": "6.0.410", - "runtime-version": "6.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-arm.tar.gz", - "hash": "3869ed4526c0758999a11cab20ce943239d0c45b330cc28c24c6b6917454b5a417aeb75a02ec974a5e638103554d5e8b839c2eb3f436591ea018b4a8abdc336a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-arm64.tar.gz", - "hash": "75776b101672714f4e919b71313c3abba6f9b8a14d36751b31fb5400106e87d55e3aa45c1bf25be26a40847637f583815e40d61a837bebda66f30b88294f7e49" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-arm.tar.gz", - "hash": "22dcf706adad8d8be3eff2131b9ba64ac040e28f945f626dfc8a9427b5e117224c3bc157845d4cb9e951d44bc91cdf80919921d2440312ff71696abca5705e49" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-arm64.tar.gz", - "hash": "3684cd7cda7d8e4e15b09608665904a1118384570853b64b7d79bf9ab5404ca05f6d05dba32557dbad7dd0a97d0877123cd7b19418296b6e2cc5b99199e60f28" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-musl-x64.tar.gz", - "hash": "8d9485377388f17c6220e72f6a9a55f7e37e552b01dea5cc67cf560584e00cb1e309376d2fc0fcbba5501c2adda0b69110547104dae5c694c9c5b094783b4b1a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-linux-x64.tar.gz", - "hash": "8c85f5b10eb786c8cf31bf268131a2345a295d88d318310dc8457d831f0a587ec1600e43beb7f55aec2248483b9a95e905a468b592f0c910443b4aaa9baeb2e3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-arm64.pkg", - "hash": "4d29d2dade8193f0bd249707da1d0ff5c37d3fa881fbccb8949c2c9c3678e25a313345c183bf3c577a3e9f96dcf5bedd59898ae0d930ab0c8ac6b327fb9a5340" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-arm64.tar.gz", - "hash": "c52d9bcf96605b2cd76eaa7c09455d8fea29bce119c7072c94b4c51dacc171ffd3ee3d38ffa4a84f1d1c750ac8d957447aa4c77c71c4a90af4407ac9a1afa6ad" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-x64.pkg", - "hash": "53e86e3446bb1a8a8aab5b0977b12b3281a06916374398d012342a0ea70ce48b269909a44f5a9dcfda65f1c349c28568b37130a61cdf89d9990f8c975c6c96d9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-osx-x64.tar.gz", - "hash": "dc9aa3a04b3da513311b385f28e2982879432a79e6de3da8d7e339fcb02e2a6684e12be35c6b193cda1ce02a9979c91eda5d2e7295cdd264f1e09ae5651d1b22" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-arm64.exe", - "hash": "234b63752353f7f509473bb9b210fd55080c29f0a7b2de58f2324d3e21d6b801929d8ade110350cacbd3f2831e4865bdfda6d71c93ccdd83b99dfdcec282eb87" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-arm64.zip", - "hash": "9cc28a64e6737678cc5d44c95f3731929a5809b74bd39d5bde63dd3dfb636f3504719913b172db6408d3efd454b49fd88d465990ad2d3dfbeeaca50c2deca963" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x64.exe", - "hash": "7f6d2f3e95c3da25699bdc6482f75b0526f40c36ba96b6aa86a89605ecf50cc1ed1a00a9aeeb0eed2981e0e2d3f3351535e6ee24fb5f34631f36fade65724ac7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x64.zip", - "hash": "dc9a8f001c297481bf82a721cc6133341ffc1c375f483bee63a93760e4e3349e38580cf56a693ae52cfe36ebe78f47c4be770c8fc244ac606f529cdb4b5137df" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x86.exe", - "hash": "74386db19ed93698d9117bf887a800a478dd02ba74cf7d84051b7cdb01b74fbc0aac13751bec9cbc732f851590786fe6aad6c57ca32d794f0acc959da7cf18ae" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.410/dotnet-sdk-6.0.410-win-x86.zip", - "hash": "c0cd1f12c9367f2834d1ca19c224e55cae2b854c79b95d1bea990e3443d1b8b8d94cea526dd195f277ac9a76a5650ed2c2b2ee0e399a4dfb44a3149325e6f731" - } - ] - }, - { - "version": "6.0.313", - "version-display": "6.0.313", - "runtime-version": "6.0.18", - "vs-version": "17.2.16", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-arm.tar.gz", - "hash": "a9c1704120446e72835640246557e4cd63b7a682391c81d434477a93533bffaa2c1d2e1e195c89cd69b2f904887e019f7526653ba077486be1c6feaf697f0d8c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-arm64.tar.gz", - "hash": "022bef4eb46c9d7046dd8df159eabb90ae25efdbb718ffa51d24ba1f34f89ff59efd944a005398a345fbcfa229398768f5c7031bee86ce6e3261bb20ac76d929" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-musl-arm.tar.gz", - "hash": "707237ba5ca07a2a8d1a2687f6985ad3043ca5125e78ac874724e0d71cb8373429c47a142653152f71135f4c60da2f68a8c8a37712e324d498cd789b2ab30eb6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-musl-arm64.tar.gz", - "hash": "585b63173fe11173602a347c07a108b1f5c689461fbe95a25419a60092ea15e466ba0d25e40d0f7a8f3326911115607353f8619cd592103f33b7f7b4c4244dc5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-musl-x64.tar.gz", - "hash": "a3cc635ad261da218908d91e051bcf8e3807e65883c50fea25661388b40309f9be42082ba848a2065031341c11f92aabb365b1f626b0f047ef1f5333746b3bc6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-linux-x64.tar.gz", - "hash": "8200ba40f559899149d50c0918ba9e31f4b101a7b5ec3d0f576d7a285a5470ae25ca59b81a4dd1eb62984cffe6a7ed6024263fb03d0fa4bbcf2cc9871e3a5add" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-osx-arm64.pkg", - "hash": "c560982d82c6fde52532e3a3c3b0d43f9cc4bf99335fc96f0189d40776b479e1a357650e8221f1903df8bcc32cb8bcd2d1b4ada03be92a84c30fe4c9e054d5dd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-osx-arm64.tar.gz", - "hash": "4cc870ac6103d7ded80c17e7f4515b5ddda80e2c35a87670caad0543723dbd27c13105a2222f8ecf718034155f6dbdc3b8e7e004fa10c14cdfacb04dea67a24b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-osx-x64.pkg", - "hash": "347ead06cd49d423dc468d7a6c72c25050436b7c509ba2c648aec6f67138bb2894b65490305f7ec742418c767d64e314b6ddf6459b193be9c7c9f68f0c3250d2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-osx-x64.tar.gz", - "hash": "e2791d1750b4e677620bed78ad8070c6883373d221664d42ec2da6c60e4ba2ba01a54c9671b4595b3c121039753cf4199809e839ca45198ccf73867e47533d9d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-arm64.exe", - "hash": "e1b722b1e0551cb8474b6c7d910f4bb5c4bc52f63dc543228807e45891afce34fe70e5b318fc1123a853b5811371ef2a1c298cc0fbe59a074934330a20d66773" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-arm64.zip", - "hash": "a38a5672b2f72afa8d5b5651e8c92d537daa37e074c56208016136bd33ca13c7a4216f3f26ca2276d6495343cfba0fa300c2ba19a95d799e207405fb64cebac5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-x64.exe", - "hash": "cab2bde4aba0b65c1b4453e09f7d82a74e3ff44d9f03021d73a4464510d5240e6f534379ff13eca71f8865dfc78eec5845679162afd1e1bff9cb80931ed68718" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-x64.zip", - "hash": "d3ff4205bc07648660b1ac0ad2b2e8f861056272bbc72fae317bb9ed7d36d0f3c67d3ad818f238a09c8abbb4e879c0b377f1743aedf17699a42887a1a33f7a2c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-x86.exe", - "hash": "6779336addd399b022c211d811cc1c97d8c258bd767383148f757e6517eca87b0eb993e9ff06e4ad77bbb97c6ac8eb8e942a0adff234be1093e5d71dc9d3917b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.313/dotnet-sdk-6.0.313-win-x86.zip", - "hash": "a5f50812ff4e55e8df184d7f3e21f72fe743258ea1762e40f225271300f498678014c7900a21c612b0e76a1d1890a8d86a77feff197f5e6e822654dd6586c139" - } - ] - }, - { - "version": "6.0.118", - "version-display": "6.0.118", - "runtime-version": "6.0.18", - "vs-version": "17.0.22", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-arm.tar.gz", - "hash": "e85cfdf29664ffc2bb7088febc7c739a937e0e918171e5e36fceaae50dc0e056fd772e1fab75248570c8dab251edc66a3c903594c698eb0c46d98dc28a0cf6ea" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-arm64.tar.gz", - "hash": "4b79146813642dc0926d2d0ffc0f063cef95907117505588c9e8e812ec8a07afc9c1835187c596d287cb7e369b34ed8862da8c0d47a0dcac9ebc491d55d54b06" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-musl-arm.tar.gz", - "hash": "b15d8137508f916e78a006990db2f4cad890545db608334061cb83cf9e4bede30ff5accff39d32dbc109ff2a5928ac16b6d08887149daf4f213587641cf0e283" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-musl-arm64.tar.gz", - "hash": "bf4a6c73354c55e3dd04e59482172e1683edc9bf0949b8e2ffa61e25c82cd2273e189089d877fd82b5182881a2dd98ca19fc313344a8de0f6bd6a48beac1431e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-musl-x64.tar.gz", - "hash": "4258f2fbacb65d15e84d41342af672ce2879ba0fa84338cc131f998695b3f2b5cbc408b0617cab3df7bb4f1747070434146ca7ca447edeb187922ac78877c4ed" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-linux-x64.tar.gz", - "hash": "191b3eb1f15b924c2dc494a1e1c58f3d38c82bd7a58abb26830d130e63c005c2e1293bab792c937f49c23f36df70985cd09a1afb488ca3d99c359ec253a11a5a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-osx-arm64.pkg", - "hash": "1c70310639ba0c1ce1b4aeb2408ed9c71fb112977a0a68cfff6e80650498408a93f1cecf398c69be5ffa319be966049af7829dfcd52184a74a7478850e8459b6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-osx-arm64.tar.gz", - "hash": "7d65f02085b67b9aec04d1dcef4154a55630407ee6817ac989bbbbe70b0d3a5768d9c35ebf90d4eeb068e24db1d0ab830d0554e00d377729a71d07c7c3e76f9b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-osx-x64.pkg", - "hash": "b65f345ae2c7a9b91a1fc0dc4945a6348887364f5fa2726d622484c21171c51c71ffbc254267d45b571a301570109fc1756e34341c860ceeb8b15462ba456f5f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-osx-x64.tar.gz", - "hash": "abade287f221610fd9d28499193c79d26a8687dc65310e3ed02d101895c159d9a9dd946f9d5381524d8c5fc0d43d24d552364b727636086f02a049b5f0b3b8f0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-arm64.exe", - "hash": "8e47923730291d2400eb622c89cc5fa8d5f27a5f650d72563f037d9db53835de3561872000624590c83d72f0b18b0407dc5903e6708a35ca1c56bf5b99f7d939" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-arm64.zip", - "hash": "e9f40d9313736729216ef6012f8d5fa960face92c09304e2f2d3fc28b7165f2de7b97f782556c57987edd38dbde57f2648f20ea209ea58d8dc16e6651afdcdbf" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-x64.exe", - "hash": "995eaa6ce815310135bffc17231a4b03a89cf1bd8d43763d7cdfdd50096797bc0d88792680dcacb4ca241faba72a45d587a344c8189c5d6e3994cae261bf0eae" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-x64.zip", - "hash": "b592badc423bc09abc9921fef598a631c8f70bb58c0280b72dc8d41b0390e071a2c28533bebad0b29092bac90561c871e250727d298974f8ad86e11fe81ae505" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-x86.exe", - "hash": "5e35c4dea1b3e048953b2e14071ef335f4d0520026296061c52b7bc471a86c8a64c257ee26c145fd116bec4f3fd8b6bd71c3a08f65fbd2d44d59f2f9c75e35ba" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.118/dotnet-sdk-6.0.118-win-x86.zip", - "hash": "89deeca7701b9fd740f84d66309455ebdb7d1b07a5d81a468cb3afec8d42c0c67c8ef03215ecae440bc8e7bb87f8c566908afcdbfd69aa0238751705772e040d" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.18", - "version-display": "6.0.18", - "version-aspnetcoremodule": [ - "16.0.23140.18" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-arm.tar.gz", - "hash": "16a1834d46cd8208221fa7d7f1b1e57a6544e855915e58e859b34bd7af2bc0dff1e94726356cee5302f1baf5a5bf6f25c0401cc8f904e13ca38a1175e406be73" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-arm64.tar.gz", - "hash": "f39b5d333eb096e681fd2b6481a41fe3a1b794c2655d56d84dc79321f767a67d968718b6cf08cf14574af9ff7625c76728be5c70a860fd3df14e40463a8ac6db" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-musl-arm.tar.gz", - "hash": "63a3091cefae4640bdd11db23a97b03998cdb17988d4f5064fa90ac25e61a84804186c620218924b914221651c4577ed8fff0ffa7688871b08d00fe34942a5bb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-musl-arm64.tar.gz", - "hash": "c8b91eedab034176d1dd5e9cf329f71ad42d2c96086fbf97a80d65e2d8154a8e15db339c9109d571e12460dfdc62f192a7249be0d7f17ef9c4df2b549ed785be" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-musl-x64.tar.gz", - "hash": "d19bdf6c9cbb1ff74866307c3c2914a025d918122c61cb2153562ef16c7ab2896d74ddaabb719d4e22675a8a0c3d8a67ffad71e8642297dd18f1c3bd345a54aa" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-linux-x64.tar.gz", - "hash": "8adbd7c6f303d69410c34ebc4a8df0afb340c6283ee18ca5e213ad502c8df15ef4db35023a5f9ef88a20ec41c733ec5006ad80dc4d31df5c32e5665f7f8b0563" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-osx-arm64.tar.gz", - "hash": "ccdf62da6470d1b74f0c866a69503e63ebca2f580156a64a3f82c1a8663e9003088eab0740654f2f0119107ec25d204c5b279cf036b1067ef110fc3eda84794b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-osx-x64.tar.gz", - "hash": "82205097e4d2c4a17ce3d6997bfc05c3aaa28359dd71807eb0d2bf3f4c5b2142e05f21a50e5b2f994b62836cd5f4c73d1c98b1f8f2662afc43b5e70040d9ef3f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-win-arm64.zip", - "hash": "b78864b40e71cdf6e2e5a2912c0cb358be09aeb61423a9415503c7ca92dbd08111b764947f0c5f097618a86216400923d4f5355ff615f0d0a3aa14943d4ae595" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-win-x64.exe", - "hash": "f92e9b80beb758fd5b44c5a0b191bede49145078c12636ef80ac5f46c73311a3484680a5790fdacd271464a09d1936136ac150950e4492aceae1d1a762d45a5f" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-win-x64.zip", - "hash": "e2da4a5fd8aa5bd76033a6b19f98c9e8e0895a568dfceeea3dad4b3376a87c786e89b617b7a74a1851450165561449a8865a1c1c5190fe736dd6b6ec5f09b9f5" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-win-x86.exe", - "hash": "f60423750b6803b09cdb4b0bdfea99e781495813b004eb020c2c7f3668dc4582ff70959a23740b440ddd1614cc15c006efdf5dbd1d3bd1eefea4721dc5d4ad7d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/aspnetcore-runtime-6.0.18-win-x86.zip", - "hash": "be46d4f26bb3cefb5bec41e507c58e7fb13358072988f9db51ee6635373f233f9f94f7947786ad1514d51460d25ede53755c6fa7f67869818a23cb50b2a6db5e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.18/dotnet-hosting-6.0.18-win.exe", - "hash": "efdec0c6b46e7998684dad691f6d9c80c77363619e20c6d22d4785ee897e6382a37806883d9a15a928cdab8c5ff4b996a607db7d8f1b2f7f7f1cd7541bda812c", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.18", - "version-display": "6.0.18", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-arm64.exe", - "hash": "cf05e58ee98251150d3c66fdb7d1b75b377241a396b822ff8696abced4fcf16d778ef83c9c848c6bb2df7f017c22c4026455766754efa4bdd581f2d48c5cd4c8" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-arm64.zip", - "hash": "92975517d500ac4674294f5a7a496eda252afdd1a12fede7ac9cbc7c695175360aad768b6a35658bc86239071cf7b03a0679f5ff6030f0ad2bcda4a600f74de7" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-x64.exe", - "hash": "8e9ea3c67c3e8a910de72f12c30e472e8fa26c05e0927fc533f04fa7547dc88d63ee2239c29dd45e6e515ca355a1539c03b46365f8ac340776e14cbb3c6914f9" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-x64.zip", - "hash": "55fc61661031c9bba5ab7b35e2a302b7bdcb802b8d5b256783b1a191c1ad5c7a2b3538f17db99d632ce81769b27f263ddc18930ff9e7248eb7e169fbbc45e708" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-x86.exe", - "hash": "d876144f90b631f859c8112a463e9e3b9a8fec2bdb1688fc8156f9cfbf4e058b13a41465f573ffe89c90bede4031b1a864d547239551abf6167ded6c44626a33" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.18/windowsdesktop-runtime-6.0.18-win-x86.zip", - "hash": "ef1d54639e5728369a29aa3f20a78c7c70d7d0b0f1b42a56439a986f9364741aad7856854fa081b969859189fb35f022fac87b01b3edab6ed46310fbd36decfc" - } - ] - } - }, - { - "release-date": "2023-04-11", - "release-version": "6.0.16", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-28260", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28260" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.16/6.0.16.md", - "runtime": { - "version": "6.0.16", - "version-display": "6.0.16", - "vs-version": "17.0.21,17.2.15,17.4.7,17.5.4", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-arm.tar.gz", - "hash": "0bb21a92dc7b4a7bc1ac2fdcaabf8e8649b2ac07780e119be987c7d0ce7881f4292a1a2e932c2d719bbe85a323aeafcd188ac39cff42ccf84907bd23745ba76a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-arm64.tar.gz", - "hash": "f670ea542d34e5f63b6b497a23f9d3f8d9e2fa8292ec3234ee08ef0eb706f339c2c11811857ad83624ae4a7827b449d4cabbe41c566b2b51faccf58be44af598" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-musl-arm.tar.gz", - "hash": "162cb92c20433b467090712bffbd29b8c6908d793b10eb102049be860e98be28af9ae114969874907a9f7f4ba7639853d02fc6e42490bd9df50ab41d544aaa84" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-musl-arm64.tar.gz", - "hash": "7c2e8c164cc8faffc7c3aacf9547bf825857b9d428063a1999f41bd579ea5579a06899fd4e0c13bb45514d2c5bcf849c7d999196f56c0cd6af5bf93f0de01117" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-musl-x64.tar.gz", - "hash": "df9edbaa98011ef3d15ccc291a826c60e304908ac1495b7a61f1571718a9c8d8e94db3f88aacd37c6b94ac397115323def32fafd9cc16d41bfebb05491b0f7db" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-linux-x64.tar.gz", - "hash": "c8891b791a51e7d2c3164470dfd2af2ce59af3c26404e84075277e307df7dcd1e3ccf1a1a3c2655fe2eea8a30f8349b7adbbe5de4cedfee52da06729a505d8f5" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-osx-arm64.pkg", - "hash": "27dd903e4aed15e7b51dbe00a3b79b0f3618ed6e258e84a9bb47e0216db873f8db3cb4b575274c3c9a1b7aaa67a1afa7132ccb97450e2c61286d61e614645672" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-osx-arm64.tar.gz", - "hash": "c7389000b353729af7229017cab4b02d9245d39983b00744e3439ac846e6669368648b91574d46eff7807882c6961f76884447411314dfab18e74e8f3824dca7" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-osx-x64.pkg", - "hash": "980aaf1f6e8baca6837b5dfa969cfa68e98d17b6ccd38b6d86bdc03f09941672099afaf26863a10b3e60b65404b2c78d97d26f8cf3dadc3f246256b3f168676d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-osx-x64.tar.gz", - "hash": "662084f66cf2983dbfb756f319baa2c1221f183b9d10101ca970fa3ccb2cfc49a7513af5926c843d3bd472b49991284bac5275d8f5e8671b9e96995ad2815571" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-arm64.exe", - "hash": "632b2152f27f59a75231586192d4d82ed7b66cdf6fc6924461467dfe70830ed8cb9127fad5333bae19096ae1e3345329eb8c7bbbc06d7a77cfe39deb82774227" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-arm64.zip", - "hash": "d5322ae18208f4ec28bfc49e14ac242ade9dae4b6fd90df426ebb33adff8a946013b81ae7c67dddf159a00488a138f2742058fdd6fed40d64d1597b5af0e8d15" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-x64.exe", - "hash": "3561b89550cd0b01cc3e4c33deb0d9e17bdbb8723143d444340a5390ea48a6939b7334d0f34a5cc196876cebc7fb0d433ccf8b623d2e3b10a49672b7324680e5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-x64.zip", - "hash": "8fdd6bf9d957faa8c6da7c441a9d5d288345159ef352c991a3a4e9d45a8d90a575b54b85ae345fc1903e61de9f7ca9923fc703853adc200687041a364526bb2d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-x86.exe", - "hash": "3330999941183e8bec4327f216fe5f6cf7f1f897e0ef039e3d1403a3681ffa7c4f20d06457d7f60073855a7d1c8ce054b0fe75811ad3e64a37ad42b8a821b25e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.16/dotnet-runtime-6.0.16-win-x86.zip", - "hash": "e1810b3508870e6207bc3fbf7096ee102a650054aa1d7ec5984fdc2b69dfeb90e55e7a7114d8fc7143c2e3b0adfb0cd01ab99b2f0c68e426f3cc6a2e44ba8c67" - } - ] - }, - "sdk": { - "version": "6.0.408", - "version-display": "6.0.408", - "runtime-version": "6.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-arm.tar.gz", - "hash": "a86414ac2cd417cc477e39d02348223644cb1f006fab537d3a4d002ec3c7b35af8c006736dd4206040c6a58d2b3a71f18678b492e7d18510b69deeb730c673b9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-arm64.tar.gz", - "hash": "40ad715ffb059df03eeae4ee4dff9b8998928e90dc0103b38ef671acbcfe4ac40016220e6b1214f0f77757099dccdf0fbaf1690191b350dbbaf773a01be8d25d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-arm.tar.gz", - "hash": "849f3e65e33df026979e076d8240112d2d64c6ee7b5a89b09dee1ee7ed5235e4f1d4eda9693f493029323b06f1d231aa605ce37249516717e4f75ed309088bb0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-arm64.tar.gz", - "hash": "4485a1df46d15f971c1a14a27b7495c03af62a8fd557dd398f30585065c855269bbabd3bfb3c8bde78d959bc19f3b82c3aa4bf0e3fbd4057607035bc5c18186c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-x64.tar.gz", - "hash": "241f1ef5c32a277bed881443de2ff17ceeba100f7191c4929108b65fde42d267aa4ab53f45fde728009185d4b5ac061d1e276d14e56b964d1b3104db0608fafd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-x64.tar.gz", - "hash": "d5eed37ce6c07546aa217d6e786f3b67be2b6d97c23d5888d9ee5d5398e8a9bfc06202b14e3529245f7ec78f4036778caf69bdbe099de805fe1f566277e8440e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-arm64.pkg", - "hash": "563a6366a5bd7173ff4271b2dad55d1ce04acb4418c22aba59bb2bfff158b7c30c36649f4a0eeb569fd944004e0ae660de03b8c06fc440b86db97be9337fb78a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-arm64.tar.gz", - "hash": "2dea66a67ca21dca2b3a12593c7249949af6619551fc265ce33c45b5366ce98eb55aa84a6c5cf0fa9bb8ef7f5ada89bc9cf3c96d34ad208cd9bf0178a80fbb97" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-x64.pkg", - "hash": "4b9dcab9d341225e71bf86ef5bc633d83fc877fa7d8e91ac6c014e0e95eb02f0adbed68ac210ad2bb9cdc4d0e62fff81047fc3c89e7af0938c725f615a018641" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-x64.tar.gz", - "hash": "98599e2b6d85267cc414cba0da26258251499f62eadfad341d0df4694b261b28ab5a7a97db0b2b8c0f215d03340dfb8a9f984a1f0eeb110a128c982336c1e110" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-arm64.exe", - "hash": "9844920629ba5340631dd0d43ee4e71e0b5d4fc9e0bdc2b7a588163486258f1be53d3fa46ffaa24c7ae89a9c267bc5817965be7740e75e322c749751dd5861b9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-arm64.zip", - "hash": "01ef5b98170aaee32f0e64549a9e12d0b1c99bbc1b82fd9438d55d77393ab46a630116f7396f4f5397dcd041d43a5a5b634e40bfe892fc7ee8f251991ee79358" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x64.exe", - "hash": "11b65567cdf90c177deef4d1762e193f7c3eb3d1d6758b0bf8c250e2338ac44421043f0eb7c3690354120a5af1c6a1685ac3fc4888aea23a5de95bca9a2248a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x64.zip", - "hash": "0136fb34ca9f8966c981238bc4156b76bbf4a1a266885497b87937288d2285fc97c5520e97e4114ff14f9cb43d20add117202ab2fda6f30435be6e42f2643902" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x86.exe", - "hash": "969242caf98d06ee9820fad81a382c63d517c38c9686a34fd58217b4a77689a68ae558a8af328f103831a3bfb1d8ee3266057f95994d4558390922504f40dc43" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x86.zip", - "hash": "98e427a566a2033f8ded8b223c155a6c053db074ebd4e8155b33fb63aa44ac0d5a9a80935aff4c30803c3f6917a841d1f3501bb860ddde37d285be3120ff25b3" - } - ] - }, - "sdks": [ - { - "version": "6.0.408", - "version-display": "6.0.408", - "runtime-version": "6.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-arm.tar.gz", - "hash": "a86414ac2cd417cc477e39d02348223644cb1f006fab537d3a4d002ec3c7b35af8c006736dd4206040c6a58d2b3a71f18678b492e7d18510b69deeb730c673b9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-arm64.tar.gz", - "hash": "40ad715ffb059df03eeae4ee4dff9b8998928e90dc0103b38ef671acbcfe4ac40016220e6b1214f0f77757099dccdf0fbaf1690191b350dbbaf773a01be8d25d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-arm.tar.gz", - "hash": "849f3e65e33df026979e076d8240112d2d64c6ee7b5a89b09dee1ee7ed5235e4f1d4eda9693f493029323b06f1d231aa605ce37249516717e4f75ed309088bb0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-arm64.tar.gz", - "hash": "4485a1df46d15f971c1a14a27b7495c03af62a8fd557dd398f30585065c855269bbabd3bfb3c8bde78d959bc19f3b82c3aa4bf0e3fbd4057607035bc5c18186c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-musl-x64.tar.gz", - "hash": "241f1ef5c32a277bed881443de2ff17ceeba100f7191c4929108b65fde42d267aa4ab53f45fde728009185d4b5ac061d1e276d14e56b964d1b3104db0608fafd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-linux-x64.tar.gz", - "hash": "d5eed37ce6c07546aa217d6e786f3b67be2b6d97c23d5888d9ee5d5398e8a9bfc06202b14e3529245f7ec78f4036778caf69bdbe099de805fe1f566277e8440e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-arm64.pkg", - "hash": "563a6366a5bd7173ff4271b2dad55d1ce04acb4418c22aba59bb2bfff158b7c30c36649f4a0eeb569fd944004e0ae660de03b8c06fc440b86db97be9337fb78a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-arm64.tar.gz", - "hash": "2dea66a67ca21dca2b3a12593c7249949af6619551fc265ce33c45b5366ce98eb55aa84a6c5cf0fa9bb8ef7f5ada89bc9cf3c96d34ad208cd9bf0178a80fbb97" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-x64.pkg", - "hash": "4b9dcab9d341225e71bf86ef5bc633d83fc877fa7d8e91ac6c014e0e95eb02f0adbed68ac210ad2bb9cdc4d0e62fff81047fc3c89e7af0938c725f615a018641" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-osx-x64.tar.gz", - "hash": "98599e2b6d85267cc414cba0da26258251499f62eadfad341d0df4694b261b28ab5a7a97db0b2b8c0f215d03340dfb8a9f984a1f0eeb110a128c982336c1e110" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-arm64.exe", - "hash": "9844920629ba5340631dd0d43ee4e71e0b5d4fc9e0bdc2b7a588163486258f1be53d3fa46ffaa24c7ae89a9c267bc5817965be7740e75e322c749751dd5861b9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-arm64.zip", - "hash": "01ef5b98170aaee32f0e64549a9e12d0b1c99bbc1b82fd9438d55d77393ab46a630116f7396f4f5397dcd041d43a5a5b634e40bfe892fc7ee8f251991ee79358" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x64.exe", - "hash": "11b65567cdf90c177deef4d1762e193f7c3eb3d1d6758b0bf8c250e2338ac44421043f0eb7c3690354120a5af1c6a1685ac3fc4888aea23a5de95bca9a2248a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x64.zip", - "hash": "0136fb34ca9f8966c981238bc4156b76bbf4a1a266885497b87937288d2285fc97c5520e97e4114ff14f9cb43d20add117202ab2fda6f30435be6e42f2643902" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x86.exe", - "hash": "969242caf98d06ee9820fad81a382c63d517c38c9686a34fd58217b4a77689a68ae558a8af328f103831a3bfb1d8ee3266057f95994d4558390922504f40dc43" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.408/dotnet-sdk-6.0.408-win-x86.zip", - "hash": "98e427a566a2033f8ded8b223c155a6c053db074ebd4e8155b33fb63aa44ac0d5a9a80935aff4c30803c3f6917a841d1f3501bb860ddde37d285be3120ff25b3" - } - ] - }, - { - "version": "6.0.311", - "version-display": "6.0.311", - "runtime-version": "6.0.16", - "vs-version": "17.2.15", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-arm.tar.gz", - "hash": "5c67bb0d82d8d6a5b2a8ef3a4f4b4ffc17432f7807c766881a2aa7ac6156a8f6bf80444cb2426649e7efa9a5b9908cb56d86589363590c15e76a021361509b5f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-arm64.tar.gz", - "hash": "0b1d12708b07c7fc761fe9d305a5731bf6d05412b7e801eedf8a95adcc2849b746860cedb02a24531269f224f4c75dc91e7c3de59a5d3bf47c9e2fcaa05aecf3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-musl-arm.tar.gz", - "hash": "88a9b00870b1c2e03609a86d90b85207b0749e0d31865639973018ef91c48921d1c783a646fab03a9a30e2c8075b6100ae96929576397d9653024f49b3cd0239" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-musl-arm64.tar.gz", - "hash": "bb736a6efc875a47b9b54fd577058a8e65f482154409537eb746822001ba0ac18fd6fa89a544ee2d291129e877bfcf14d2548e2aa09d1f259f70f40cca55a939" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-musl-x64.tar.gz", - "hash": "4ecba919514d9f12a50756b37fe6a3c3eef4c43410d41b85ced956f361ab0f73135c32c9e39099aa582b75a3c0d5c883dfe948972020fe33d8ded85abad22746" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-linux-x64.tar.gz", - "hash": "6f7dcbb35ee3c4105aba4f7e00bbf98211c1fc28b6909249cad57e22eaa8acb7994a5730e115a11303ae7fbf3087e76158db5c93eed002925a94750dbae923bf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-osx-arm64.pkg", - "hash": "2611baee4b01327d8f1db7971ab115eaeea6cca3b71a7fa1ef6b1e5f1982655ab8963bb29e9ca6b5ae4490d60577d0c7f0cad6f0a31c9c46b57df225d1ef8abf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-osx-arm64.tar.gz", - "hash": "88fa737afbf1660fe9997bca99351991f30eebef691237548f88f25d056f7472daaeac203d81be22d173b9df02e4137d7fb2fc9d5abe327ac4eda56d9787593f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-osx-x64.pkg", - "hash": "7104d591c34f67082cf9b5ab4d3efc91cf4528ad1de3ef4d821b97ebf7a86bc1703defd76ac4980c3582124cc572aa5f7157749a58640aeea6094f87d2f91566" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-osx-x64.tar.gz", - "hash": "5f0cc65ad0092441cbdfd2874d7e79eb5b824950a19709916ed2d84d3aff976f0ed6c79b50ddc03ed1c66e4d1a1e26bd81716dbbcb2778d30d658e472efbd654" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-arm64.exe", - "hash": "b037544ceebeb3acf7588858441b84e478a424a68d4f4f9443696573c68d3362febf2dcf43012de55702abbe3af9d8b39349945cf09ed76a5e1b61d8a49c2676" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-arm64.zip", - "hash": "2b6d4f61f3ba77f2458d6b0d86d856afcc09c8fc27a93071d6cf59ec046850d82abbaa17b49915bf086926f58df8f8fdcdc2c572510b494f962ac8360a4efd58" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-x64.exe", - "hash": "d18d7f3de09a0794c85db9c436cbdd732d965c87e1590dd3dfa8433bcaeb5e51b4d8d189597077ad61b6add30b6dddec3a19dccf82c12138221810e68e10e84b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-x64.zip", - "hash": "237be1666516322f40466332c2e8a07aa03bf4e0976095c36412a06738d380da6df319b33df0a244dcac9dc63079e59adbdc0cdbf48232af5554e4e44a97f1a9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-x86.exe", - "hash": "d11431662a15d5b79f1e1c64ef8f1c80c3199aef154d93d19e98b2579d07aabe3d684087be1ac148d07059c5d3aed08b64814529e14f2883668a4186dffb859e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.311/dotnet-sdk-6.0.311-win-x86.zip", - "hash": "01dd409df19ccdc1583bd05c48025596dd30150ade0d3fa29e86578f23098cb97a73589e89e3939cca4c1f95049afe6eb25d1a5f4462ab565253ef0671db78e6" - } - ] - }, - { - "version": "6.0.116", - "version-display": "6.0.116", - "runtime-version": "6.0.16", - "vs-version": "17.0.21", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-arm.tar.gz", - "hash": "7cfacf44b1f7f955b72059bf58ecb7fa7212531a7ec6db0e4b14505cd8bb6935294e83728d828b94770fd4bc8fe789afedbb4442cb2425538deecb18bfae417c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-arm64.tar.gz", - "hash": "eabf20e6ab121419651c7a476c453eeb542fc6a85c57abe8ac1856e1896a91acd635be88e711665f17587ccff0b586d4ea6abdbbfc223610c53b3ea26d25577f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-musl-arm.tar.gz", - "hash": "a35480c68e9f156a33225e80dc166db3a2fbe860f0f35497357fa6b5594df16dad9cbc8b5a7569ee4b6262070e100bf3c9d57721c68bac5bfc83abf61e4ace5d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-musl-arm64.tar.gz", - "hash": "dd3ec888e0d6644f2d6ef17ca7ce540d62226bb459cc0bbfe938229e757a8f4a10fc314a078f9898143c2271b8a70de77ffbdaecfa8c4c87921421e729f53a64" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-musl-x64.tar.gz", - "hash": "3b6f37aee5698d7ef794c74a6d914b914f0220346a2f37e66e4a29db63e284747d02856ea6cd461c76f2a9e18ab047f40cc739e7f8227d69ea7316bce2020201" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-linux-x64.tar.gz", - "hash": "7294b767482647ca89d4198345584a2a3bd81e6e67ca151924e9ded268091a2e4146c09f9b53061312dcf2a087535afa7ad039d84cb6d221a2108040b0b45dbd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-osx-arm64.pkg", - "hash": "6205eff90adaaa79c8198dae4d3ed0d6bbef6fdddaf5e299f5a92f8f248d9e7ee6e1fa897e81c3146a6e11112fdc0f29faf6089eabbdb6300c1ce9d01147349c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-osx-arm64.tar.gz", - "hash": "2c73d4da0514ae7cd24e1260764504bb98f76ba99d65ebed510a6397e00fd0039f126c7a1828223462576d6d26b119f5d5760960e1a58790d377a747f744878e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-osx-x64.pkg", - "hash": "ab23238524d1f0ccd4bcf7d89abad08384291f7607ddaf946530e465ca7931243bf2f94f60480bb99641081d294235c004480fa5e692bc0dc8a334028ff71450" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-osx-x64.tar.gz", - "hash": "2992be5b16bbce60e25db6276a876661272b38a298f5a0ca4fd23cf3bb178fd0a23a27fe53e8932fcdf33e12ff0a2e98d96a2a5c422cc61d1f1909db99d7cf3b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-arm64.exe", - "hash": "b4c999ac30b423a0792c13b9e55041e5a6083ed709ba084983d68a5dcdb1d46abf07c8233d7af27b498db5c6e1651c21cfa74f1c7fdba32e417779a5d09a0277" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-arm64.zip", - "hash": "2169e76cde075d2a0ffd0531b68a6fae7166591411b1f61aeca7994e532352e9948f10228cb5cb6c4a02aa47dcad733dad4b30444415df90a59a8b582dd5c9be" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-x64.exe", - "hash": "edce85e711ba96d5f4b580b0ccda67bf750f8a5453c255f9fd62b7c98e1c50cb8694fd22ecdd4b592ee88154d3c00e225bc3555f66d4859caed34082111e424d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-x64.zip", - "hash": "4337f27c77656365a94b7430cf605d73cc635b1296ef4e60dcd5b5b4fdf9e2f15289bb81989bbd89ed3e6dc6eea7cfac596816a93b42143b319424d23d1f6e41" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-x86.exe", - "hash": "a723069fd979c4ac1891c7c0cf324c6db5dd2be8251ea9313edcc9485b9274116b7b19653ac1b6dc9d70f55160bb9210b9da818024b65213a06c5bc2284a5975" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.116/dotnet-sdk-6.0.116-win-x86.zip", - "hash": "01dc4a88cbf083fc7283580625dfe49286d5e003c33d9c2b75d5e5566fa2ff327783f2c33ce93cd7c0e285632719bb51ff762f82debcafacb64dafc22dd9cd31" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.16", - "version-display": "6.0.16", - "version-aspnetcoremodule": [ - "16.0.23083.16" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-arm.tar.gz", - "hash": "8d328f9e92c7c467ede243433e1bc6d6797461172ef2cab6a8b5a44d2a747283709ee643a02b5a7460fc6507351f0d2643f826585e5dcfcae16c060f1ad1882f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-arm64.tar.gz", - "hash": "c08159a811d20003bfa32ce4b5657522433fc134f6dd1a391dc82004edb0e92dc2d75880d057e8467171a91ae2c344e90a679e40b5c5fddffe6e9ed0bf26810a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-musl-arm.tar.gz", - "hash": "f61db19865f57b00feb2acb8be6a7797b9daf780e5e0550f89d39b81f6eca22645aa5d8716a6e066d5523ae76fe41ebe09c0456126ae9a095595b3a76e58bab9" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-musl-arm64.tar.gz", - "hash": "cd44da7f6766cb2d07cef549270d0b010b106ec31553d7e5a9d0979cdc1be11045e03cf5d6bde584cfcd2da392392315c9c8f70bedc93c451483c413c118f1e2" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-musl-x64.tar.gz", - "hash": "f20de3e9af088dc038e86445e32a226397b93c701e62a06e4e8e47e1392fc1dd80dbcc750870eacf87a42e1c54d764c8f01691a4666167c65922ab54e3b3414d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-linux-x64.tar.gz", - "hash": "62f25ed054868155b351b98fdd04c27aebd913d92844430a002da1346e77a8e86e61833f7b81bdc3d733ff2ae60a21d66533cdd7003b2fee47b8d0e8746ad504" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-osx-arm64.tar.gz", - "hash": "b5eda3aa1394821b4607453cc639e49f92653fac6a7b381c8f33282185513ae606a06c63a4381153371354b94c9289e72287f9a25bdc8aca45efb5a8654d4af8" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-osx-x64.tar.gz", - "hash": "eeb99268be3c8dcb0d0c571944e01f22b3dbf0825e28cb1c9bdc0faa8f584fedf6d280f767609c5d91688897c185a21840f59cc91f7e1712c05a24a70fff26bf" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-win-arm64.zip", - "hash": "586fa1076d16f9f9ccbfae12949164a56a103d9cd7cb426dd8d641543a4a2583098169bb9688a6f522876c06dd4168c93342c7d0e4ef49e4f8165e86582728c5" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-win-x64.exe", - "hash": "4f9a9eaed6aaf5e71571fd5839dc934c8053dca7a3ecf5502e9004226171274623cd0713e9d2ac89e1e8e5d19dbd7d45a6fe58e536274a9b10d22432698c5cb9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-win-x64.zip", - "hash": "f6145be8efdd75bd044e05d9cd08954009183a1ab5c45b03a5bd8a360336d5c7d49718db5847ad080950233197968a5068ffd5b0725a126ccb5ab5454dfa10a9" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-win-x86.exe", - "hash": "61797d278391c02f559c72e959ff6b0a6efe77e6af31f3f6e2facaa6bdeda7cbd8f36ff892db766ff0d202fa28bc9b99d6c10c3e1b2969ec0b57acbdc91b54bd" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/aspnetcore-runtime-6.0.16-win-x86.zip", - "hash": "cf576f47e97f6e770098d9c446fe9df8cb010c197d1e7fe860c28bdbe4a5676a6a7b8a3f6fc3f5892708cefe54bc24e8cf4ed90268870a6fbc5865e8f6cd72f3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.16/dotnet-hosting-6.0.16-win.exe", - "hash": "5fafc4170dce11f52d970d14e737f5b85491b5257bb7eb5b3c5e9bd275469ac2482185e3d3464a18cb522dfb7f582287451e2f24f86cdaaa3de017e1c8300711", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.16", - "version-display": "6.0.16", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-arm64.exe", - "hash": "5f8b5e5d3ec71b7857b434115448e4c7211c643caab8657d173de31c2d636f943b698d0bd6f53b6caa7b586fc9b5823ff100b7b3b8b2c27d895a8300f412ab88" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-arm64.zip", - "hash": "516a3badc8d4dea81877173e5daa08ae34781ac7310b21495418f0be6e27d412a0059744333330b5ce909fb9ef131caea618d3a2cf88ff6d545d106b55223752" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-x64.exe", - "hash": "2bc06b086a7189ad3e2cd0e57158b720c617878a0bd6cf97b510ce37e0b2eeb24463d4b74b0f17ced8b3b606ebbaf860a124517243639072def90a3f0034e35f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-x64.zip", - "hash": "10dd7bb61cc2b7ee0821564ec0770e5b24b1fdc8dda66e19092a93b534df5d8e082a7ec6e17070fe1bea3341ad9d1ed5113de28901e27b5da9b18b485183730a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-x86.exe", - "hash": "c412bc0ef80a05fa3ec9211405c5d6127ed535fec4407826a62b9fdfb17479888ae701d8265714463fa0efb4d7fc6825ac10bcaefad9dfb902f0054751d7a59b" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.16/windowsdesktop-runtime-6.0.16-win-x86.zip", - "hash": "76ec68bd03d64cf473f44e1faac3e1c36d5e1d98cc199f327d6a92151763ccdec1b020ed7e952dc4c2d9bd304f5c4e3b38cc4e9756e3474f56372fd9463428d7" - } - ] - } - }, - { - "release-date": "2023-03-14", - "release-version": "6.0.15", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.15/6.0.15.md", - "runtime": { - "version": "6.0.15", - "version-display": "6.0.15", - "vs-version": "17.5.2, 17.0.20, 17.2.14, 17.4.6", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-arm.tar.gz", - "hash": "e2494f2df0315428f85db39156ddf9f09132f6fabad51814600f9953882a6cb0b47397249d600ec74cda3daf27de0713dbdcf81197971cafca5d90b08053fcb3" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-arm64.tar.gz", - "hash": "639153616c316832970b57faebb95a405d52549d60588a2e515323640a9ec0b7d5826a8434a7759ac890c841541f52551ae21895320749b80ab5ce29290d0c8f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-musl-arm.tar.gz", - "hash": "91103ba73fdc242b4800d9e0985e179fe8d96d10f50253a71347ef20cbcfeb20b7cb7d9bd351b930df898310bd403a696ac39f7cdaff5ff6b9a871ade0391f4e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-musl-arm64.tar.gz", - "hash": "1ca674dc6137821d5403fb856e842f39e1b04bcf38521a9e0ba34adecbe0a1d658826a8af5e8ef365c2fabed4e62a42b603b3f38472cc5208173e1162f79f289" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-musl-x64.tar.gz", - "hash": "18e2abd9d3e2d4ed1d78588976b31ec75c34c916f0680423889e7778ad80b91a3e92ff7185cc3d405db13e851276702ffc3a079d6d0705450515a27da63da483" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-linux-x64.tar.gz", - "hash": "681928ab5050da89302518445f4e7e00738530b3941434fad363724ad5b1f9bcdc52717332613d2e33733ebf835eb550628e87cebba1a12ffb4f881c8e767749" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-osx-arm64.pkg", - "hash": "d8a7135d384db9cbdf2202ccecc9a4396bfe7fb785f2fc3600d4392a77b96f6ff93efccc69d8426d9fb5d687ebec446370b4493542756c5e5d52f71bec18d76a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-osx-arm64.tar.gz", - "hash": "23043de9e69ee01570d7a99be997a38d43da69dc77a59945df780eae772b9f02d8d427062a3c9d0468a41f3783ce9755c1ebc5986f3e02bd661113ca3a3051e8" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-osx-x64.pkg", - "hash": "3bc9a8629c28c684f6ee5e403c458fadfab209c95cc86e0efbe80f8b6e4c0261b9e8556a63272600dae55298d4d464ab55d57e60997e280c3675a782e61eaca9" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-osx-x64.tar.gz", - "hash": "7aff9d90424433d35f4152dc6e31b974d35bf636547d4d1c93e7ada25703023a915a232010267842defcbeec95be0a0e0a11f568a07b225ee23dfcbff85cf898" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-arm64.exe", - "hash": "af0df4f84de32469ede5c4609f658d36489c0babbd916b0066daeb976bb43361f682d675e8ea15e3c31fbe76513c692b5fb0b8f729c459f46005bea51460d56b" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-arm64.zip", - "hash": "9af6c77e22beb3b1d0be5972d809093a33c9460207deb6de25bfbf6ebb23f433629b17b78f22337a09a1bf5ea691dae580a88d953e4d7d9e845c2620eb258eeb" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-x64.exe", - "hash": "af8500cb1f7baaf8dc6a54f07e7e5660f9aff66b75c65735a5d8412ee69e7218a5f0bd1d776c9556283e7df8e8cd6bb61ea4937729c1cfdee536840573526955" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-x64.zip", - "hash": "e42f29e7ed6b46e4eefcacb8db99809f696ba7f4e3dd98f30ca6e0ea4346d43de1870a4622ae4d775b0a3204cb9a76a0439dedd4175150de553f18e8b4bae4d7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-x86.exe", - "hash": "1725f40d2ac76544159bc262d6a30dffe2e7aa5e1e54229523d75dd89ef27acc4fb9800792d3e50b773cbcd0ead416e473be682ef6aadb9226c90079711b5c8f" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.15/dotnet-runtime-6.0.15-win-x86.zip", - "hash": "e4091494c6e347cb7bb43c65dcdc22b319b4e71da61674e43bcd2d687081bc6c255808bb25dfadc03db297a6a9ee1dc526d98faa4f2e6fe57e4ec891d556918f" - } - ] - }, - "sdk": { - "version": "6.0.407", - "version-display": "6.0.407", - "runtime-version": "6.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-arm.tar.gz", - "hash": "3f9ba3b05e4c1ef61a6afbdf97a61c42b3eff06ef9189f0f11934fa399674440602e51823190cdf1c43deba3fef7a3ebe7d1ea92933d1d07f59516aefd399aae" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-arm64.tar.gz", - "hash": "7d48d8a3814694a978b09a7c4b61c8e0dae9b5efe8195c15339d2f777fa4b85084d386117ee03b05f543d3d64b9484942e1e212001382b2e67277b30f5254b9f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-arm.tar.gz", - "hash": "02bd32822afffdbb30250ac68fe4f9ce61c6db53b7730adde190a6801342b3578702c8704774840459fbc7818b1d33b8fbbf34b68415f297c013a1d5f6294c26" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-arm64.tar.gz", - "hash": "bfe6a034e4620d2041dc1239d9195c3349ab61701f8335b332212fee537200050bd7836b3e4dd71c483ca903612a65eceaa3b872bb65991db128e78f6fb70579" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-x64.tar.gz", - "hash": "4db6099aad0852b498867ffce09c03afc5ae4c4b30e768e996697a02d7ba2f675952f4d64cb073da0e02461d1473703abaeb3d1ae8617088ab1f8158482ecabd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-x64.tar.gz", - "hash": "3cc230f21c0d60ffa4955c01d79cbb41887a41f4e97d0708170e4be8e4dc5bc261269c788c738416c28bbc7e8c6940a89cf3d010f16d1dc4cf25bbb0e2c033c1" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-arm64.pkg", - "hash": "f3fcd7f2dc6748bec713c442f8b6b346ba26a7638d8f9f998aafdaffb24402650ed928faf9aad5b2e2fde5062d372c8213e5ad3c243dabaa3fbb83bbccc0f2fd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-arm64.tar.gz", - "hash": "75b2cd3a679c3d156ec9f7fdefa9637f8684be17254636acfdddb3bb3d56da4dbac05e9f178acf46a631a21ab96a270aa20256bb3518d89fdcdf6a8d3d21e73d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-x64.pkg", - "hash": "f895adadd38bdcee8571ca20e5fab9aac8e1dfb20143446201639b52035b0d051449d2f7f97f30f838a7701969b594a3cb975eb2b7f0418b318a7492008f5dfd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-x64.tar.gz", - "hash": "3e4cfbd15ee138c8d1582ebd33a443edc7d8e055d579abc0335a288b2c26bac15d7e4fe3b80f91d56513c82318b6a62803558e3d41a28b6716d2296d12d3003c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-arm64.exe", - "hash": "37567d0145e6b8c0698d19ffb53efc23b4f289478ca2364fa9549485e395503107e2c676365cec79355228ca1d8e986f04024161a8669e4d005d72349cdd55d2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-arm64.zip", - "hash": "c824ad3110f4b35e526ce1b1410a21ba1baa1a0cc3198b0cbba78490cf4347bdee16bd1516f160ea30947a62e748b55f22de8aa9af85bc577d12a960a3bec505" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x64.exe", - "hash": "80b05ac0009ca99a690edda4c4ba59b66e1025aa94a002638317f3aa9007a993e27a30d1f48ebbdc84b9ff511535745021550bc759dfaf2ef4c48fbf555682ea" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x64.zip", - "hash": "9a5d7119a209c8b86c5c395819a5e0795eeb4eb96692c8d70cfe5ea271602c780dd8b1e3386dc5e56dedfb411b2810f7e98717cdf77ca80131ca22bb9a01a0bc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x86.exe", - "hash": "02c22e3a0056702a07132cccd425c211556a1d6905978f9e1c3c3112a65563d37f2de737089c58a946d4874c9c5e23598203a9a4bcbae46de26b8649d87fd52b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x86.zip", - "hash": "b8c315699d39ea178600a220e503c8af9713df4dfb42a24bf279171a5c1ff2782ec8e180eb8ef5dec420886d785c3498acc440f4e5776b26859eaeb2bfe57498" - } - ] - }, - "sdks": [ - { - "version": "6.0.407", - "version-display": "6.0.407", - "runtime-version": "6.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-arm.tar.gz", - "hash": "3f9ba3b05e4c1ef61a6afbdf97a61c42b3eff06ef9189f0f11934fa399674440602e51823190cdf1c43deba3fef7a3ebe7d1ea92933d1d07f59516aefd399aae" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-arm64.tar.gz", - "hash": "7d48d8a3814694a978b09a7c4b61c8e0dae9b5efe8195c15339d2f777fa4b85084d386117ee03b05f543d3d64b9484942e1e212001382b2e67277b30f5254b9f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-arm.tar.gz", - "hash": "02bd32822afffdbb30250ac68fe4f9ce61c6db53b7730adde190a6801342b3578702c8704774840459fbc7818b1d33b8fbbf34b68415f297c013a1d5f6294c26" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-arm64.tar.gz", - "hash": "bfe6a034e4620d2041dc1239d9195c3349ab61701f8335b332212fee537200050bd7836b3e4dd71c483ca903612a65eceaa3b872bb65991db128e78f6fb70579" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-musl-x64.tar.gz", - "hash": "4db6099aad0852b498867ffce09c03afc5ae4c4b30e768e996697a02d7ba2f675952f4d64cb073da0e02461d1473703abaeb3d1ae8617088ab1f8158482ecabd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-linux-x64.tar.gz", - "hash": "3cc230f21c0d60ffa4955c01d79cbb41887a41f4e97d0708170e4be8e4dc5bc261269c788c738416c28bbc7e8c6940a89cf3d010f16d1dc4cf25bbb0e2c033c1" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-arm64.pkg", - "hash": "f3fcd7f2dc6748bec713c442f8b6b346ba26a7638d8f9f998aafdaffb24402650ed928faf9aad5b2e2fde5062d372c8213e5ad3c243dabaa3fbb83bbccc0f2fd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-arm64.tar.gz", - "hash": "75b2cd3a679c3d156ec9f7fdefa9637f8684be17254636acfdddb3bb3d56da4dbac05e9f178acf46a631a21ab96a270aa20256bb3518d89fdcdf6a8d3d21e73d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-x64.pkg", - "hash": "f895adadd38bdcee8571ca20e5fab9aac8e1dfb20143446201639b52035b0d051449d2f7f97f30f838a7701969b594a3cb975eb2b7f0418b318a7492008f5dfd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-osx-x64.tar.gz", - "hash": "3e4cfbd15ee138c8d1582ebd33a443edc7d8e055d579abc0335a288b2c26bac15d7e4fe3b80f91d56513c82318b6a62803558e3d41a28b6716d2296d12d3003c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-arm64.exe", - "hash": "37567d0145e6b8c0698d19ffb53efc23b4f289478ca2364fa9549485e395503107e2c676365cec79355228ca1d8e986f04024161a8669e4d005d72349cdd55d2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-arm64.zip", - "hash": "c824ad3110f4b35e526ce1b1410a21ba1baa1a0cc3198b0cbba78490cf4347bdee16bd1516f160ea30947a62e748b55f22de8aa9af85bc577d12a960a3bec505" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x64.exe", - "hash": "80b05ac0009ca99a690edda4c4ba59b66e1025aa94a002638317f3aa9007a993e27a30d1f48ebbdc84b9ff511535745021550bc759dfaf2ef4c48fbf555682ea" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x64.zip", - "hash": "9a5d7119a209c8b86c5c395819a5e0795eeb4eb96692c8d70cfe5ea271602c780dd8b1e3386dc5e56dedfb411b2810f7e98717cdf77ca80131ca22bb9a01a0bc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x86.exe", - "hash": "02c22e3a0056702a07132cccd425c211556a1d6905978f9e1c3c3112a65563d37f2de737089c58a946d4874c9c5e23598203a9a4bcbae46de26b8649d87fd52b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.407/dotnet-sdk-6.0.407-win-x86.zip", - "hash": "b8c315699d39ea178600a220e503c8af9713df4dfb42a24bf279171a5c1ff2782ec8e180eb8ef5dec420886d785c3498acc440f4e5776b26859eaeb2bfe57498" - } - ] - }, - { - "version": "6.0.310", - "version-display": "6.0.310", - "runtime-version": "6.0.15", - "vs-version": "17.2.14", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-arm.tar.gz", - "hash": "1584e8ce9205b45ca4656ad62cba432e01eeae521f621189bb7ff95dc6da5979b441fbc23678e4c538e80846d1b25399cde7137c0b825c720cc0d84e3653a313" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-arm64.tar.gz", - "hash": "bff911090f813b54981ae6cf0fd4555dd034b55efbb8dc4a42923b18755c90c388f447b425b93b37e27da5aca46db829bff3e415868c9fef2e1f1e113a7b405b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-musl-arm.tar.gz", - "hash": "9f80da6ae9bfa264d54f9aca55aff15cbc9765c0807568b19c36b783071f1886c1dcec44182cf697c9f36c96a4efc0388bd8f05cf6a2317c182c4560ef673c8e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-musl-arm64.tar.gz", - "hash": "894f9f76fc50213c43816638b7a992aabdef287848d701dbf1c4a8dd30baa5d7c989b80d75e53ac973b4386ad55c30f121d17b27d0a660698f6147170a2ffbb0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-musl-x64.tar.gz", - "hash": "a98c9146127d13479c2492f1c5c941e1df2f28ac2267af7aa9002b05b37ee045822fbfc9108abc20229d5d8385c01031ab47c0206ebc104b6e33372f216d998d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-linux-x64.tar.gz", - "hash": "5c62346ce66e224df655b458e57e5fd841164407d9f6be68431f942dda299a4645c5b7c7f5d0a8f28cf1a2a21112d064c335138bca20dbe3cdf73f239b64217a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-osx-arm64.pkg", - "hash": "6f17ba516a75882d1f7176af6d442c870057c254ef7838fb59c6f931477f6345f82de5d45b260556b04d67beaf2f6dc13fd64e754d2e4db9147e5a5a590268c2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-osx-arm64.tar.gz", - "hash": "c43fb686c39b3a4671b0a75b28a650db19a4d198194d3018a19a016dfa07963a681cfbc76755c3dd2e6788f1c86cdf4ac06592ecf355efd40a6f547589668b9d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-osx-x64.pkg", - "hash": "04a65094777537973f0eb9cc53628df5173ef334514a14be4e42765a7e760d248e5b28e9e9e88ac4ad30a2c474f09b12c4e82bfe12617e4c16664cbf7597063c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-osx-x64.tar.gz", - "hash": "e093270062d7827d8ace6f4cb487370bd6029076ebe8305a1de81512ecb79c809144d6959347e5cd24da99fd2cdc9dfe2c918d4ee4112e73260facc11835ed7d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-arm64.exe", - "hash": "76b99a60cf4e25cd001a2ff2410a87e9599299d56e3235c3d0435ab00b9e8147e2fa06240a110c935cc1e83a592541a3f26412db3d5c12c03e4af63b58f45183" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-arm64.zip", - "hash": "9df61f1d1ff4a74e0976be29d42c7f027637f74b9d255a7aa4b7d90c54931c103ad610e489a3a42233287ccd4a8d9953b3b8e79ae5ea1af748f7e5bb83396b91" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-x64.exe", - "hash": "619b4acb1150cec07accaccd6de96ae0fd9a3c999bcf8d31fe37c34f3109bd9cadad74c364fb348c3a353deaa0f64ddca921692146a1250410d5324a02f41f20" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-x64.zip", - "hash": "3adb1b75a490f113908366cdd6c9d151d9df2f0c0ab41e6e410cdd8bd0906e0994b9289370848414f1c9fc3f038db4baa5bf5603a352d219106a8b709113243e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-x86.exe", - "hash": "d4e2b7749c65e8f4e48ad8f1f6ee6a78a01f2bf070aab0a58fcae53594838d92696578779291a9870fcb97830433b0ede06d82311563e3b8aeb4ade4b845196e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.310/dotnet-sdk-6.0.310-win-x86.zip", - "hash": "29355ee3beae5c6838c500d3b116da475935087a590b06462de8cb6823e4c52b65012d1a8a1f2dca418b566cdf2b7c6a71b5657e7667241912dc1ce48eff6e5c" - } - ] - }, - { - "version": "6.0.115", - "version-display": "6.0.115", - "runtime-version": "6.0.15", - "vs-version": "17.0.20", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-arm.tar.gz", - "hash": "c18f6a9da7117c7faf1f5bfd1725eb9d08672552f5b25a9b9e5f110b146e488f2f251fc1565c6470680ac7e37879560767ef3d004c33bb3b5267a5e647490740" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-arm64.tar.gz", - "hash": "d3919dec6cdbb4e0ab065c3d7216c0eeb31e856e73ee951fc6ad46c9511a20b7c890436370d43e6d7d0a51e0801389a6303f02ce008f9e205cefa5c27e17655b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-musl-arm.tar.gz", - "hash": "4f693041514bb1344b1c1a5144bf0aa1fd5a2965db768df79f6d0760208944eb98d281af080e4c181a29ecaddedcfdde82f03678204cc27895cef5c5e1dd5bf1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-musl-arm64.tar.gz", - "hash": "ff98fe117814e2e623be5c5d273e1d9cc22c0694e7e042212e4cd91605fbacc9a37cb5ca62b070abd520769511c52e9887ea3c47e9ac7d7762088787b544cef5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-musl-x64.tar.gz", - "hash": "025f21c494ed0c63e3c5acb17d4c95b51d049b9ecf6c9bde0700368fe63cf0067d74777c020f6e497cd148c68ddc0c1d807cb074aff7b520be88e6309ad1cce3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-linux-x64.tar.gz", - "hash": "821f2b3cad08162910324ed3433b7edc521f09f4f36a34f7afc766e796bc46be03fdfe7499b21ba9a885999d5f78b08548993b06b4d9bf1734d06aedf4bc2e2a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-osx-arm64.pkg", - "hash": "88b58664859261885664ce0883216e1cc47033050bcd66b173be0d91edd6a54ede4365fae6cdd4ca72050d83bccc65492b23e6684f52605a4db52d9316843f1f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-osx-arm64.tar.gz", - "hash": "ea58bde1d68ae345db3af142ee953ae041e77cfa909c510f8e0d87701a6e57436a9c1353a2f11af722a0c863e1e2656801d2d2d614cfc13c80af160751cf1095" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-osx-x64.pkg", - "hash": "53d4c58d215795cb6b79b75b5bb9dd408479915d1eac3a2ddadf663493b42888025089d33924821d3239ce9ba4e15641816d093b4d80ec24a78ff8ed0fead157" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-osx-x64.tar.gz", - "hash": "a17c1fe4435ff6d95c9f5304c976b593e8cd6634a4d6e7cd61517d9db3d0faa321b3dc6f1f6b2109b9370357f38502ca5d61326d8c99c448eff0b469be121a90" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-arm64.exe", - "hash": "5b3b649b8da9569b60be1ee6d3cd1d23e6eb5dc902e6388fe509aa8571f79a5f1ef2f514cc98d7c3f17802b459ef9cd046a379873c895c3e107849465f3d6be9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-arm64.zip", - "hash": "44befa517bae5f8de119442a55781d516164433c0669abed61b85b207bc235e30a426ef823a86ff20cf4a6ccbe4d18a8af4a4e93988bef7f010ed17f3d3a574b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-x64.exe", - "hash": "a25dda8e69bca2bdc8ed08f2b32bfb8d952b09ac83ef4ef6bb4a65cd4fd9c0a869bdea19377470e27d12d9e95c325a5c008001166f6f2b8a18d8c3e131efe70e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-x64.zip", - "hash": "db01975cf3c5ab30767d73a5a61d0951cdcd6aacd3b83fcf611461539ba3b09771db90e52934024f4d3536795f2aef6a17101e008ef867010bf3878a777c92c0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-x86.exe", - "hash": "d46aa97c376867174e87d80010315d348ebcd5e9e061ac2bc31a1351d28555ed5c3ebcceead32aedddc61871040b54780c02f94ee6019d7634d605c1c07a80b3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.115/dotnet-sdk-6.0.115-win-x86.zip", - "hash": "06c4a2403983cd2fe8bae33c1ecb79bfd6923f8c616ccc9b3ca01b9bfb5eac54ddfb66c8f09a2c0440602a9e9520685b96e67bc52cd6b09eee000e68bcc73cdc" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.15", - "version-display": "6.0.15", - "version-aspnetcoremodule": [ - "16.0.23055.15" - ], - "vs-version": "17.0.20", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-arm.tar.gz", - "hash": "72a64479d009674233607cc88c79e11c9d3955e80b1c7e549acaffd38ace337fd84c24982c6991c4437c766fc3eee3a035f9130406cd4071ef6b0b481f695642" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-arm64.tar.gz", - "hash": "3968cc6984627a521e68658f61dd0d97caf061a2582b3a133e4d13ff90718954e881f1dd1180f48458550fb02e2122a71fb2bc0463bba38f6812e173202c2c68" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-musl-arm.tar.gz", - "hash": "cde3bb818da5fd57279cea5518a5d93c0c811e90c181f188c5b1d1e9e7ab7c5875ee0f7932ab081f1419a0d1dee9413616481840f99f81c789c68b5446a978e1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-musl-arm64.tar.gz", - "hash": "c6c70694ad30215c3b1758a9e11846e3b26920d81fc0a7973972d1b085c7a131a40e3cdca3b92daeeeee5638915348091075f9f18fb18d8a0933f30985b9d2ad" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-musl-x64.tar.gz", - "hash": "6673574af4c5d45a3a78e64da3b2ad04fe15f4b68310711fe54dc5017f3ab82088ce731852164e6a8a266692d4cfac01540810344e00679289a868b7abc6f038" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-linux-x64.tar.gz", - "hash": "db41bbd6ffb061402acee12f498f41fe5987d355c9004091ff63010303cc9ea969ab233986dc11556bc6def5194883f50fdf216e1c50b26bb60cacd4f2ecd98a" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-osx-arm64.tar.gz", - "hash": "9295d3931af3b7b74c5fa2c61d49f0c270d00fbf0ab15d130f5b70e28297051341b390d36a1f09cc79a46f044099a3830f652d8a294239821d473f946d82ee25" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-osx-x64.tar.gz", - "hash": "2e73fc14f85e6cf01fd53439fdbb451496391530cf9af0b4775445383b6f70b5bacd78a0408a8cd6fda23569999fec5809a5cb6325f353fcf72cbb0524e0444e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-win-arm64.zip", - "hash": "dbe3a34d53b6fa7a08cdce9c1c0c383416c7529933a6f38a27ac78bd165e9bee97de591ad130010acc85960a69fa7b904e6c8735829253bc5d0eb2d207de0967" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-win-x64.exe", - "hash": "e883cf20145aad8a71113fcfdf9675b50f21d5e6bd68c632dcd20bf834a45496f2b69f727998820214515ffb8efcbea3065119443f75acc534b776d82501836a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-win-x64.zip", - "hash": "d35a8c55f7c44a21ff82a0264e395986a30133fa7561820fcda8228d2af45d5c48a58c27deead2bc7ec41db4b58aa18b40891e71c259cc3ae2ff7f21f27bdfb2" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-win-x86.exe", - "hash": "38eb2dbb35bdce221d5fe3485b482e98f14dd414d99a9763a64577dcb8de6f5d5ac1f0b6513cdf0bcdc46d21e90179da6cd76dd96f28f5412eafef8148f52c8e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/aspnetcore-runtime-6.0.15-win-x86.zip", - "hash": "6a9ea08c65d4092cc042a763d5dd619af2ca5a76e998887aa2b22c5c89736d7580f8bb33a245ce985d8ecae71b5a63e84f25ed1ca7a60cf0de15c8050804df17" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.15/dotnet-hosting-6.0.15-win.exe", - "hash": "0fcec40e3d4ee131dcdf8ee606a603274e71921fbaa3c0f3a7b5fdb4a1b001ce86e46ae0840b2e58ce1a930797ff68b274a46630ab7995e01633c8a6dcee15ba", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.15", - "version-display": "6.0.15", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-arm64.exe", - "hash": "880344f57b4d5b97855eb8d8ecd7dea0101f33e9a8ba944c5e3e2a4566cd9a917839e6ad17ec28ea3365c8bc992a8f873ff456c7e7a2315af007fd527e689d6f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-arm64.zip", - "hash": "25eb9d3dbfa1e82aa5f4e87c77e6c68d92ad352a4d82dfa671c2969794ef213b89e67ee337174071b7b36b8c83e1b855e329cb99538ca6dcfc33abacfeb8fca9" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-x64.exe", - "hash": "62412c45ba5ebf89b0ea2c3d9dcce3a7f05198d4db368f63956f7ae58b368baa059343a2de39d24e20ffe126145f31c72131914cb2793f002921a975e69c3bb4" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-x64.zip", - "hash": "06d0a8391710ecd531b20f11fbeb9e9d782ee247d595cb5dd2692dfcccdfb35032134f6120491845ec012d391b23aaef1f3303e3cae29399788591865c5b5190" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-x86.exe", - "hash": "5959fdc7260479d57cb9a9c842d7ccc4fee6b0bb52554c7b066c5822344ab0f2efcdb1494bb427db810d8f4e7b209cdc726dab18875eecf3253bf3a9a0f1de56" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.15/windowsdesktop-runtime-6.0.15-win-x86.zip", - "hash": "b10c6be82c2f5aa84cef1b7481e7c1ecf43efdf70a038e58ec202b5977e63b596b6915a2cc4c65d698fc39f89ed0ac6e5dcd882008d1f117b72ba4c47ae6040f" - } - ] - } - }, - { - "release-date": "2023-02-14", - "release-version": "6.0.14", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-21808", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-21808" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.14/6.0.14.md", - "runtime": { - "version": "6.0.14", - "version-display": "6.0.14", - "vs-version": "17.5.0, 17.0.19, 17.2.13, 17.4.5", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-arm.tar.gz", - "hash": "31272eaca24237e0b4d4ada5f38cd57071419a8e86896fbb1f218a812434e8e347574ebdee950063b4de7b96b921052a51616ab05463768c75ee6c828644800d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-arm64.tar.gz", - "hash": "4f559d5da668c67ed61c3e342e5ca77f2059b45bfa84f8c35b5ab4d5acb56ce75daf05713ef7b3ce299c1084fc863d5e43a4c14b1e04ce86db084b1fdd465a1c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-musl-arm.tar.gz", - "hash": "8159444062812db6104a072a0d18ad26aac32a968fc08c9ddbe88dfdb84a7a740931f0e9b66a39ab9b99bccc5e2bceb96595a58b1a8a64f451413756a5dc2f7c" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-musl-arm64.tar.gz", - "hash": "61bf31dd2e13d9b4de7474b776eed6af8624fe30fce040638e677cfcdd3ae0650207a9805fed4f6542e908636a9d598235127e5b03e082ddc19294353ccb8735" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-musl-x64.tar.gz", - "hash": "126b22ce50bbdae2cbcfdd47dd6273451ff5e80fb3318d4fd1fa5cf9fd79aced6b9683f68fb02130a699808eb0c380ae0d8a400a04f24a286d21230d7df02423" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-linux-x64.tar.gz", - "hash": "2eb1d0a35b21c1f03c0dacce94923d77e85c929a813fa9fcc885c7b045bcb6d6755511dee58f41e001aec294ba6e2163934b451c8c66065bb0bd1723c236e470" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-osx-arm64.pkg", - "hash": "b19d05c6e839e8efa0c5bdbad28a440726015861fad838d3ba2de53a98a740e4f561564603fafaf60096d692ad1707cba587fd556ef78164efeeb52f47e96936" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-osx-arm64.tar.gz", - "hash": "7c1cdab62768c293e2ba0de73400de9f4cdc061cefefcdb22030c367147f979dea241797400768370a68449270222955753d6df099236836889863915d38de7c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-osx-x64.pkg", - "hash": "fb514f5646b301db938a90f88e071744ba279a6e8727c1c95ef6d076527cc053206e35817be3d3961cc95b17a84131c344fa57d7fc3c14d6de957ab3b90b925d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-osx-x64.tar.gz", - "hash": "dc6ebb5d005c9e524ce99cb2c189d963e4399bbe8845c3c517282c601a884d62b126581e6238bbd83c173ca3fa45aeff119d6a91900780f7c4b1394f28bff803" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-arm64.exe", - "hash": "f8d46383d888443c8c87d4ae54bd42c5e431708179feed069c4244cb48f11ca68b22958fe05381d9462b33ffcc2dd2f2b7bf80b4c81cef7e5d46545a97173965" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-arm64.zip", - "hash": "8d2df4df20549ca5055bb0870ad5b511c4e9a112824d88e46375d7d4c98ec22a0e1faa66dddee2b74c9c9c4db1c28e5a9cfdf5f3848c6ed765357f00c01a8a57" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-x64.exe", - "hash": "aad50eb958272ad89627e0460cef165757bfd25e3d17e7f74f6ef5d5c0923b36143dd1aab1c309829db43217344a0848b42dc9e6d273f5293c840f98b7a2a5b1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-x64.zip", - "hash": "78940d4550c8370586e6bf9c20f3266aa42b1134337b0fa78e9c4c9fb01a4abc9237afe42b96e364c561e87b810a8bb5a16a44e0e62f2c626bd86655009bb1fa" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-x86.exe", - "hash": "5926ae3c7d37f4fed3989cb52faa1841086a9516012e9eb05720c4c4ea114e6d641224418176ca8a8c41718de624489c2e829a1412d259d8761c31dd5c3509b3" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.14/dotnet-runtime-6.0.14-win-x86.zip", - "hash": "49b83d85713499679067d23130f664a5f755a4ce203a0b235d73095da17e59f771673c977e3cc94adaab5756acea6a85c8907b0f5ed467a8d98d6e29bee7fd3e" - } - ] - }, - "sdk": { - "version": "6.0.406", - "version-display": "6.0.406", - "runtime-version": "6.0.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-arm.tar.gz", - "hash": "dbbe12b5b3760817d097c5cb3984540a0ddccb4a06f8dbbfa0cb94b2292bf251d8a76b63fa5030e3a895f772371bf99e2ce81a0476401b04968a968140980b26" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-arm64.tar.gz", - "hash": "7653939414bfbd06b4a218fe17c0c8e0af20f7b5e6929949a0adc23ac515a76622fa863bd6c46bbcc0128238f4c1aba6b7ff5ace331fde43e89921737a20eeee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-arm.tar.gz", - "hash": "adf59727438c87eeeab815bd99ee82faba8ec26e843cf19e1bd554ce55a1aac640cfda6982bf4fcf609df53f5343ee7b3575f4c1870ec170a980c40cae727d12" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-arm64.tar.gz", - "hash": "3efa9fa21b7336721324ee5e5fa2bf6876a09633b561313a6d580155884e299c5f1629ed8c58bbbb949c26676b36f2f14e00dff69afbe57ed1409b43558cc8c9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-x64.tar.gz", - "hash": "1a858c291f87581d6cf5c816e2f6204d4bb1703242d8fb0945cd15ea46afed25f337bae13055d9f49704787cd632d0f3aaab70999f56deb75dbd75ac7e9b1e78" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-x64.tar.gz", - "hash": "4553aed8455501e506ee7498a07bff56e434249406266f9fd50eb653743e8fc9c032798f75e34c2a2a2c134ce87a8f05a0288fc8f53ddc1d7a91826c36899692" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-arm64.pkg", - "hash": "a6744c3fce9e5bc9b2f274d7975993917ed56ffaed68950b07dab192328dd229c31559d6e12379255c8514c1285d363b779c9e93cc5d84ce208c3922436df956" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-arm64.tar.gz", - "hash": "1eb56eaafaef3b81593169374e44aa19e16606ec14e24dc2225f9e79466f08f904be052f24a6d2ee231b2f89473922c4386e3f0525570356817b90f9990b7a87" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-x64.pkg", - "hash": "85952140bd216f20f4db41e5b68571513f0b410950a9e1382ee6a1665065a3af1da214101c1c2e66134040c9522f3590c8b2dc5d2d47b97f21319668c663eec1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-x64.tar.gz", - "hash": "e0249710b8dcf380179b4f57559e2f6745b855d387d4bbda861c94605763bf1f4c09293edb31e33b6271395c0211aed9b2b83f9cf5cc1831ccb1bc34b45e58c0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-arm64.exe", - "hash": "5ab1438329d2cada89289a8b5c393523da03ada3a9abf74f6acbf93b7ece690d9fb836198923087ae41284ca3c0960910471666fa0b9f6dea2070fb2a890a849" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-arm64.zip", - "hash": "53d4ea1c0946bb24f9bc0e462f6968fad4efeace61b0d14ceae1870a3b53847184e18d0630bb4c4dcf61fadda601967de6e662496676d39b553f620d28b458f7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x64.exe", - "hash": "ebe7e2d4ea3bde3e5a6d4da111d87ab92764ae1bcd6b96ce14183090c641858571210d87420b079bee3bc870e6ffed4f09323f23162042d08bef582dafbc2a81" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x64.zip", - "hash": "d7ff6a0b03a68122810ae310d4c4d7425fbb8c03a01e07965983cf5d3c28367dec540d1654144eb2579874c05044324b2595f489560b840e779f8f955be4850e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x86.exe", - "hash": "c0dab4e1f640eab089d0d309e7a3f39280abf3025fb2a09dad43cc82002b228fd9fc377d94027cbb72417bb51bcb06873eb5f39b09766969432e2af80440054c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x86.zip", - "hash": "639d2428e7ef5f39608a5c04f81b72c2f90caa8525457280cb6aaeedb2e6925b8329c6a31d15ddf2d226e47c96cfaf50c95cd9a92a7b1f2860e4c4a5bd8f3cbe" - } - ] - }, - "sdks": [ - { - "version": "6.0.406", - "version-display": "6.0.406", - "runtime-version": "6.0.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-arm.tar.gz", - "hash": "dbbe12b5b3760817d097c5cb3984540a0ddccb4a06f8dbbfa0cb94b2292bf251d8a76b63fa5030e3a895f772371bf99e2ce81a0476401b04968a968140980b26" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-arm64.tar.gz", - "hash": "7653939414bfbd06b4a218fe17c0c8e0af20f7b5e6929949a0adc23ac515a76622fa863bd6c46bbcc0128238f4c1aba6b7ff5ace331fde43e89921737a20eeee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-arm.tar.gz", - "hash": "adf59727438c87eeeab815bd99ee82faba8ec26e843cf19e1bd554ce55a1aac640cfda6982bf4fcf609df53f5343ee7b3575f4c1870ec170a980c40cae727d12" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-arm64.tar.gz", - "hash": "3efa9fa21b7336721324ee5e5fa2bf6876a09633b561313a6d580155884e299c5f1629ed8c58bbbb949c26676b36f2f14e00dff69afbe57ed1409b43558cc8c9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-musl-x64.tar.gz", - "hash": "1a858c291f87581d6cf5c816e2f6204d4bb1703242d8fb0945cd15ea46afed25f337bae13055d9f49704787cd632d0f3aaab70999f56deb75dbd75ac7e9b1e78" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-linux-x64.tar.gz", - "hash": "4553aed8455501e506ee7498a07bff56e434249406266f9fd50eb653743e8fc9c032798f75e34c2a2a2c134ce87a8f05a0288fc8f53ddc1d7a91826c36899692" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-arm64.pkg", - "hash": "a6744c3fce9e5bc9b2f274d7975993917ed56ffaed68950b07dab192328dd229c31559d6e12379255c8514c1285d363b779c9e93cc5d84ce208c3922436df956" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-arm64.tar.gz", - "hash": "1eb56eaafaef3b81593169374e44aa19e16606ec14e24dc2225f9e79466f08f904be052f24a6d2ee231b2f89473922c4386e3f0525570356817b90f9990b7a87" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-x64.pkg", - "hash": "85952140bd216f20f4db41e5b68571513f0b410950a9e1382ee6a1665065a3af1da214101c1c2e66134040c9522f3590c8b2dc5d2d47b97f21319668c663eec1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-osx-x64.tar.gz", - "hash": "e0249710b8dcf380179b4f57559e2f6745b855d387d4bbda861c94605763bf1f4c09293edb31e33b6271395c0211aed9b2b83f9cf5cc1831ccb1bc34b45e58c0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-arm64.exe", - "hash": "5ab1438329d2cada89289a8b5c393523da03ada3a9abf74f6acbf93b7ece690d9fb836198923087ae41284ca3c0960910471666fa0b9f6dea2070fb2a890a849" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-arm64.zip", - "hash": "53d4ea1c0946bb24f9bc0e462f6968fad4efeace61b0d14ceae1870a3b53847184e18d0630bb4c4dcf61fadda601967de6e662496676d39b553f620d28b458f7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x64.exe", - "hash": "ebe7e2d4ea3bde3e5a6d4da111d87ab92764ae1bcd6b96ce14183090c641858571210d87420b079bee3bc870e6ffed4f09323f23162042d08bef582dafbc2a81" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x64.zip", - "hash": "d7ff6a0b03a68122810ae310d4c4d7425fbb8c03a01e07965983cf5d3c28367dec540d1654144eb2579874c05044324b2595f489560b840e779f8f955be4850e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x86.exe", - "hash": "c0dab4e1f640eab089d0d309e7a3f39280abf3025fb2a09dad43cc82002b228fd9fc377d94027cbb72417bb51bcb06873eb5f39b09766969432e2af80440054c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.406/dotnet-sdk-6.0.406-win-x86.zip", - "hash": "639d2428e7ef5f39608a5c04f81b72c2f90caa8525457280cb6aaeedb2e6925b8329c6a31d15ddf2d226e47c96cfaf50c95cd9a92a7b1f2860e4c4a5bd8f3cbe" - } - ] - }, - { - "version": "6.0.309", - "version-display": "6.0.309", - "runtime-version": "6.0.14", - "vs-version": "17.2.13", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-arm.tar.gz", - "hash": "43c4727c89724ae3a38e8f21b694ae80fa60f38b36fca7a25b5163886645f9a4e67f04af6e2f9711102cf0e6c67ac1a60e05d80297715f282b3ace1300e044e2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-arm64.tar.gz", - "hash": "8917a8471df7d872e1cdb93acf81cd8d2b9b1bc027ac9255e940f27df28a237d4a105b8a21b9295b55ce3e4e8ec3401edf5e5a5a4ffb58bfadb22531b4ebd377" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-musl-arm.tar.gz", - "hash": "df5e5fc912039b57b42b9490db625dc131f2dfcb3da48b3bf2e93ebfd4e6fed157867dc3df69fad3a395f1f7fe17ebd5994476832be6f5bf1681ccf81d5bdd6c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-musl-arm64.tar.gz", - "hash": "f7475d8df272fda76d555657746317cb2d1a926fce1500865f58193cc4f64008aaa66c1f596c1873e2355ccd5d2d3357195213edd5943365bb05e08cdd2b8369" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-musl-x64.tar.gz", - "hash": "352252f9226241605232ec1474dfd992f7cfba2eeca1de7df294739ff426fbcb97aaf8fe34e6c67e4585eb88831c317b3345f7cb36710b01199512d1ca666a9f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-linux-x64.tar.gz", - "hash": "c849d2d825e7054da2a9c34ca6dac0d9c8cbb54956b8d096455afc37fe648609f28783ac4214dfe9629be8df3c3e00372784481d72bb155b338c13a9877bbd88" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-osx-arm64.pkg", - "hash": "5547e5c8eb1b381a1adb6aafbe5ffdbb94485ea5a431e2473efff505aef7af7d1206f357203e5ccbeb8a4bbcd6780ef7345c8ee2768744dae6db2b74e4a891ae" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-osx-arm64.tar.gz", - "hash": "b083d4605a70fa790dbee9c18be7173df478a6aa94a3f84e0859cc9e04dd4eeff3e2e0aa89884920f3320a97b9f77827315d0cad49d24c312a5b1a108fd3f144" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-osx-x64.pkg", - "hash": "cd87d7eb2371ebd37e5df38302c949a0e002f1e8e9773f3a7a9ab05194e6dd9bf85a69b39961fded066624f87e3c24f3e5071d5d7b28e1e19f7fc32ddc4d4427" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-osx-x64.tar.gz", - "hash": "c50f3f1dea5b3f02fbf8d64b7988112e9cf76b32955737b13429895c1688f8ded45d86efd8d537f3658b21a75bd63a4573f6cb55692feee0a9be8a003a45439a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-arm64.exe", - "hash": "cb71d158520b8b47d7d4ac71551d7fd4d552d4fdee7293ab11055d63ff0085df0d1f31c3018a0352cf2e1dc63c14aae35d39995fc8017a46d90b4d1466e0026a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-arm64.zip", - "hash": "c8eadeff8417a0ead037f27f72171d711d277fabcabc34a02fa1066c5c024048cb89cbf242a550c455649286a9d35e0c855cdde1225d93f869a3db890712edf2" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-x64.exe", - "hash": "6e2e9e4d74e9ca1ec66ef2f8b7017d1599e3fa7bd629c2894126122e16d07b62b0b07bbcb65052665a3bc62efdd3f698af04bb650fb2a3830faa44bcb3d99179" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-x64.zip", - "hash": "a79e686733779ec0e7e35827a4b65f13e8eec1876bef5d1433859e0042726e553f31889ae122c24e95e4c6bdb78f477b53ac5d055f190ba5b6d7cc1b8222d58c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-x86.exe", - "hash": "e7bf7860422b01feec414288675e1fa0291b28ee8aedbf29975965c28f03816ae0e078f72325969ad0f00e4a93e7476625cbe757c793af66e9f2fa04d9963ce3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.309/dotnet-sdk-6.0.309-win-x86.zip", - "hash": "8862781de9c418d7ae87c7dcf23a0f0b37215d21c36b6ea701307389e269d22faf3e185d9b49bbcec88b0eeb94c92c91bbd4f583eda8aef33285235968542804" - } - ] - }, - { - "version": "6.0.114", - "version-display": "6.0.114", - "runtime-version": "6.0.14", - "vs-version": "17.0.19", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-arm.tar.gz", - "hash": "2dfea36628acbdfdbaefb4ac02c4b741a4585830fc3cb2ac774f235bd1589ddd246b660e73a4e83577c045d327fd16d1422f665bf37a0fd90cf2345c3d9d696e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-arm64.tar.gz", - "hash": "1c55c38ffc96a9fdb092fd9d1c31921d10f40fb4d02be0e8a76c958af79225053214664bdfaf6de1dfc683b435da0aa35f51dba08347d0765bbfce21226de165" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-musl-arm.tar.gz", - "hash": "5c78b66a786201768991a934b5efdce44bb85aa838b797bb3536b12cba899c24210342769923866dd0167ff435b62ed993442842edd33dcb519bae2022388736" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-musl-arm64.tar.gz", - "hash": "c2cbaf8c378ee59f4852737195d050c2d93d2836c21b3961b33f5bbf095e5c1ff2d9b86c16cc11f8b9140eb3c7229bd583589a5f8c7f3a644a15f8dc3032459f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-musl-x64.tar.gz", - "hash": "52c2ed644120e94b953996b433aa1b8467fe7762a27bf3cb4c75a64c63cf41d0086e44302d7ea453508c6999998d5b1e1d83b74fc860bc2ec1300d3d714144d6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-linux-x64.tar.gz", - "hash": "e952046cdfc61632effbb37cd109dc3b1f16fd3a82d506da03f0f528e11560195eb132838e569c428d03bfcfca0fdc76bc1be284556e636757777216a800ee37" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-osx-arm64.pkg", - "hash": "b799b28f507caecf33b60587edf3ba56ac68af23ffb7842c00a01c5347e55153a75a2f1e4a06d31f2645958f2f7b89701fc3e872ea87770f1cbd71afd26332c9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-osx-arm64.tar.gz", - "hash": "d35824cd41a5db1b848b13c4e25a4ea51eaf6733ffd9112c1832425faa5b85bf9f7eb44bd78687c453d603bce3f464c61d3c5f93c8b6ce96e34c13f962d74b22" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-osx-x64.pkg", - "hash": "f37f26d8cdc078755b48bd43efd65e64b427a69d1d0a306c2dd70fd8f7ac2b7d1691cee905dcab704882583c114e4e026a41e4e9d7a3de2fc76453b587696474" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-osx-x64.tar.gz", - "hash": "f00a75c298cf08a1db28d84e9fcc650dbfc219bb293f7c73e3e2f601d155df65dc67872a6168b2bc000cd21ad5010d9001614381aa5bcef9ef7c415a9999661a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-arm64.exe", - "hash": "4d7129f34733939ea4d490c0e80798868f7d171059b102f2999cf72337d0d43358c7273d062da3b5fb9ebacdc53e4ec6a37d0845d4f9688036270040484419b1" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-arm64.zip", - "hash": "a99f69d9b2cc1ba686f55b6a55ae1ddbd7294c6836f86ea0998f1e8a0bb3ac9139d912fefb7a7996665e8fd7e7d7f74bc617d1f40d86d712b37e7fe2a19ee7e6" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-x64.exe", - "hash": "3c92189f32e24c4944d000b721e0fe96e3c80bd04ad86c6af8c7bfd3a610c522741c56dbad77b4211409b4b2bba678323fddd2c27155ac35b7caeafc30076ec1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-x64.zip", - "hash": "12c06d2c6cb9f630a94649d4ab439c23dcf3b8a05bf209f0d61d2852b27500acddec84b995f754efc30de39958aa6ad0213f6e3f5628630aeada9e302962a8d6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-x86.exe", - "hash": "9b0af4fb48920e21cc378e2321304b255433e373c56c4bca719a26582c5082ac9a3408fe935f1dd3b01297814f3d08bb5b2bb214dec9c41891ce2515f5a51275" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.114/dotnet-sdk-6.0.114-win-x86.zip", - "hash": "abefc7b0794e3da925f06ebed0f65014b89495868309244770ec8b16301533fce35c4c2f062401a90fe3ffe14e34d5c0c92135aad12fdceb72f870f36e2b1491" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.14", - "version-display": "6.0.14", - "version-aspnetcoremodule": [ - "16.0.23024.14" - ], - "vs-version": "17.0.19", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-arm.tar.gz", - "hash": "a127b1e0cf2384a50286f389c6335a2c640cb9204114a47d7978e1cda7e50982be9c7da764d0463237f393b24fbf05a57a4658c80cbf8ab168d95b86a9fd0579" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-arm64.tar.gz", - "hash": "9f60b61c7ff41d4635181f8a361796ec390041a307b131e8b29a97776bf0539ca8991159123ff4bc80e0b88d65d245e0d311c320bca29285d5499d255ff4372f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-musl-arm.tar.gz", - "hash": "5649ee77cf4ea65893cf1d824593b4875fdf97a4d1fc9cf42ea668e50e9cebd4d2dacc231c4f2ed22c0529589736e73a9d272affcff2d3a5746f103a78e6dd29" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-musl-arm64.tar.gz", - "hash": "a4bcdf642bcc837c26d9d90a94e49318a579475f60284b89b824dff29f26d346d2da14ca6b5ad57df089b4b7174a4c9596b97dfae620a1a19f7afb23cedc0910" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-musl-x64.tar.gz", - "hash": "35fcfb6ba2048f1f942f667ffb333b0983347b8adf7b7d3db5152a222931f8b86fe5c62cb2fd45bf95a89e752056a946465ef546de295d32a911ac2c21acdbdd" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-linux-x64.tar.gz", - "hash": "87f22bef951d00f6d55f30855e947f37f19a44b93e52bebe568d0aa0ace01462e9e6081140a0e771712ef9f032e7ab806d122ff99247a5725ae382828e8b394b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-osx-arm64.tar.gz", - "hash": "8801c5e80a94d19daea21e30d3365b39124d26e106582814a1d9c06a4d6b27e9e277416acabc28f135b1c95a88625e33521902039a1f56c88520578529842c5e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-osx-x64.tar.gz", - "hash": "71d1d293e6e1812bfa0f95f0acfd17d1f9cc0545dda3b70e2188c8b2214e94f4b2af2976d71691bd1636bb4c614a55cc9ca1041a56c2902266a12b3285de8dcb" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-win-arm64.zip", - "hash": "9dc273826bd0906d0d941f5f439c76c620e6bd452254cd27324e1b3b400a7ec6f4d41f6810ba71ec8bad602a0ab72bf563386db8de3fa6038af434c54d83396a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-win-x64.exe", - "hash": "8b94e16f132299bf79b63cd688efe2b5fa56a387139a29d3a6c66a433e0ae51e1ac822e1f1e4093ad16fba7495ceceb7a6b0463da946660c66ea0ee0a2a05060" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-win-x64.zip", - "hash": "5daf8e2e9cb8e310e2c9690bbf13c3920b9fb4a1c9e4f34d2aebb279bc9e1df83f2c1a588fa9fc39317c9e8a499925409936f2ae886ec85fb322ee618926571a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-win-x86.exe", - "hash": "b1c29ab498af9e9c430f9dee12f87c8db91c2bdfcd6772841f8cef979d598c3bd1530d011575dd460648a79f0a418ce9a785e045098e543bce88e7a5d129d68e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/aspnetcore-runtime-6.0.14-win-x86.zip", - "hash": "93a787501c6377cad12fc3ddef36c340d373f73a1887538ef099afdb2d2e8f041e46b8b01d33c3c0ba8a0677719fb041ab7f84e5da81c41462a03c56d09a6a42" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.14/dotnet-hosting-6.0.14-win.exe", - "hash": "03146627b15d82554147f24559eb08bdb41f155658cdd04a3a33b8a12f4f92822e5e8407e6823cbbca36ad46911ee764c646b3c272c11a57b08672f9e4d7a660", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.14", - "version-display": "6.0.14", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-arm64.exe", - "hash": "fb441825de7c2d671eb4c10f909ae4a075652d99eac71eace573af0937da72d1af235d930e0607e07f2167744718cc9b6e441547b17b2990eb6d5211b43de495" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-arm64.zip", - "hash": "1987e17dc6e11ead05123a48c5311fd04ec825dac0bd4635cc5aa124b4ce2eaa22a9666741e9e110975cc8820acf08f685e0507ee54648bce58896fe2e33a1fa" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-x64.exe", - "hash": "5281e817571afa6c5d848ed9a3fec4cb568ad8c05633cbd97e65e52f4a929d9947c390b9b3a72da6464c89450576d318b253d190776bd357327fc27031c7acdf" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-x64.zip", - "hash": "5f2db749213cd155a51b4c5e825da78d4983d065c5c1cde3ebd21cad57c906a24ee2e25ca4c62c97ce82a09a39325f0a1c066e318c59ec545ba744bcf29bb12f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-x86.exe", - "hash": "3758549cc8d942885a8cda9223a63a795110f73483bf9674f7f8c3ae4d943e8aaced49cb2f452989cbcbf0b5bd62865b8a51d5bb72ac2c4a404cf60722c21127" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.14/windowsdesktop-runtime-6.0.14-win-x86.zip", - "hash": "a43086d34b5760cfa4305429c03f124c0755b1b06b01658a11660dfe6727b57df13e4cedf53c4ee7cb0c20756a6ad3b5da13573df0958b0d790d9ed6a823b3bc" - } - ] - } - }, - { - "release-date": "2023-01-10", - "release-version": "6.0.13", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-21538", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-21538" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.13/6.0.13.md", - "runtime": { - "version": "6.0.13", - "version-display": "6.0.13", - "vs-version": "17.0.18, 17.2.12, 17.4.4", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-arm.tar.gz", - "hash": "12468a63224f2d13925ac9a8f8337d166de81cb0afc2a1f141b2990f605a67ae0aa1d31ee1374b25c541abb400fa82af3ea74a2df6b77c3f6b3ade870c12aeeb" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-arm64.tar.gz", - "hash": "f70c8e51c06f9563f33a9a1486fba1487c7ca8f2f77a2de02d382f82bb041b6c432b9cd3a399a4a4e0188b8aa96dc4cc78e9147fa0d0c4fca7fffaec55c38903" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-musl-arm.tar.gz", - "hash": "02f816b20a58b196577928ef053b15a5aa3c862395d3eccb5e5fa97e94faee89addc313b5d0beffe6ed3763df169d3ba4b94744fe376bd570b4e09d176c5e82f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-musl-arm64.tar.gz", - "hash": "8c18fabb3b1418915cffbdabcd3b04398f45474818128997329de3a22f7cdc9e894993a958a7a497dc6c335ff56a80f4c2b6205ae0aa16b4dbb8fe3c15bd7088" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-musl-x64.tar.gz", - "hash": "58ca9a0e4fda836f6034a175cf970a722786e97778883519a034c3caa0f6916491a0c03c4ffa9f7b1f346cd7de0f66533ee9d12132aa474c3d8902235f60e98c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-linux-x64.tar.gz", - "hash": "af52e1df5e48a1b7465f8137048e9ec292104526c65e415055e5f4630a13f1d4974ae831a143dd4f17e2a813502d90e2c0aef37c6b1eb7a23d01af7ffca5400a" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-osx-arm64.pkg", - "hash": "4b9638ad22b65648a6836c0c887105781ebb7bd6b41dda21a4cc0d16e2c420b8d68923d5cd7f89dce3d1ca21180627ef17ee27b318b9fac1e7d3472da8cc10e8" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-osx-arm64.tar.gz", - "hash": "73df25201ec16156ae57569308e1d620ccc1a28c86c2485c337a3a793e00e2ed2e2eb991ddbabf6e5db310c8e492eca5f0e8297144c4e10afb5b8c323bb75390" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-osx-x64.pkg", - "hash": "e23218bad86c2f9f2fbadaa275db05d8c882b3e004d13eda5755f4fb63045d24422d6b608f72edd887af7aa822b9012549eab942e2dbae70dc1e9425122c02c0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-osx-x64.tar.gz", - "hash": "39ee6b678cd6cba46acba9a616df18814e1cb4bd94f276efc5e6e87644f48ec427b155a8e31e63383b3b9281b2f7f6fa73e3be682df65984b11338c5fb12fbd9" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-arm64.exe", - "hash": "77fd1e643c7f1121cebee0b910326e376f758eb21e6ee24cc1cb8b95674af23b5b99d9925cf71a5b48bcf8e76d6e9a7f461a12d72ec7fdff5848c83385439cb0" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-arm64.zip", - "hash": "0b09eada28e47856caf35fcb5f3c78323b598e8e665e189b9f2b8953f2b44d715dbc1663701e1304ffe906952582eb2c174b7dd0e266aec5ca97d7fa746bb426" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-x64.exe", - "hash": "b0fbe2077b8f0195839f0695877bf44c971a753d9c2a41add6e3000bd734a4cb0c6f09e0307442c1f95c7bda9071c2b633ea0f477933e5931f86ed8fe4982852" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-x64.zip", - "hash": "948ae03aec80f4cc1caf96dafce4a443c6f82a03c265ee61204ec1201ba61a4d9c9a2114ec5ba4ec4c56131bc3104d11ebfb5ae6f03429e365d30fa57a1163b4" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-x86.exe", - "hash": "ab5e91eeb4ba8abe301265f5e87011690f265f4af8ddacce1fce89f731c90a25bd7d921a29e5ff5e8981902961aafa8af07c799f9d3a188f35d0e8c37e59ed73" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.13/dotnet-runtime-6.0.13-win-x86.zip", - "hash": "8b36b4ee8f1abe4be6e48f7d17a815ef4a7c591fef8d5cec2e8d33905cefa91f5f14448f7e33393c8c2268782f255ccd6a6b6eb10a7d69efa986095ae862b3ef" - } - ] - }, - "sdk": { - "version": "6.0.405", - "version-display": "6.0.405", - "runtime-version": "6.0.13", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-arm.tar.gz", - "hash": "c35fb905495f6eaf8b26ea6d61bcc59a56da8e7f3ac70dc8e620553d4baea81f65412bbed1099a724b22a118e09c4e290510434ac593d2cf6cf18db7cf370268" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-arm64.tar.gz", - "hash": "6c31666a95817a7049bd47717c9cf9ab159e94e90987f46883e272dc6dee92fb0d890f4e590faca4458cd2b3943133fb2fa58c2fc175db98d4c6c531f6b2c3c3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-arm.tar.gz", - "hash": "3e9d2ddc087900db87c2d149e59a7036c656c2c2ecc449bbaee1d92ce0d4186458d4dc8d666f8274fcc870b55569d3575beb03f9b7010ead9d9f6ee525020906" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-arm64.tar.gz", - "hash": "2eb9cb54ad58a008424cdb954a62c510f0466682c0bb907584db27d2de370706704a61798177f3dc9c447d8153bef2eac8417ebab07c65807a19d23d5468a037" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-x64.tar.gz", - "hash": "ca98ebc5858339c5ce4164f5f5932a5bf8aae9f13d54adf382a41f5e6d1302df278bd7e218ecc2f651dcf67e705c40c43347cd33956732c6bd88d3b3d2881b84" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-x64.tar.gz", - "hash": "44e719c67dd06c73a8736ab63423d735850bc607adf4b8a9f4123945b13014f8144b4fb2c4cfe790d323106b7ce604388cc5d617bc153fd7820878b9187a2cd4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-arm64.pkg", - "hash": "d371e3c64bc2c3f797a2f240db33a17e38607f903b546a1bece9fb7e10601a6e4d730373bf475e14b327670097ae31f8863c9c144e0dd9d9947f414045349ccc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-arm64.tar.gz", - "hash": "fb1a66189cf54b14d1176ca9178673bef55aebcf16ce7616ba6b2d988b3152be7ad6d230d8369fd3a503f46d1f22d9074da8a48837118648821f7160f1c5533f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-x64.pkg", - "hash": "3b97ef97880a062ed5436593d0fe8a68d3b906bd1ce4ff8215fa67b185ea25d782085beab9472b8bb6dc1679358e2bbc6dc896113fe4d415fd99e2eb260d2f24" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-x64.tar.gz", - "hash": "2a6050d72b3b453e8f9fbf73e40c1fc10b148c7cf6b5e6c30dbcd322567dec1450813b514361015629ec952718a61a5f3b8d67db9f0e7a32b149fbd874511c22" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-arm64.exe", - "hash": "9988866b43640824dd7ec1bf0f890ad9442b074f356810c436198a3e482592c4898d31239254528a89b522b4e0f55a380a8ad8d81a00b946b5b01417a2c30fa8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-arm64.zip", - "hash": "e527f46aac53322029b499b5395209906fd8816200e6870a87261c56b0d78002f4b160333d2a7546e9ff54e47e1489a02971de8b6da6c6f1f07d9c74bf23f8f0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x64.exe", - "hash": "3939fed60bc9a19f237521f31cf6a48b5d5cd612b70f4aad30e93a12dd4a015519ce66674eef6473a4393a7926d7ea1ab5d5723bf746da1d8cf7fefd8040731c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x64.zip", - "hash": "dde215d2021a5b099d464667cd1e9b200ebc38249e29df9129cc5f9cae657471ffb8fb2238d7d7c4d1385a2bf73cc63944404ce65715099e983552865195b005" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x86.exe", - "hash": "506a531862ed2738f925eb1f6ad69fe6ff65388971e2ce10a663710f0e43068f2b9e3d5f845bd670f5e712f4696a86c385b6d57c86652ef2bc2d1de930924b2d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x86.zip", - "hash": "45ab06d95e41584cff8644aa49b296f2483bdfb0948f28e330b557288983d45ee9350bedaeed722a9cab925033a4997dcbef9648b54140efcc5b858ff741aee6" - } - ] - }, - "sdks": [ - { - "version": "6.0.405", - "version-display": "6.0.405", - "runtime-version": "6.0.13", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-arm.tar.gz", - "hash": "c35fb905495f6eaf8b26ea6d61bcc59a56da8e7f3ac70dc8e620553d4baea81f65412bbed1099a724b22a118e09c4e290510434ac593d2cf6cf18db7cf370268" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-arm64.tar.gz", - "hash": "6c31666a95817a7049bd47717c9cf9ab159e94e90987f46883e272dc6dee92fb0d890f4e590faca4458cd2b3943133fb2fa58c2fc175db98d4c6c531f6b2c3c3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-arm.tar.gz", - "hash": "3e9d2ddc087900db87c2d149e59a7036c656c2c2ecc449bbaee1d92ce0d4186458d4dc8d666f8274fcc870b55569d3575beb03f9b7010ead9d9f6ee525020906" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-arm64.tar.gz", - "hash": "2eb9cb54ad58a008424cdb954a62c510f0466682c0bb907584db27d2de370706704a61798177f3dc9c447d8153bef2eac8417ebab07c65807a19d23d5468a037" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-musl-x64.tar.gz", - "hash": "ca98ebc5858339c5ce4164f5f5932a5bf8aae9f13d54adf382a41f5e6d1302df278bd7e218ecc2f651dcf67e705c40c43347cd33956732c6bd88d3b3d2881b84" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-linux-x64.tar.gz", - "hash": "44e719c67dd06c73a8736ab63423d735850bc607adf4b8a9f4123945b13014f8144b4fb2c4cfe790d323106b7ce604388cc5d617bc153fd7820878b9187a2cd4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-arm64.pkg", - "hash": "d371e3c64bc2c3f797a2f240db33a17e38607f903b546a1bece9fb7e10601a6e4d730373bf475e14b327670097ae31f8863c9c144e0dd9d9947f414045349ccc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-arm64.tar.gz", - "hash": "fb1a66189cf54b14d1176ca9178673bef55aebcf16ce7616ba6b2d988b3152be7ad6d230d8369fd3a503f46d1f22d9074da8a48837118648821f7160f1c5533f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-x64.pkg", - "hash": "3b97ef97880a062ed5436593d0fe8a68d3b906bd1ce4ff8215fa67b185ea25d782085beab9472b8bb6dc1679358e2bbc6dc896113fe4d415fd99e2eb260d2f24" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-osx-x64.tar.gz", - "hash": "2a6050d72b3b453e8f9fbf73e40c1fc10b148c7cf6b5e6c30dbcd322567dec1450813b514361015629ec952718a61a5f3b8d67db9f0e7a32b149fbd874511c22" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-arm64.exe", - "hash": "9988866b43640824dd7ec1bf0f890ad9442b074f356810c436198a3e482592c4898d31239254528a89b522b4e0f55a380a8ad8d81a00b946b5b01417a2c30fa8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-arm64.zip", - "hash": "e527f46aac53322029b499b5395209906fd8816200e6870a87261c56b0d78002f4b160333d2a7546e9ff54e47e1489a02971de8b6da6c6f1f07d9c74bf23f8f0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x64.exe", - "hash": "3939fed60bc9a19f237521f31cf6a48b5d5cd612b70f4aad30e93a12dd4a015519ce66674eef6473a4393a7926d7ea1ab5d5723bf746da1d8cf7fefd8040731c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x64.zip", - "hash": "dde215d2021a5b099d464667cd1e9b200ebc38249e29df9129cc5f9cae657471ffb8fb2238d7d7c4d1385a2bf73cc63944404ce65715099e983552865195b005" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x86.exe", - "hash": "506a531862ed2738f925eb1f6ad69fe6ff65388971e2ce10a663710f0e43068f2b9e3d5f845bd670f5e712f4696a86c385b6d57c86652ef2bc2d1de930924b2d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.405/dotnet-sdk-6.0.405-win-x86.zip", - "hash": "45ab06d95e41584cff8644aa49b296f2483bdfb0948f28e330b557288983d45ee9350bedaeed722a9cab925033a4997dcbef9648b54140efcc5b858ff741aee6" - } - ] - }, - { - "version": "6.0.308", - "version-display": "6.0.308", - "runtime-version": "6.0.13", - "vs-version": "17.2.11", - "vs-mac-version": "17.4.4", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-arm.tar.gz", - "hash": "487434d26d95981b7573bfa466f4290de1e58ab331ae13a9c411a8da48db33bded20f913d403959358f85d15f39758d09561daad6d622884c77e7e04c3521ad1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-arm64.tar.gz", - "hash": "b327e8b60ea604b82732e45d1824d889c18e68cd75cd745fc7a83acc282a6934d34ac241d8ae1fb17b4477403f9fa535c6150ea17efa434a6948c5727a927ffb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-musl-arm.tar.gz", - "hash": "a57dfbde7d37f78546a22b8895d79142b3929870404a86125933eebc08b15b6583037948392bb6aa63537054f784695da5b8a8f902bddd3be19d0db499a4ea93" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-musl-arm64.tar.gz", - "hash": "38b2c4424067c058520fa073ff6fc6a3bee2beffd3bf9f0c7939572f49283f6e49081b020cb46818793fbcae881a5d3f0d96c947fb865cad62d1a782f96959e2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-musl-x64.tar.gz", - "hash": "0b0001340eb6b2332cbb4576c97d8292b5c345e6ce6432f9344dc2e1a0c7686b9017c03d72cf9c1bfe704129c753682ed3fbe06f183ba2da0b35e546a3b6d046" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-linux-x64.tar.gz", - "hash": "98be42c7606eeecd91fb51ce0f9106e292754d92eb4e4c6068e53f82b4fce2cd09d954bb32a5ebc12c3df3802a7b0a7047dbcd978d6ae7c7708c7b4a373fbbd2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-osx-arm64.pkg", - "hash": "f54914097ce9141933953318191268f74a0ec37af1de23823f8ba20aa953c3fafbe29c1ada8ced1747904482bb2f187ecc94058ad7285c0244291214d47d164b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-osx-arm64.tar.gz", - "hash": "86d353b42b13c9b5cecb2a92ddf9b66a1ae2d39cb9c6ec0b93e603c6b2feb84f36190471f63fefe78a3effe8b92719b919e69f95c44a92a8472566a097e4dd8b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-osx-x64.pkg", - "hash": "ea89f374e2c049062e41910ef75ba04c5388e20762268c190318674c8a58a64898fe9e3fc3846a7ab2f002cae1553fa891e463a7346616c77381e496f42be388" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-osx-x64.tar.gz", - "hash": "246494004f58f017b23e2ea063da78508f99aae1896341cd08ec1af1d8220f8ad8aaa390836bd2f8c415eea55dd5ad0c7aed2b477ed618d6a0f402ff7cfae5aa" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-arm64.exe", - "hash": "99605de056440a5bd06dde9c07cc3fa3e9e5d834a50e836e567c111255bfff9f691494ed610d327f60c4f1caf97f8092211a972b740ce7973673ed256949b6d6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-arm64.zip", - "hash": "0b5dedac60221ab82d2c081a18e1ed84aa3e07f8f7b892f189a15f729e904ad435d0fd60cacece478a5686e4270889cad520e7f0cc759ce3051ad3e6d5c68735" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-x64.exe", - "hash": "c94453a2fc1881f968ba1e1e4578853f91d3f30a35ffe8f26a508aa81ab894b06f89bb477f875006c1be6c23507255c83969d530569077fc3c61e5044df79ddb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-x64.zip", - "hash": "efd727b050729459b6f859baa116e43b183ec9a0a4a06b1c6feec08a6e66b1c9a4eae88b0429540480f06d4ca9f3694a16cfbe2cd91fc31fddb82d5e7521d103" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-x86.exe", - "hash": "64a58a1cae893c92296513c6b5b46cc1e0fbd5c01bd5de5ef9e47e178266c31e9b2b7818857aa6219ec55fb1236d87fb0ce4aa1faf81fc55aba4c74c19d4dbcf" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.308/dotnet-sdk-6.0.308-win-x86.zip", - "hash": "872f0178f4133cc95900760c69781e34765247f5bd26167817d7a1146d97578b42c492931cc67cc9f3127e7072e7f1002b326ae89a49265d55af00f072c1e84c" - } - ] - }, - { - "version": "6.0.113", - "version-display": "6.0.113", - "runtime-version": "6.0.13", - "vs-version": "17.0.18", - "vs-mac-version": "17.4.4", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-arm.tar.gz", - "hash": "98b69de67d7f35e674662a1b942b70823dd946db969b9ecaed2a92395f07df925fce5901cbda70393061172b44eed4967efa4ec3f223c8d7725cedd9c33fcbe8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-arm64.tar.gz", - "hash": "136c4b518ed5e382d5772317e556965669ca5b511cee8130468b0fbf1b3c436a72ea4e13b226d37236af1714dfecff6bf6ac88f6ac2bb07dc19a280569bd9cf8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-musl-arm.tar.gz", - "hash": "78c10d1445ce9f28a61da19bb2a5ecf6835376596cefa6a1bf855fba9b6e2b4d74f5abe8a44626b93392c8f23fe45a7fe0f22da5a382f84ebc5d1fcf49278316" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-musl-arm64.tar.gz", - "hash": "5e13bc9a3a0aef8daca3658d48798aff34604d2e58f7823246ccaf29486aec059b4b529e1a4642d4de6f485d2afa170071bb018afa9f6a042a94c9525277a4f0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-musl-x64.tar.gz", - "hash": "7d5bbf8e7cdb1a03a8ccbfe9478f5d547d1b3df1c005efd60a1fbb5c04f66ef72ff8159491ad052889581c2ced7c0f78068faf40ed8bb7a541076131d64aca8e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-linux-x64.tar.gz", - "hash": "15c0ce0b84e27072bb3c59e6f14ceb3d01481030fbcedc560fdc2ad5140b90492886fa17ca4572d945a051088bb514cff500bd68716f4538ebb5e9e049182cb8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-osx-arm64.pkg", - "hash": "ef698f5dcd65ac5ea50a0624a4c7b2332340b4560aff7fd7d8d5a547b356c15f00494d96a92e24d5c2a426cc2ec06cd41f33bb94a5053b3f719df06b5ec7efcc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-osx-arm64.tar.gz", - "hash": "dc370ecee73b4d4a1a3d3016072f5103ba5f68ebaaa366f20cbb36d77ed2cf15ea63173720ed7d1a76f03a2a44725f94a173a45c91c432848e467342276bca94" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-osx-x64.pkg", - "hash": "c8b6ea1fa0395c586d2623a6a2423b7a4c0e47411c15ccf925d944542e519cfa966cef2db4008b0ed6a76dda4e79aee7d8c91d13d198d88d2bc9dbe14328211b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-osx-x64.tar.gz", - "hash": "d61b1bf59d2fcb22cbdae59ac5685229ac310851b563cd1dc1ed92209342e59d69a8d69493f5c67a01c6a6baa159ef550e973911ded585b996d9313324e13bc2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-arm64.exe", - "hash": "42f6a6433f25d6ffa6b9d8bff5182cdf8176d7e67fb611883effbc785726e15937c316ced00e67e5793032ce679c6f39e43555dcc7b04023c63ba3931b2e306f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-arm64.zip", - "hash": "358773024cfedfe38e1999185702a5f705b368cb3c698ac5c287d510e53dc42f84159f59179d371ee66307cfaaf7292b578ade67365695f2eb6fe8a9ea4e5abf" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-x64.exe", - "hash": "524ceb167686885c66dab3000b67097876afa5d74a124568c9510c3a25357fa8e86f8adf4c0ea3b7ef9cd74e4fd26c158b4a9988791bdcb64caf4fdf35de73dc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-x64.zip", - "hash": "a4afb5799573639e34144f41fa8bb0fd16fe4063037f2401e09e39896085f78fd0a91be8311fc052a9f2ba4d70ce8f3698f022c10861e113a99fbf520d1507f9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-x86.exe", - "hash": "09d0733e0e00331f491e067b4d84f2e70e7b223cfba85376dc37b8da93e8a2bd7282242b0eccbdc84e17abb9f18e1a8b7a6d6de16ee2ccb4e68630400c33d2e3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.113/dotnet-sdk-6.0.113-win-x86.zip", - "hash": "86364407ed809271f1e25de0fc152aa3d47d33eb9f43dd560e9ff54535f88a6c2f6bf62d9278706cad4da30a97e1f26acff6c7ee10edd48dd4e9569c83901563" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.13", - "version-display": "6.0.13", - "version-aspnetcoremodule": [ - "16.0.22335.13" - ], - "vs-version": "17.0.18", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-arm.tar.gz", - "hash": "dbd1391b559d4ecb8370cb25ae06b908a3e25739863f4837f03a508d8aeeba4accf125bf7a097fa78ef37eb34cd9c306f960e8674fde46bec07429ce2c5336bb" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-arm64.tar.gz", - "hash": "72bb5a366fda26eb820c181dc76e43d3fa040feedcc76dadc9064b924c98e2c31c4d4f53e6cac5c325bbd3640b71adde2c605c4cb488435515049ffe9221864c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-musl-arm.tar.gz", - "hash": "6d7af133caf74a3b2e025bdb77455fd60a7bf08ca39fe4de1ca692b515880ecb18148dbf1925005a2125936e0f5c913d303d1779ae297c7d6bbe4c09dded078e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-musl-arm64.tar.gz", - "hash": "d109183b5f4ce91a6b4c9d6a5e4e3ec8969ffee86a88bf914cfd11bb08754405daadabdcc96fe0e6d7f3dd138d111d7ee342795699fd33142bc37206ba59d720" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-musl-x64.tar.gz", - "hash": "896ea62763519a2c7cc8c426553718aec5975ee98d6d6ff3acde6f6e1918fb2cf5c6c11827d3782bd1e220a58085f0892620b1c0dadeb167b04f6410543c23fd" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-linux-x64.tar.gz", - "hash": "96239951972a04021b1953581c88a3e1e64553d05278fb92729c62827f38eeecd533845d6b0d3e9ba97e9d19701b9ee8e5c02d1ee54b8c14efe54c08c45c15a0" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-osx-arm64.tar.gz", - "hash": "869c2cbda288ff97f470e3c79bf63f33fac30c8ae2740f849254c0f14c7e694d4dd0e3cf283965d620fe86ab8742ea00e606da0455d683fee4dddaaa15d658d1" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-osx-x64.tar.gz", - "hash": "9e3608fcc6e8d9f6139d3ec186b253f13d9027eac322b9cbf8ad8f9e72439a95abd0bffc4d63f427b76186f4386c8ffe613a9bcc44cb2448e9ec9be31a2fdfaf" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-win-arm64.zip", - "hash": "318b2248799821e664bdd05d551b1536ce7dc123a56ad3af55865b0cd6643efea011ee669f950fa10ba9b5056b5cddb3d3c0f29c16d65003826f8672c681798c" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-win-x64.exe", - "hash": "92741b33b960ae238e844c8b0854fa2a70fb120115cd383d8479ef1ea83468ca9b90aba8c80ff7a33b6b6c095446ea8740bebe7fedb0c2acd050b97f56ba2fb5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-win-x64.zip", - "hash": "99de5977123be3b9234a1518dcf6c5d4afae10cf3ffe161327bfea3bce52dd78f73b113aa3fe4c0798342a2f9b7cada885dee997945ab65687eee730ce173f78" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-win-x86.exe", - "hash": "9bd2b73d87b43f52ffd1480947ab1a44491a81bc284e9045b72ea63f07663964ce836afca2f83e595d437ab8e73cdb626da9a839bc4654f9a0594bbc46a6d871" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/aspnetcore-runtime-6.0.13-win-x86.zip", - "hash": "a72345b4612c342d8a3cdb037d90799e00f9c6c5b2a3dd35300d187fe9baccd016d0651e414b2cf9d99bfdb3faf6a69d04f6afee94e3f4d4f0cfb18040916b9b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.13/dotnet-hosting-6.0.13-win.exe", - "hash": "cab22b918fe7c0e1821ad4114aeec4030ae42d4709d61ac0da8d5998f377dcc8bd096653da5a78961615f5d1a133da4a64d29d2b015a6a3e849ced0a753baf60", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.13", - "version-display": "6.0.13", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-arm64.exe", - "hash": "31fc944dbb77f3d88a7ca197b586514e46dd9d9ed5be84d3151c83243f20bb7579fd4ca45ac0c3dfefd2067397a003bf0be397553f528afa32fffdd9f686e6f2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-arm64.zip", - "hash": "e809712915c32ba66604b7ed2c0463bab6926165b1e9e8ce3bb559122d2f563fb54cebea57edcc7d675d118243054adc0635091a0fc6da3618df3b6ce66c729f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-x64.exe", - "hash": "1b44717a2784c6597aa2e1ec9e6bb54f295eab09457cd41e61ca917d45fd1797fb160765111a85cd7264efa392230ee45477a1d95bee0c108c41e8375cd51afd" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-x64.zip", - "hash": "9e162b1d148375432a680d071c0dc3b11d93ae25780b1ce875e3f466d466441d594b674900951ec1646ee82ca57debea3ca9b79a6f8bc167d57fa18d60705857" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-x86.exe", - "hash": "4b4458212b159f37a9f369d6034a6a59796513582a4114c309337cb1989a0e3acb6a9bb67ac5cf0553d8473fef46777e3bf2f37cefae20d29888044333acba27" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.13/windowsdesktop-runtime-6.0.13-win-x86.zip", - "hash": "6ba5fecb5785d73e57e73484cb64452ce047ed8c354279a37d398d2dbe8944aaadd492b4c4a895065dd8c071ef7d247fc2039c98c6a3fb267f6b9a936c61c917" - } - ] - } - }, - { - "release-date": "2022-12-13", - "release-version": "6.0.12", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-41089", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41089" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.12/6.0.12.md", - "runtime": { - "version": "6.0.12", - "version-display": "6.0.12", - "vs-version": "17.0.17, 17.2.11, 17.4.3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-arm.tar.gz", - "hash": "c3bf5d831ed36a42f8b775923eb7f039fc2bd36d87f13228ef2005dad74744c8f49f1359bcd34bba244eed64d365eb40d35e76bd3dd41faa47428c1c652ebef4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-arm64.tar.gz", - "hash": "4fc1b7ca6429abcf586a2d106b2b7e345d024c174a303a607c21f7a00071362ca9f7f85e2c583db18caa597a0404af379a740c0fd180045051ab081d571a9a25" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-musl-arm.tar.gz", - "hash": "45d9156f2a36a9a5ff6016acdb0e1454379e418d886320695995f9a5ce008fa3899e18df06213ddd62328e0eca629bdd0f90a9afd6bc97b8011a15b39a3d1b12" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-musl-arm64.tar.gz", - "hash": "3b981fe729d623758b9430f6f52d6dca6598923f49b55a9f12a94e9eb67bb6d88a872aab7df511d9627c951829fe0606b97239e5f393195551e58889263e3a2b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-musl-x64.tar.gz", - "hash": "13faef12fe0bd89bff41bd284a461a2785c947a202a391879bf20521d1d705f5f19a293b5ca943d41f575d3f3a3f25c0234f4f282dac936b6e7b22e13b5cad1f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-linux-x64.tar.gz", - "hash": "74fc12712a1ab29f864592c21252db9710bebc965f502d0eb2ae5473da1d9bd3381195859cc452e3beec0ac91094e1c034c6a51c0378dada65fb2581efb73f13" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-osx-arm64.pkg", - "hash": "e0cc8cab95494492afbf5dc3ac4df4147b95fefd8aeb3e73176a68fbfdf49cbf8f8caa221b7f75d51f2c5527fe4705113a427cc2401b849f155e8d661ef5ee2c" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-osx-arm64.tar.gz", - "hash": "3acf77bfed61fc7ed9cbdae53a3349224425277be68e32c3e9dd59eaa56154cc7f705ea8f2412fce0951c0170c6e9b51d54bc838ad46967662aa7d7b963c9d8a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-osx-x64.pkg", - "hash": "0fddf272948d9a4a15b0403063b8387c175aca4b4e4c846b274f2de1953918c33fa1a114bb38679b0503a2e0befef598c75634d9c19817fbb1691cd7389b0e48" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-osx-x64.tar.gz", - "hash": "5e78259029205a973bc5eed2bb91f8b27efb5e39b5933630665fff6c707615d178bd5aa6d7c3529e5c77471f133954e6d4ed400973f1f64c4856e54f6acfeb21" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-arm64.exe", - "hash": "ed742300e8f81269e8eb849105c039601c626bd979f39c026d69805e6e843f159b01ce9bc0415b4ebb0aac25ed3fb69a921e3dbc5bf60b3e95e81f2d93d03c38" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-arm64.zip", - "hash": "14d490d493067d6338a68d5508cccf10b1040896e7acc5e01a12e2b314bb0662168137f156f739090b55bcbe49eaeedb0b340f4205c0d3ef408a5b2c1f23d1aa" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-x64.exe", - "hash": "f8c6d7d379ec9ec8e39e6ca20c6015d7c2d049eecd06045818fe95e87b3e515adbdf445f83b79241248fa5a3f3093ce4bf6f7f67cb9f7e6c74e03523a70d9fd5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-x64.zip", - "hash": "a7bab56bf94a4bcce11d4aac922be927701587afdeffd11a8026200d316fe9de35fcfb68a269170466ff10e02f39083481c86c825b770cbdef76d6a107eb73eb" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-x86.exe", - "hash": "8f4e4387b79072c15e04086c8b3eb48ac9e239881b002f9d66d3c8f1d0b9e5c07856705ed863272232fe3396fac2b13b7694a4a9a93f2cb7a784b38b144ac717" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.12/dotnet-runtime-6.0.12-win-x86.zip", - "hash": "0b3a8f5f660a53a38ff59ca8b2fdd27a486440293dbbcc8668bb7bae275ae848d36880f5ef087120cb9f6c11a993a9376a6ec96a9dc9fdc8688973386b7ab553" - } - ] - }, - "sdk": { - "version": "6.0.404", - "version-display": "6.0.404", - "runtime-version": "6.0.12", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-arm.tar.gz", - "hash": "1b9b5e0c45f90a4c752bf6990e5dda4110403a62392dc78abf9145c69b1d329b2630945a88cb4d7756322b188b7f4a9334bfc376067edff5dcfabfd85098d7d8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-arm64.tar.gz", - "hash": "7c58595aa57b655ff5a268ae4fc680ff3fb15a84dcc0ce84ae7eb25ba27bf66f0c5273c985f15034583f5b05437a5354db68c4064953030dc4caebb11339ac76" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-arm.tar.gz", - "hash": "d7818ea567db81832cfeed5057c42255d2f19750a741a2cbc57e2d7134267a27e9937f86846b30f393c6f0ad2dbf0f4c73a902ed78b0de56138f077f62f34686" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-arm64.tar.gz", - "hash": "999220f7247881d44c7f5a429b25c04d31044a1b91af5ede3f899df142af2d9f056a4ac6058c9e56f14b014a479f3a7455bd499f42f8e0f9b4fcacfeabc023b5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-x64.tar.gz", - "hash": "5313d8cbb41e27f462a141914f852e3d3e729886ce063be82778e1444df2d44dadcd2829f60ae97ae300d19798fab9d3b3932a7d9b9d00e948a80ccebbf5e106" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-x64.tar.gz", - "hash": "7a0f4b308d3fe98df9b426b0f8f8fb7bd7247244af3570e867a3969349c62c7ea4c6da81a1a2280788e300784167a2933db523f461985aef0681e0cf14bf8f0d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-arm64.pkg", - "hash": "bdbe99a63cd0d4a3bc99df749ea75c5ddb79f561f2c2c3dfc0c4b6f0c01f3e09e9c31be857d783e4be337b23105fdcd650d97279e4dc99aa1aac472021dca2d5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-arm64.tar.gz", - "hash": "e6847c080862d67eda4bfe912665164f0455fb30089fa07e2076f75fb0a65037c2bd6c213fde1ef9be59d142ba8f3bf41c272d916e5c67f2fbcdc2e1f077064d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-x64.pkg", - "hash": "606ab0c21bd5caa7aa88899f07c0860cb05330b6ce45abae1e63034a08f47942b4c4252abc0866e67e7c07c080978be4573793dac7cb52e9a2fa89347e993053" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-x64.tar.gz", - "hash": "1b0268d9043946d306bb01aecda2857a031f182078ab853da9347ebe88de13147aec13273bd38e4590ad1805c091e694547997941c7c5fd6007d265318ed0ca4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-arm64.exe", - "hash": "e7348fb73d420bafcc7177dd519bf83c0fd8428a8351c723fa2ecabf957fc6e9e12e045fd65a445c01239a6668d3c878dcdc60e7af02dc16477aa798e8003b5d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-arm64.zip", - "hash": "fe8645f6c595e118a2e50747ef85472061b5ca52fc64b0512bdbc8491bfd41b8ae52244facb16d5dce47de32c33ee8f65d7a59b4c54923aed2b79e401459ad09" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x64.exe", - "hash": "4e4f9f2ad0c74aa69f488e50c8722caabb55bf8cdeca7bd265713dddf2870d2ba0978798b55d44b0f5ba2ecdd979a6d5faae79cf9645270bd5fd2a21d1fab35d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x64.zip", - "hash": "af6cf26ca940605c354f537635a24f7f8b82200171bccfeefa993c51d56039f0a0e298fba9bcc44a569f8c612e681fe14de5778c892d43b1c7d69d38bd98893d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x86.exe", - "hash": "2a6e53d0c3a80d4f9d0f381aaa424a0e8a0e9910b93fcd4614941707e832dc29cefa0c86a4f71e1f6db8ab386ec28bec9dbf3b5c5eccacc384a02549cbc42df9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x86.zip", - "hash": "b1bafd271b519e908e54de986d2c8da7390cd50609a7c38bd2e9d12ded98e6991d858957cc5f62a980fa3b572150a60ddefe7c8d27405c07b9bb8d97088798e7" - } - ] - }, - "sdks": [ - { - "version": "6.0.404", - "version-display": "6.0.404", - "runtime-version": "6.0.12", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-arm.tar.gz", - "hash": "1b9b5e0c45f90a4c752bf6990e5dda4110403a62392dc78abf9145c69b1d329b2630945a88cb4d7756322b188b7f4a9334bfc376067edff5dcfabfd85098d7d8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-arm64.tar.gz", - "hash": "7c58595aa57b655ff5a268ae4fc680ff3fb15a84dcc0ce84ae7eb25ba27bf66f0c5273c985f15034583f5b05437a5354db68c4064953030dc4caebb11339ac76" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-arm.tar.gz", - "hash": "d7818ea567db81832cfeed5057c42255d2f19750a741a2cbc57e2d7134267a27e9937f86846b30f393c6f0ad2dbf0f4c73a902ed78b0de56138f077f62f34686" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-arm64.tar.gz", - "hash": "999220f7247881d44c7f5a429b25c04d31044a1b91af5ede3f899df142af2d9f056a4ac6058c9e56f14b014a479f3a7455bd499f42f8e0f9b4fcacfeabc023b5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-musl-x64.tar.gz", - "hash": "5313d8cbb41e27f462a141914f852e3d3e729886ce063be82778e1444df2d44dadcd2829f60ae97ae300d19798fab9d3b3932a7d9b9d00e948a80ccebbf5e106" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-linux-x64.tar.gz", - "hash": "7a0f4b308d3fe98df9b426b0f8f8fb7bd7247244af3570e867a3969349c62c7ea4c6da81a1a2280788e300784167a2933db523f461985aef0681e0cf14bf8f0d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-arm64.pkg", - "hash": "bdbe99a63cd0d4a3bc99df749ea75c5ddb79f561f2c2c3dfc0c4b6f0c01f3e09e9c31be857d783e4be337b23105fdcd650d97279e4dc99aa1aac472021dca2d5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-arm64.tar.gz", - "hash": "e6847c080862d67eda4bfe912665164f0455fb30089fa07e2076f75fb0a65037c2bd6c213fde1ef9be59d142ba8f3bf41c272d916e5c67f2fbcdc2e1f077064d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-x64.pkg", - "hash": "606ab0c21bd5caa7aa88899f07c0860cb05330b6ce45abae1e63034a08f47942b4c4252abc0866e67e7c07c080978be4573793dac7cb52e9a2fa89347e993053" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-osx-x64.tar.gz", - "hash": "1b0268d9043946d306bb01aecda2857a031f182078ab853da9347ebe88de13147aec13273bd38e4590ad1805c091e694547997941c7c5fd6007d265318ed0ca4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-arm64.exe", - "hash": "e7348fb73d420bafcc7177dd519bf83c0fd8428a8351c723fa2ecabf957fc6e9e12e045fd65a445c01239a6668d3c878dcdc60e7af02dc16477aa798e8003b5d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-arm64.zip", - "hash": "fe8645f6c595e118a2e50747ef85472061b5ca52fc64b0512bdbc8491bfd41b8ae52244facb16d5dce47de32c33ee8f65d7a59b4c54923aed2b79e401459ad09" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x64.exe", - "hash": "4e4f9f2ad0c74aa69f488e50c8722caabb55bf8cdeca7bd265713dddf2870d2ba0978798b55d44b0f5ba2ecdd979a6d5faae79cf9645270bd5fd2a21d1fab35d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x64.zip", - "hash": "af6cf26ca940605c354f537635a24f7f8b82200171bccfeefa993c51d56039f0a0e298fba9bcc44a569f8c612e681fe14de5778c892d43b1c7d69d38bd98893d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x86.exe", - "hash": "2a6e53d0c3a80d4f9d0f381aaa424a0e8a0e9910b93fcd4614941707e832dc29cefa0c86a4f71e1f6db8ab386ec28bec9dbf3b5c5eccacc384a02549cbc42df9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.404/dotnet-sdk-6.0.404-win-x86.zip", - "hash": "b1bafd271b519e908e54de986d2c8da7390cd50609a7c38bd2e9d12ded98e6991d858957cc5f62a980fa3b572150a60ddefe7c8d27405c07b9bb8d97088798e7" - } - ] - }, - { - "version": "6.0.307", - "version-display": "6.0.307", - "runtime-version": "6.0.12", - "vs-version": "17.2.11", - "vs-mac-version": "17.4.3", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-arm.tar.gz", - "hash": "584630393e81a1f26e2b75d21f2984db78f2de7f899a13ba480e46761624e461a23b4467eb06a1679587acb7c22fa8b0a7012bfaf85a6db393050609f609db8b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-arm64.tar.gz", - "hash": "c021ca82ef65aabc5a02a1ebcb117b05583b7ab8bd04a8514e2adc29ac8f0d4916b83544d1ceb0cab089e6b3e6ba541abd95f69fb0b888e04ceb76a9d4912e85" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-musl-arm.tar.gz", - "hash": "263cc04a47d902fdf7743023756d5fbc05f2608ec796f0896a9aa77dc1af40f51cafaf51be19dd1cd3ad6cbbec44c0849280e8fbde9af5b9b2c1e51b86525838" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-musl-arm64.tar.gz", - "hash": "3b00fe14bbb6d0b0f02b3fa78d88854b907ac5809b53b3d3b69f2663f77c8d7721afb3dde6a71db5ddfd42f8e3095a4f4ab48773d221d6da53da7b649d3a48a4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-musl-x64.tar.gz", - "hash": "0b9628c6b27d4efc1992eb326a94f08b220f965b483fe4dd874283e3b53f7d2a1071ec5190dbfd081dd3d2ed5ac8ab66779e0d039683956bf7d50be3ba3ad334" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-linux-x64.tar.gz", - "hash": "7fff3c356775bd0fbcda53344983f18bee2296a13a514f8f4cff92dc9aa2207c165495304d7e08855f35f360adfd64d9c27fd10549adb9ff7183297bd7940d62" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-osx-arm64.pkg", - "hash": "d6e8ca48324781a863346e25997f652545f4f39e2f0bf7afc3ff1228280f9281872e532177f1b0306d4b8c4d96d8fcea564a5d587d0d49a36dcc0c6a53261919" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-osx-arm64.tar.gz", - "hash": "c7119491de7c2b724b1f59c99ab457245c81b4a1a94407ad928927abbb5fe9fc61491d27cfde2ffa3d04593c2f5fc91afc1df7c6da215dac9e1303f363aa7c98" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-osx-x64.pkg", - "hash": "71413011f549e82dd100ef2cf88b44dd5c2ab0ef6c557bd12ccbfcc2d20ba38acf279c4e33927cd25958c4116ad4d3fc2bc5cb6a703b6d75d876a8b8eeca898e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-osx-x64.tar.gz", - "hash": "35efd15ae197996c2a648e366192ec719ee4a526899831c76e160c412dab3ce5390a4bbe838ee1f072f67f6a61547f465c98f9570cc43ce3b2744d007378ca80" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-arm64.exe", - "hash": "3cf940ab63aa87ae97dbfe7c96467d9150dcea7a0969a1e60b8a1236db6ecfca1c0e6b6c2f46c55fd35b7de12cb2c33e73135eba7812bbf6c5daa388cf49014f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-arm64.zip", - "hash": "87e2e066c50ad4921e265810fa54a1f0933bf35201420cac305a2f8a0fc9e4a8fb592872dea4a16c09a53858df92b6ce75b45ab8d462dc315053b04b76d6d95e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-x64.exe", - "hash": "f0a2ce36141834a25b19fc0736684228e111b51d3c69860895b7950220fdc693e1046306932508a9001fe62e5dcf6566169bbcef8d29ae1d4bbd671ce4673b28" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-x64.zip", - "hash": "dc99a4000b69ac3b04b65204733cf2fb1b18f8814a9783e56a061eb5a5d5f5d0254fb5b4f2283b380310f8ae1e642ac4a0da6ba910f0f77a88d6e553338d356f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-x86.exe", - "hash": "8020c16916c5921b7e1f6b3c0c8601f79db849683e832264089b3f73dd08ae4ba0a1c200ceebfc7bc03d3e28843ae76665aafce6cc5265e47841e227d957168a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.307/dotnet-sdk-6.0.307-win-x86.zip", - "hash": "20edacd0fd81c0b1275f64bcc31f90169ba3a4e90c14e18a9873ac006a5201c9d33d25ba9f36dc8b0f141eae0b5a0d67d25835fb0eec33af43f4f8556356faf0" - } - ] - }, - { - "version": "6.0.112", - "version-display": "6.0.112", - "runtime-version": "6.0.12", - "vs-version": "17.0.17", - "vs-mac-version": "17.4.3", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-arm.tar.gz", - "hash": "47f255e6c167ba0534559c2d189a73178a6bc6ddde813a6dd2e4e328f598181119fe7c159732d4e65255fc2d4fd731ff1b0ee929979084ffeb2730ad7ed74d75" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-arm64.tar.gz", - "hash": "55b8b0b71971ed65f9096d3d55d8474c6768da188ee3f7c1c6e1051934926430869f058dd45c9dd9789563acdfbee973657ecea31044c587b4a87a95ab4ae800" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-musl-arm.tar.gz", - "hash": "2d0bdbc564853ea9c6daf4a1fb7940c28bf3a766ef857a4fcccaa42f8b3ccda53f8b968b83187e1387a8119502175a8f92215a24eeacd843c018a01b44e140cc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-musl-arm64.tar.gz", - "hash": "6000baf38c8b92ea4c71ecc6b3f2dcffbe6e0b3d3e8846f7c296180d0ac1d94905542df3453dc8fae16c3ae351d6380f053017d86207c2e58affdc67c93fff1b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-musl-x64.tar.gz", - "hash": "6d23a7fe8dbddb0785811271326aa3f0bcd68db85c1a148c4e21eb6fd7347a1381dac9c077e4d01c17b08570cffea4b4cf43f78c3f83c2177e66a8c4531c237d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-linux-x64.tar.gz", - "hash": "0215268594196931c038c0957e41ce73a3b12501f7a15ea3f9a6bd73c1191747cbc42aeedfe96ee0f7f3a2f5811c7840dcbb230797ef47f659794fe3113bddca" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-osx-arm64.pkg", - "hash": "10d8f91163cf89853a7baf24e3d4ec5b9dea8b788e9caefeb8bf5b91c684bdd776a0580914bb45963ede89f3f4070f04033d7e2100f44ffcec53e6e5a21a7ac1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-osx-arm64.tar.gz", - "hash": "eeecd33983e405910c028a2eaf6b1e4c3f87c4b51b3b73582d7a282a55854602eafe23e5b2983e58249d2b03a05373b63bc3cdf9a6f89e2b82a986fd23181abe" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-osx-x64.pkg", - "hash": "fab63c44c1baf47bf723d68665539a8dda10c425564101ea5d10fdee8d05dcecf43813cf747bd8fdacb4c5bccb6b5132381742c8bd2c9c9c6697e981e228fcee" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-osx-x64.tar.gz", - "hash": "40042d3df1832186041ccea2ecc62c48a0677580f6484f302f972b4af1c20f9a1e2a7cee400136561e16102b087b9621c8fe3aca8fa3f74777e6c22f1323612e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-arm64.exe", - "hash": "f6e634353e4cc2927568710bb934838b763880cf89c0d29cde13d98d81bf8137418713bf37cb0219f3963c2f95f41471a74e3feab58379ca534fd6ad8cb2c2cf" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-arm64.zip", - "hash": "4f7ef35bc00f9d501a716eec27f167213b9ed176d92c48374605b73ea59393a0b684f554283a92bba79da2fdbc5e0fe9b3a050d0fb7e0c36537d96470428ac03" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-x64.exe", - "hash": "a12b15eaf4c6cc7aae89f52e04f3f261bfb4e1c571359fbf4e52aab7ff476c1065f4dfd50add40f8dd1e03205fc1f465f7baa972478da3dcc2198b4d52a448a7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-x64.zip", - "hash": "be377a8cb28ff902b0189dc407a434aa243d1431006d87b32ea4b6ddebbe53da1f44849a86410e8147fb3cf0b64f922d27ff4a96ddba131550f9c6c3566e8a70" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-x86.exe", - "hash": "c2e990a62dda1d01e9148f78e7406da111c29d60936b1b700641a0828cb90f6faf9be0ada4f0d4687565ff96ab42a47417b692080cf16accdfc59e1a08194835" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.112/dotnet-sdk-6.0.112-win-x86.zip", - "hash": "d0f203b80db37373c6958542041f986e87667952d5610e3c689f40b16b9f725bd357bf28809713536affcfce21278b60cf01122235dc3086a52c2d3ac131dfca" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.12", - "version-display": "6.0.12", - "version-aspnetcoremodule": [ - "16.0.22325.12" - ], - "vs-version": "17.0.17", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-arm.tar.gz", - "hash": "5d9f82149017b32cd4f0c5b5c096020d9500090173f43b6cf18c89e731c2d48d8d54bf888485c2e53c50b8df638d3ab881a28ef3e20fc2c6388a03f2313ca57a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-arm64.tar.gz", - "hash": "0e8af3a78b25e93e679665552c1b1d1e9ce9c141fed41494304bdd8da45cfd404a53cc692defd24e6629c3fde0f58c0eb09b1c22edcb22f04b77072e8a57bf79" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-musl-arm.tar.gz", - "hash": "033b029eb949dbd663dbbe7254a7f8e967ed85935736d2529aecc720324ad8ac4e34231fe0c3d6b84f0b9e01fc62839095fa8a33033b4e49da91ca00af7e87cf" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-musl-arm64.tar.gz", - "hash": "fdb4a5df648429977e4152de49e009bb16e812143288b2a76c5ab8e4f95002dd2b911b4a08fa7cd03df25cec2e81c7a365eb608ccc5803ee902c742ba5c0dc66" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-musl-x64.tar.gz", - "hash": "081f1cddb00d8c86877d594ba09d38a2af51184bb253c33a57ed0893c828a44a1d68c2c244ed6f846f4732c2903aa576a3d3caa5c30ed03c6d2aa59f332e5ac2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-linux-x64.tar.gz", - "hash": "4ec1d315c434b4be9d01b07f12be7c5707c12703a48c26ea2fa00fd43502d89a28c4eea27940165c0c607209e8a6c5805233a8fb576309f2e6662d026aaebb05" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-osx-arm64.tar.gz", - "hash": "70c495bb839fa4d5b4c7a20c5fd5afd5be9235098b06a3711e3b3cdba0473b53ca27704f9c74296249f60f2d59da8c13b17a5b554e8abd83f898b8374ac806a5" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-osx-x64.tar.gz", - "hash": "cb0b09cd252e14b8ec3823aebbc4eb092d635ac6d50d3218ecda61feceb8897e561595c9c449c92f572f9e54a56775a71ab0524682cbe58fa32fbf38297ba10f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-win-arm64.zip", - "hash": "ac019608aaf066c4ff5b0bb77e2dfc41d20924cc0314f7ef1713055beb7977d6ffa94dd1d8cb7b36348585f9b38ca5a06c7bc97d3fb4399088b220245aac6756" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-win-x64.exe", - "hash": "9ecc376194cd5e1479cbd5dc45f2bdfe215b1780d98f1098dc34fd98ac6cf106f19dbd0c610c27aebef5897187b9ec216a41dd60070519871eaa4eb4cafd0abb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-win-x64.zip", - "hash": "283d7ea3bac595dbffb7bba8c7bf6aa8553666bab88f6313f0999058a0ba54943ba33f14639517110f9544b27e9bb9ee0fb933bad3d82d950f3262223ecc1659" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-win-x86.exe", - "hash": "60faa13a92854062c8edf8237eb59470ce4644206f02505cabc2a2dd0b979433f14a3c1f30b3935459536b55f039bc4d59222659fc8ce7b0ff2ecf1eee55b293" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/aspnetcore-runtime-6.0.12-win-x86.zip", - "hash": "58f136be353fbcfd305c438c131b2b6826dd3d1b70dc9107f06a010ffb9735f24f1c60bae9b3e5928e88fee78df7333a45ef077ceac5b991b62125a2fd082c95" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.12/dotnet-hosting-6.0.12-win.exe", - "hash": "ad27f7dd47e0e0fc7d5b45785a8b4943c4d5bd36bb566c4974b60cfd4837f591987e405a22005169d3d494ff6dbbe196f4f9529847e035b0ef780ca33ee46d7a", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.12", - "version-display": "6.0.12", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-arm64.exe", - "hash": "0faa82a4bd2dc4a45205225eb1e00e757f83ab7b81bf18f74b4d54fbe822f1c4ad93006994b2fc795952536ade75395c97bbed9471dbb3d302fcffe6e5c2abf0" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-arm64.zip", - "hash": "d5d3f6ed53dd02b64fa1379bb8b7ad68b734c2b4670851d4f673409460bdf635110be0049fc264df5c2c8985fdb659d52e5e89ba5e735fd82cefb5b80e9806ed" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-x64.exe", - "hash": "7a827acfb4c982b05734db73a1e46f8f50536bc34e9b57abff46e5b907adf5dcf67331764cbe17ba17a1bf9dcce598f7c88605bf3dbed7111ad5a1ef1bcad42e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-x64.zip", - "hash": "dee03d92a049f2f05fa63d0ac22378d877874ade236b32d70424825b800cacb8d46382dea09dba4e285e633f56bfd783335a7c54fb26961cd250221e9a8f0acc" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-x86.exe", - "hash": "962fdbb6b17a0e668c30948a7808782dd6672f78e458624c5aa69617227cdf5bc69503937b5ea6c027f7010da9deef6ae7660ee5fa6e86f7b59ee81df2f570cd" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.12/windowsdesktop-runtime-6.0.12-win-x86.zip", - "hash": "4ad9ec4a01d098ee1143e194d701760a816027ac0b206e152aa873717100624927a12e31a946587734e915954d94aa393a5ed48c8502057c903079c6dedce6bb" - } - ] - } - }, - { - "release-date": "2022-11-08", - "release-version": "6.0.11", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.11/6.0.11.md", - "runtime": { - "version": "6.0.11", - "version-display": "6.0.11", - "vs-version": "17.0.16, 17.2.10, 17.3.7, 17.4.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-arm.tar.gz", - "hash": "a23ed056a95787c18ad95e7c3fa85fbba074536bad167e6aebf26136ab633fe491f2eb3bc20eafa62418e74a90bcee55f6dcd5a7cdc8d3dcc17ba66cd7059f3d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-arm64.tar.gz", - "hash": "c889e70ea0b2224eb9163cca6a57cbbbbb8213a551770dc5c9f08d8d49fec1f38ac4802435cc9509baa03970823666fe1dd80621e6ee8592c27b7e639643e5d3" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-musl-arm.tar.gz", - "hash": "8bb033accd7dd35fb528aa0155c2fc1fff27fda86e66dcb02d267de4e7193b20d0af9d63fd7796aaafb5f2845e95f6be329f2138d24684bf8b72c9507ed83ee2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-musl-arm64.tar.gz", - "hash": "d1d74cefec7075ba9a1fb88cc53afa677c88275b1ad431df4fda78c7e239a42e1fc14f3c7dce50d8f5505419540062dda21537363d9797ae71317b6206a4e906" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-musl-x64.tar.gz", - "hash": "8bc10a7a6e08783ce89d047477828a001b7b12a959cd3c46d1013d2ab8dc65cda35b466924006f63b317e0d7301641097fc3fdf262c5e72990376ab34956ea92" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-linux-x64.tar.gz", - "hash": "9462d73fd3f72efaa2fb4aa472055f388da4915e75cfc123298b3494f1dfd8d48c44bfa6cd5c41678ab7353d9085d05dd7f1fee0eef20c11742446e3591e45df" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-osx-arm64.pkg", - "hash": "d5d626abdd964ccfed85cd50ab31343d620398823633d05d6b5d6cf91869fecfe2ee5d42c241d3c88d93b512836e62fafae73b4fd680a2b5cc1cb963a91efaac" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-osx-arm64.tar.gz", - "hash": "0fe0a7f88a1c99b682a0f60d60d6d1954b9ce185450fc21e3700f1e0b2b1b58ae7412cd43636bc7e7ef9d1412d38661df772c946524c5659d05b8945fdfb468d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-osx-x64.pkg", - "hash": "d78149b896aa06a1d1b36bd3a5c68c33c2033437b979d525924d416d206c750acdcf135d9b750f472958ae8ba017bce25a3ba1b012bfd774af7bb5fa8d176170" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-osx-x64.tar.gz", - "hash": "d8df6aee071b9c59672df6c67cb56c87796d9204a5fb044bd9e7a6fc7d5f83c84e0ee5ec871d57f38a226f57c70d18e52cb35a6520d26d94b335c97a860e6c01" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-arm64.exe", - "hash": "8a2801c0d259f078ecc27a6e398e4e49dc302d46070c11b27f2fa3bfb4c49947f780c8f7f88f9590e3cb505dbf2ce15d55fbf35261b71f278fed8c50e4f98dfb" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-arm64.zip", - "hash": "b84ee80c69a6568c93082f5b7cea35fe91b891dee893bfb18c7095c2507e230836a4bd21771327e44d02a0ee9ee19778369cb8461c562a0cbe7be4edb4d38a35" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-x64.exe", - "hash": "52833b37bfb8076cb1c921d3e2ed6d56d38d75c4b69f5ca6f2f49d9d1ad7910504b26e4e0a7953c58040eab365cce8e77d8cbc33d84b2307a920cf40efb25238" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-x64.zip", - "hash": "63f33c7e4995c8aecd68148f6c6eb41ed72df8b7668fc510ce205cdf6060d398068657c3a392b799a8bba704a8f10ed1700fecffe932e6f13d3a44b18180e8ff" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-x86.exe", - "hash": "0952373e828ed1300645d83d671258bc7ffd920808afaf1884ed9f2876740d08948e3273fb3a381e29d3e718de0d178616236e338d686e17dc69abd82cba2aaa" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.11/dotnet-runtime-6.0.11-win-x86.zip", - "hash": "4ba1065fc57bcff8fb0eb0042239583bd23b7edc4681173a80eb16259f21fb9b3b7f277b87d7aad6e62e4dfdf87f6dac433f4dd8eca4dcb69649fe259c0e2e02" - } - ] - }, - "sdk": { - "version": "6.0.403", - "version-display": "6.0.403", - "runtime-version": "6.0.11", - "vs-version": "17.0.16, 17.2.10, 17.3.7, 17.4.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-arm.tar.gz", - "hash": "b07423700a92e3cc79f4e9e02c40e923352c09958e3307fd2ce7fc882509460c65a4404e8080f1b3852af98458512699ba43b37683916756666b4e2532cc8f46" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-arm64.tar.gz", - "hash": "fe62f6eca80acb6774f0a80c472dd02851d88f7ec09cc7f1cadd9981ec0ee1ceb87224911fc0c544cb932c7f5a91c66471a0458b50f85c899154bc8c3605a88e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-arm.tar.gz", - "hash": "bdbc32779eac9143daa8ed930278245ea2ea940a335d4b09a54d80d4ac07c4df8d71fbc06b7bbd531737f3770746dd9db98d469bb5a292ab711c2905c2832a81" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-arm64.tar.gz", - "hash": "caff2f691958a049c1c70ca24f62df2cf9824314f05f1e0cf1d935c1bd9288ff08a3e70cc605e532ae91a12140edc472768cf4510c9a3c73c0c1c9d56e5a1dbf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-x64.tar.gz", - "hash": "c59623a6ca6f012da5e584ae538a5106d4e59a9f3198c259cfbc992d163a5e4676d24c43efb533ffc70172d8ef584e90675043555c02bd9a31f3781c77c81672" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-x64.tar.gz", - "hash": "779b3e24a889dbb517e5ff5359dab45dd3296160e4cb5592e6e41ea15cbf87279f08405febf07517aa02351f953b603e59648550a096eefcb0a20fdaf03fadde" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-arm64.pkg", - "hash": "1333788247c86df49df2466d0d0152a07457f2c5dc0c899df4a2d84d721530a9897d407113145df0b41dedbf69b51e70c4732988c7e8ea44b8206b8ed70db389" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-arm64.tar.gz", - "hash": "1210ec9341f7ce192b2a006b1e5d98385e1108d016b0db3c6eb5ac5a1ecd6c9384fe26b62363d3a885e5ba26ec50cbe483970563e897bbb274568990aa43810b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-x64.pkg", - "hash": "54df2010f93922a7f41b7e3cc8ab4c502900a7e8735df0101b5f678216b07b6addc0f693a33736d7798f150b3570cc280d91d9314667ae12c1d78a09a27b575d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-x64.tar.gz", - "hash": "8a8b6f86f09d0c5a8dbc35f6adbb14cbb2ed10d1bcee0a15e717a416c759f824b2453fab0b76e0826c149612fe2fb8bdfc3f8827383dd3f8f01ef5497b85d589" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-arm64.exe", - "hash": "fb6d04c920c49d3830d9477d93ab49ca9eb7d51f5ffd4f3872968e789a623a1d6a79f2379b0e723fb0c5a92df6ad027dc078b3270688145af1b4fe9643860566" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-arm64.zip", - "hash": "f3213ac5e7551102be48ca5c65fe098714a79a03ed3111d368ad07eb85ac22fea4c05a356fe742feb231e76f4d3e510954d4235631e0686d19bb0cb2f02b7e4a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x64.exe", - "hash": "cc30833cee9cf74cb3c0ac16eab5a96345daecbf73be9d8de1e9ec221cb270a319374fc8b35f28432379f35b39b6e3306e06ec93696be7d4a6c69afc3d676884" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x64.zip", - "hash": "8f0c99249f34724d99fe2e7b8955098b5f5531dd9c7199453f1a5f066981de58b8324a5dbd92548e665b1c208c241f9603d8a18ea51b27fd4fdf0c17abc7392b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x86.exe", - "hash": "5748cbae31661853bd0e459ef80f3767f8c925aec90b43c81dd44c21f591f9514b39dbf13a12edd34287ab90a6b0007aa92e6e80ae01b510abc058930b47a884" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x86.zip", - "hash": "a37400428f755929bc75a6f8b0aa0aea7f631b1ae3727a38682c7dec312d586d21357c071f3180a0333ed339e7e1b3dbc9f7666a8a3d12c27fdc35f821e5a849" - } - ] - }, - "sdks": [ - { - "version": "6.0.403", - "version-display": "6.0.403", - "runtime-version": "6.0.11", - "vs-version": "17.0.16, 17.2.10, 17.3.7, 17.4.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-arm.tar.gz", - "hash": "b07423700a92e3cc79f4e9e02c40e923352c09958e3307fd2ce7fc882509460c65a4404e8080f1b3852af98458512699ba43b37683916756666b4e2532cc8f46" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-arm64.tar.gz", - "hash": "fe62f6eca80acb6774f0a80c472dd02851d88f7ec09cc7f1cadd9981ec0ee1ceb87224911fc0c544cb932c7f5a91c66471a0458b50f85c899154bc8c3605a88e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-arm.tar.gz", - "hash": "bdbc32779eac9143daa8ed930278245ea2ea940a335d4b09a54d80d4ac07c4df8d71fbc06b7bbd531737f3770746dd9db98d469bb5a292ab711c2905c2832a81" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-arm64.tar.gz", - "hash": "caff2f691958a049c1c70ca24f62df2cf9824314f05f1e0cf1d935c1bd9288ff08a3e70cc605e532ae91a12140edc472768cf4510c9a3c73c0c1c9d56e5a1dbf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-musl-x64.tar.gz", - "hash": "c59623a6ca6f012da5e584ae538a5106d4e59a9f3198c259cfbc992d163a5e4676d24c43efb533ffc70172d8ef584e90675043555c02bd9a31f3781c77c81672" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-linux-x64.tar.gz", - "hash": "779b3e24a889dbb517e5ff5359dab45dd3296160e4cb5592e6e41ea15cbf87279f08405febf07517aa02351f953b603e59648550a096eefcb0a20fdaf03fadde" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-arm64.pkg", - "hash": "1333788247c86df49df2466d0d0152a07457f2c5dc0c899df4a2d84d721530a9897d407113145df0b41dedbf69b51e70c4732988c7e8ea44b8206b8ed70db389" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-arm64.tar.gz", - "hash": "1210ec9341f7ce192b2a006b1e5d98385e1108d016b0db3c6eb5ac5a1ecd6c9384fe26b62363d3a885e5ba26ec50cbe483970563e897bbb274568990aa43810b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-x64.pkg", - "hash": "54df2010f93922a7f41b7e3cc8ab4c502900a7e8735df0101b5f678216b07b6addc0f693a33736d7798f150b3570cc280d91d9314667ae12c1d78a09a27b575d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-osx-x64.tar.gz", - "hash": "8a8b6f86f09d0c5a8dbc35f6adbb14cbb2ed10d1bcee0a15e717a416c759f824b2453fab0b76e0826c149612fe2fb8bdfc3f8827383dd3f8f01ef5497b85d589" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-arm64.exe", - "hash": "fb6d04c920c49d3830d9477d93ab49ca9eb7d51f5ffd4f3872968e789a623a1d6a79f2379b0e723fb0c5a92df6ad027dc078b3270688145af1b4fe9643860566" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-arm64.zip", - "hash": "f3213ac5e7551102be48ca5c65fe098714a79a03ed3111d368ad07eb85ac22fea4c05a356fe742feb231e76f4d3e510954d4235631e0686d19bb0cb2f02b7e4a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x64.exe", - "hash": "cc30833cee9cf74cb3c0ac16eab5a96345daecbf73be9d8de1e9ec221cb270a319374fc8b35f28432379f35b39b6e3306e06ec93696be7d4a6c69afc3d676884" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x64.zip", - "hash": "8f0c99249f34724d99fe2e7b8955098b5f5531dd9c7199453f1a5f066981de58b8324a5dbd92548e665b1c208c241f9603d8a18ea51b27fd4fdf0c17abc7392b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x86.exe", - "hash": "5748cbae31661853bd0e459ef80f3767f8c925aec90b43c81dd44c21f591f9514b39dbf13a12edd34287ab90a6b0007aa92e6e80ae01b510abc058930b47a884" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.403/dotnet-sdk-6.0.403-win-x86.zip", - "hash": "a37400428f755929bc75a6f8b0aa0aea7f631b1ae3727a38682c7dec312d586d21357c071f3180a0333ed339e7e1b3dbc9f7666a8a3d12c27fdc35f821e5a849" - } - ] - }, - { - "version": "6.0.306", - "version-display": "6.0.306", - "runtime-version": "6.0.11", - "vs-version": "17.2.10", - "vs-mac-version": "17.4.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-arm.tar.gz", - "hash": "9ea0273b8e9a7ba0650aa6d989933d959a75f0c6c2cae46b1e6ba23913ddd25c6546275d9a21d540b760a9202fa802a484f713cacd0312405345142dfe452c6e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-arm64.tar.gz", - "hash": "cc49223db9c6309c4f0f7e208dfa07a1e9bdde032c2047b9aa2711e03d8aa0da91da22d728b332c2c9adbc54f423bb7e1dcdcb3888ed9ceef899d6e74bd308b2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-musl-arm.tar.gz", - "hash": "e0631a82488262d70ed7b46a4572df636c77616306b35964e79e418a37bbb39a341115c780c0be918d23006e1115b9401f789c930ddf6053552af944a3b1c659" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-musl-arm64.tar.gz", - "hash": "b7c1ff95d35c1378b4811aa44fa42c72cf94a17e237cc19a7f785b427f888aa841ca3fc0de10792f345c6f56ebfcad1d99be4babd7acf75d76654805e6e466d1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-musl-x64.tar.gz", - "hash": "bac8f2c353297bfb4ca71852a282aac7903a87046f565b66f54730d40b9913e7156f1773f83656c74c7bd10fb8ebed8a43708285da6d7ecb2b24cf97d1f0a8d6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-linux-x64.tar.gz", - "hash": "6278cedf0183d51dafe58a11bd71612e4b19d10e725e442d57ba45819a55bf4d86caca0c3d2a0ef0d32469a828ba85342e0d3ce23eb8ef1444bff228f10cec31" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-osx-arm64.pkg", - "hash": "28880d13232a7a86094615f677ca36a1421423812954023c10be9220ff19cc12cc2b90c9c139202b58d751bbb822d94492307226691d4d335b37fd2c9f21664d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-osx-arm64.tar.gz", - "hash": "ab6a9620d53786e5723393e991c082bf6bf73069096ecbf2c6e7e5eeef39aa434e17154140644561db12ac1f0cf1d2265c6c39608088750d4add74b3409360b3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-osx-x64.pkg", - "hash": "9e7f744fdd8b4a1d1c5a237b59acd23c92f64789bad799c91ce9874ee4f89cb5bd43bbb0010acf0aa5c05e58c48ed7a4d823845afb367cbed438dbe4e3b55dba" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-osx-x64.tar.gz", - "hash": "df319f562b20c1fceaccd0d328fbfab3ac5f2363adbf63038a9332869b32cf7090d077ff3a783f3d7c12a9a00f1b15412d01f33d586b2ab815faf088f9c76685" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-arm64.exe", - "hash": "bfbfcab99fc1a6329601fe4e186aa500aa196527feb906fe11d81dde91f7a20159982b5e37c15ba6afe43aad454a3b9aaa103783c6e258fd9c156dd02d6d87cf" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-arm64.zip", - "hash": "40a59da6264e30bb03a837d46f3c8a14e894be25e6f1e60ad293c53430af36c455caffb93d91be07c6c2ea83f9a1e3e6916ab167021ac4fe2afa00e8a4ad1492" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-x64.exe", - "hash": "3f40daa9688cc4c3c437a0d9441c11c6a3ce6333e0271d912066f2ee2e31d292e05cbf53e66a9050487ff515c7ba6cd8bdfeb465415753c9f961028438442952" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-x64.zip", - "hash": "0fc8df00fd30665c7dc36173c16b39cd0110638315771defd2981a595018838c045df23c1247ed1e1fe766cf20112fcebf59a3f62d3926b73f6585d3405aac30" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-x86.exe", - "hash": "8f1636eb7e1f211b4c278de17e79a7a18fd84aca548c6aad9170007ea70fae9e066052b8fbdb5a6cd767ec4ba9c9d58f444eac4adc4a62070292a4330a53d398" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.306/dotnet-sdk-6.0.306-win-x86.zip", - "hash": "14a2623518c35e9c7ac3efdd86805790992560240aac2304f57b2627fc9017c3c8604a9cb21b9355a92c233ef7483ef2554d84aaa4acf2d73a0de450b09d82e2" - } - ] - }, - { - "version": "6.0.111", - "version-display": "6.0.111", - "runtime-version": "6.0.11", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "9.0-preview", - "fsharp-version": "5.0-preview", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-arm.tar.gz", - "hash": "44388611a84620e09e3adea7ada8ce4e04ef675d54c3a6ef12017bbed25e7c5d100089a700c503e9edc8605f9c0f48995f3b4595bd3179910a6cf4e2c11b1a53" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-arm64.tar.gz", - "hash": "7473eef3715c83ff399adaaf2605ae28f0144186024e3a4a5661ca978cc376262203147d77c51476cd88b5d7bdd7b3700221f214083eb77838a41a1357766b7c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-musl-arm.tar.gz", - "hash": "1a1f03e9f75f5003a4afcc2a0299f1920dbecb4c72829a3cd63bd8cb70c722cc20f1d4a58e2dc4c47340d3eae15ac36027197202d68babe40643d5aa617891ae" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-musl-arm64.tar.gz", - "hash": "ec555164acb4b27cb7a5e8b7192fd4b8aac4dec1f68758cf1e24da17987c0be1b8cc84c131713d31bf90743d2a84cc2c9b8288097742efa5c14e3dfa0602b4c8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-musl-x64.tar.gz", - "hash": "140de0d27b4247f3a7cea7fd03d275dd03be4362ea309114540deb0946a388bbbb62658a885146b76ba13860360976e983eecd7dd048c437e2a80740aed8ce19" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-linux-x64.tar.gz", - "hash": "d61e568890023e984bd414d35308717c1092775a33a90a1ba2f87b0d5f70e7087d264cc61eff29356255b54ec2c2e3b2f48676572a0170289b0448b0fb843be3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-osx-arm64.pkg", - "hash": "425a79fdbd155ba855fbc8e48b4a2fff69ba27d1fdaa9e41a789e41d0298ab4f1ce3b571c53507cdf3053b782c2855706e53d974e8dbb8c0f9ae8327795a0ad4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-osx-arm64.tar.gz", - "hash": "f8bbce55d29fab015e334b32de33a25f5316508567b543323e7e62a0b34de490d4e8fa9ab633bafa29e29ebaa9e09023004b8911f56448990b485c49e6640b7a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-osx-x64.pkg", - "hash": "4760b207a01fd04a9fa1071d786ae28df4d1ed1053b4cd0fee3ae7035d1dca9ea20eb6f2b8592e11b1c7f53a8171d8ee84fe52addfaf06724ecab37ea3218e70" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-osx-x64.tar.gz", - "hash": "249774d5e9d952b15206a4c4e5c20548ec6572202be977d514c517e11e93f2a36c2aa636b5201f7ce690f555fd79aa3e52aa6b5f4520293ea52b3d2d36b3e70f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-arm64.exe", - "hash": "8449166aaf5d097d0d4f404d80c323c237ed02681ed805226286d43fdb071be2a9af521a8392646193e587ebcdf33d0426a54016b3e07af27874d6831d327ea3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-arm64.zip", - "hash": "64db98efeded1a1d10d25dda48f4707dcebfaa462f22bf84f5f2c5db8d47b7b6166818c4008db6620616546b5b638af18590fb0b5193603ca5d507dbe68062fb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-x64.exe", - "hash": "1cfd3b9eb33e31cf2da1bd6a28591faf092427da4ff67ae2b2ae9007403f036835802276429910b2831e1ab967bccbde0cc1bed34538f633dc8138800dd948ec" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-x64.zip", - "hash": "ec0608c05dcd226f08cc1d1fcd2486d5a9c7c281e181070c2411dd24e344541d244c1560d65fbc3a12894ee0b48e686492b8f104789b740c056f79a6cccf0350" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-x86.exe", - "hash": "b029fe705c4d7f8735e517a9c867cd54be57b03a5b64c70dcddbccdbb41a42ee78cc039726993ab80e4c53baf8f44d9aebb0d4e3784fc82ffb74ba005cd6c0a4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.111/dotnet-sdk-6.0.111-win-x86.zip", - "hash": "a4dae83202c5cbe3d12178989dfac29bf4fea1fdc47dadc023ce7af870b2e3f62cd4be064f87229dcbd5fb6d29a72759b8bc3500fd16d0e2b6c03fac817779e0" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.11", - "version-display": "6.0.11", - "version-aspnetcoremodule": [ - "16.0.22296.11" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-arm.tar.gz", - "hash": "f690860acc135675b817615a5db624276bf90eeca1b0b941271068aaf2aa350ec4f76cc4ecebcff7fb4c450be1ea8073279fb933eaf6f2505babe2307b46d35b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-arm64.tar.gz", - "hash": "cf2a469cc2364358e0cd51640e9a614747e60724a99d5151dbd346eaad3779939f741f0cd0a752774a6df51c3e2af5a49ba8e4c5ba7ac02eda192cb7b73d85f7" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-musl-arm.tar.gz", - "hash": "89f0a447bc2083228bd5ed59fdc7c113608266f23ab9e793458a2ab1afc13d201c1b476792d6841e29ebedcb86c6a1b064aae041aa1e37959f41079929f0aa4a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-musl-arm64.tar.gz", - "hash": "b068d87b9b848971f2b18dba841c651d59330e72e3b8259a657d67606dd03808482d80393a8da82c452dcdf90c8d7a5213764d420ac956c94cf69f2d5825ae30" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-musl-x64.tar.gz", - "hash": "6415d01659656435767833f2f19d1f969940710bfbad3ffddf8bcce8b7130b1d5761fa4f0b3167177c8bc91d7fcb4bda6a7ab0014b80a27638f62ced48febb2f" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-linux-x64.tar.gz", - "hash": "12a30719aacd5b3dd444d075c13966a4bb1dc149c36bcbc0e685730f08d1c75eb3929749b89a88569ddb48bd8104db84aaee2ee097ac3a5fe6fff60c9f09f741" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-osx-arm64.tar.gz", - "hash": "e52add6045fd30482d3ba1703b41d354f38661ac9f88b1b70aa31d4ff5bc685b8767579b172519a4471beaa3cfdb346f46298da369a5714923937f1af03e353c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-osx-x64.tar.gz", - "hash": "cc5d76404fd1a352404597cfa36def6c06018aac9f53c938d96264fa057534364057531d91c8b0ecfb2aed6c2816ce32c0a67bcae39da241c3ee36cdd35ebe9c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-win-arm64.zip", - "hash": "c8ad6ff3152fc8addebedc0e13c4c251ede096bfe29c699a1e92825e45017c449ed805b4b96c1c9ea86a13207ccc800e581fe572e5668cf7e80f128e0c015aa0" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-win-x64.exe", - "hash": "e3d80d5b94100e3333a42b73d9ad362056d95b1bd4dfcd7264a56e9563a9d772aa793912eb8d40c3183aaead8c995eed493a6d6028fcb5f53ea008d1f1ce0441" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-win-x64.zip", - "hash": "d577c00083aa6d85cd6bd92747676285f2a064730f81ad77ce061808f97cf1c5911b130b6b4da0cf83626fc970f8467a7f6361a069ccc2f47bcd9859f654c1fb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-win-x86.exe", - "hash": "11293f57a05d4bdeb86ffef6f0d9816de0eaae08fbeba65ab0bf6514b98b6b43539bcd7e4893e76162e9d0b3c2a5cc1ca1c7cacb7baf603adad7f0e8039b4a69" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/aspnetcore-runtime-6.0.11-win-x86.zip", - "hash": "3e886cb296490044a18774a6bbf21d1a4efefd3d996ae0f9d732d6cf1b94f4e2b88b401f6a2ba15d10012b0775c4e1d39ff33859f96738ab1d3a71524abfd1ca" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.11/dotnet-hosting-6.0.11-win.exe", - "hash": "95183f2a3a017954f5cc7b7146ad79eacea6e26869fb4e780f5bf305d47663d9de993211ad467d070122903d91e340d961445c5634495df9a073ed6e2f05d8d5", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.11", - "version-display": "6.0.11", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-arm64.exe", - "hash": "19e73b88b417cec96624074f2f6b12ac6cee2bd9524060c64ae5b2d215827f5d4159dde2ba158137afddd2382317314f59cf27bcea1342421116dc2038b3110c" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-arm64.zip", - "hash": "2cf2dfc7de088adc5665aebdc507ebbae53d9a879f0b4079d4de3bb546d281b02b70820bf2d8fcbf22fae2c338b70ece4765aa686c84d39a236d401e6a5c8af3" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-x64.exe", - "hash": "37bef9107a069edd977c135fc54bf84f1b46862ef2636caeb9c7ddd9f53627f83cb69d6ecf79cb640d7979c7ebe80c03b1222c6c52d7a991e6c399c91fe902c0" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-x64.zip", - "hash": "765dce85155e8b5ab5a2ae3a9f5ac18783df0f35b0c7da1900321987499b1c26bacb7df338520c523584270959329b4a2d974e74ead86eb9a32fc9d6e06ceee5" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-x86.exe", - "hash": "b642a16325053b266f2f2475c31e124987dcf0e010076633cfe174761a1ff736a5047019de3cc259d88775bae6ffb4b0f907e0818895fab0e2962dfa0ee66641" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.11/windowsdesktop-runtime-6.0.11-win-x86.zip", - "hash": "6ff0d67b23f7bd2e3f70919d16d1dade5199ff316f7caf34ccd5b17aea5824ee6a55c94aa4e5722a67a6ece8b8cff40fbec277184ef83cfa4b08a401bbe7f3ac" - } - ] - } - }, - { - "release-date": "2022-10-11", - "release-version": "6.0.10", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-41032", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41032" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.10/6.0.10.md", - "runtime": { - "version": "6.0.10", - "version-display": "6.0.10", - "vs-version": "17.0.15, 17.2.9, 17.3.6, 17.4 Preview 3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-arm.tar.gz", - "hash": "75e6c380a00f253d06e33aae36403da2e31bdb4c41705455cbdb4aecee6cec05d7ab95ae90493f44e34360ffa00265a10e8295d780db8ae37225578afbcbead7" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-arm64.tar.gz", - "hash": "94d182d2d80f3cc9caabbd12e3afeef4af93269a331b64276985496e4a77040785c25b85c58cfc8093f4199e8c6da6de8128157dadfed41c82d991f57df7afdd" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-musl-arm.tar.gz", - "hash": "cac7100cab3eb35e76867fb6a7a2b7b361355d634205f2d6669757c9091d844a332b74c184f0ce566457d1548c2a490563dceefc584d64c2db3fd9d2c9b58797" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-musl-arm64.tar.gz", - "hash": "4f00918771c56856231c715ad9f1febcdc39127ac0265c97da76375ba20cbc7109ee696dae72e5f5d8fa1998588e697a4a6785c919e96a7bda7408a500cc59e1" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-musl-x64.tar.gz", - "hash": "0277e5f81ee0b28b262ee4b0de5e62d4599acf95f65dba12a562ad682675e9aa9d1d4fb5b6d3a49bac481afc405fa2596a48407ba5225093e5d6effd69aa0105" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-linux-x64.tar.gz", - "hash": "8a074c93845416f69f035f2d0e16251dd2bd5abcdfcb7863afd59a5ddc78fa03aede8f79b42c7ca857fc19c8dea53d43da4e4a311f35f6f2eaf9fd64afc8f9e4" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-osx-arm64.pkg", - "hash": "2fec69c2413d7437b1b180d3d8037e8369fe8d90cb56ca82df52177847847c56d707c6d781e3d014ffa54e7f9e8eb9b46b829dc3b21a01ad2c8895c54475ad69" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-osx-arm64.tar.gz", - "hash": "0b9eef6d820b86b64969de1d45b8201fded72b4a6339883c3f7180c1a97b19e1962cfe8664c7868fd1a20998deba7cb00f8f35f6b2d6ff6d414f1cc4ff2fcf07" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-osx-x64.pkg", - "hash": "ed948c9376d748b39bcb73f0de779d2d76c70917568adc683371320ec5f41a85f66dbdee93a27a1fc8a92f1477965be454b4b5290b5e05ee0d4356dc2a59fc26" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-osx-x64.tar.gz", - "hash": "dbd077f32b2fe22a6672f702f42b1f0af963082d9e4f4907d60951b16b70fc9827ba29773728870b1d59c9c538cbf4092fc823641677da96476059dcace57d5c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-arm64.exe", - "hash": "75059b9edb5efddd6660a1475227fea8ed0a487d7226e1147984bb3d57754cc1cafc8cba9409e82e2fb0b43508dcfc931e7f39953a43903ce9a45f81ddeb5ddb" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-arm64.zip", - "hash": "6e13d21b03fd688e1bbf9b4fc26708dea637f080ecf9fa4113db2b2b7c0e179f18af79bf594fcbba12063cdbf9db4d0dafa64cb19415682cf8fee84b1c74708c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-x64.exe", - "hash": "23e4c862afef34a2c0d6476a93274ce0158d28f1609e0404737663e4be17263e61e5a8760382fb125d288a0965394e3d04b9e1c77f99de80a2c590dd295b8732" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-x64.zip", - "hash": "2adffe00d6d905bc61435c7a1a56ca901d7489521ef28d8593e8573cff223dac6a92839c6119e0bd1bc06dcd9a407cdd7d90fe55edb3fed3beea7b4a311f91cc" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-x86.exe", - "hash": "8b9a8b8922bdffb2ca45333e9d516c3d77cf1439e5d40890a5769b83bc2b39511b164e5902a8c4092e632705eaa062dcaad405e745a134cc6b435db11e502372" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.10/dotnet-runtime-6.0.10-win-x86.zip", - "hash": "3e9a28ce5b5bb93d293689b2b00f47455bb3c890f7fbf21fc4cf52e6d23b27d49aa5777712d7c4716ba84a044c1ca36a2388f8369f09503aa9ee006aea8af9ba" - } - ] - }, - "sdk": { - "version": "6.0.402", - "version-display": "6.0.402", - "runtime-version": "6.0.10", - "vs-version": "17.3.6", - "vs-mac-version": "17.3.7", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-arm.tar.gz", - "hash": "98b275af781ac7be20e22736d601ea667161640703b9d430340e517fb2c1bdcd6d06d5eb4f374cab1f6e29c9135005050ec89dd8dcf0ec97e7b0d9912e52f988" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-arm64.tar.gz", - "hash": "2f5351192e87c2dd196d975e7618bd7b0b542034d0b1bc932fe944d8cbabb0ed2599e98e88d9757e68f198559961ab3350d8eddfacc2951df00fbf6a7e44f244" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-arm.tar.gz", - "hash": "8301b4bab44aa0f0f16ee69f0ede5ac56bd1ecf802d1fc30b12bd0da48050b40c994ac3fd4ef3fb11ab0ac4803f71301bae6a9f5f3340cbd6d2af1cb01f8c0c4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-arm64.tar.gz", - "hash": "78aa8493421c7debbe8446a1a46bb2733c27d59f8bac4eb7dc00268092ee4f5025d56914c45b3169b8fb466aab2f8274980dc3b6639b6bac5122559f607ffe49" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-x64.tar.gz", - "hash": "534eb3fa37c5dc5131cc542e95c8372571690cdc404da630734e90e87a93080c7ea9ecf29d8fa1e0a956f0599007271cae4e57ac0879cc94df08ad36aba8fdcd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-x64.tar.gz", - "hash": "972c2d9fff6a09ef8f2e6bbaa36ae5869f4f7f509ae5d28c4611532eb34be10c629af98cdf211d86dc4bc6edebb04a2672a97f78c3e0f2ff267017f8c9c59d4e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-arm64.pkg", - "hash": "4659d681910602e4c06d395cb9673d0d70cbaf504f59acab09e4c5a783781c1cad6e9fef3c30d8fe8d801879c9c1c983d6b73059c50985382ec80467f6d07aab" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-arm64.tar.gz", - "hash": "e9e73aa815f4af93ba7325c2904c191bb731b5a4048db2529da7b2472f1a140603f22d2a7d4e35b2f301d046388109116af2c9efb33e1ece43fe39cb96b83d48" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-x64.pkg", - "hash": "38ae9c0aa84079f52339be7ba5d4206f7efe392b40a1e7b2a427eaae6b924302f2a62f5a8961cbcc00d47bd6c6465b98cb4835cbe00f1541e058ac201b98a70c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-x64.tar.gz", - "hash": "b6cbb3fefdb43282f83f69cf5a7c4cc9f74bf64f1008a4a33368cf9ee1d5fa186e324549005942c1ec48778efc2ba0b33a19b5b802920c84aa636b663697cf6b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-arm64.exe", - "hash": "3439f8178c216465ee30112fce93d6cc8cde369ea51304c9d28a5c83eb19c7e0b8a1620152ed3e6889636f081240df997c93a205fc2de53d892399e4972a8c89" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-arm64.zip", - "hash": "223d64cf3103ae0aafc9f833c72f452277aeafb35cf197edf18884dcba1fc5a7e16de0beb21622cd967564e87d91d9eca9355c86f1cf1a4fd56c9d0e891253f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x64.exe", - "hash": "6cf89974261e6a12cbd5531bc2b16231daf56e438325750b381dacfd5d09c80a9addf739c1a3e28f652a7adf13971e37acaf255cd8c61ac39e903ff8ba2655c0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x64.zip", - "hash": "609217ef0e1baecc250db94cf0a0255301220d8f6a443424c0bd912b07c1fdaa5eef89b28907a70e05bee5b76c4792afdbf3e5399dc609a41c05319e523b96dd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x86.exe", - "hash": "ff7a4145a7fe4540585c62e75e58eb104acdccb4d2ce2d905f355670a20c6c3f4878148911fccbe68da2608e8c8ac4f1df09f3cb9d5cba07d025ad6b57b83c82" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x86.zip", - "hash": "a00d256379cc9bda550c5eee632ac16bae6b3beb385efc9d22f5bbaf414405a27ce3f24ecef335ae3b470104f9a28ef0a89cbf87fede41e1d7493c83b8b209a8" - } - ] - }, - "sdks": [ - { - "version": "6.0.402", - "version-display": "6.0.402", - "runtime-version": "6.0.10", - "vs-version": "17.3.6", - "vs-mac-version": "17.3.7", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-arm.tar.gz", - "hash": "98b275af781ac7be20e22736d601ea667161640703b9d430340e517fb2c1bdcd6d06d5eb4f374cab1f6e29c9135005050ec89dd8dcf0ec97e7b0d9912e52f988" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-arm64.tar.gz", - "hash": "2f5351192e87c2dd196d975e7618bd7b0b542034d0b1bc932fe944d8cbabb0ed2599e98e88d9757e68f198559961ab3350d8eddfacc2951df00fbf6a7e44f244" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-arm.tar.gz", - "hash": "8301b4bab44aa0f0f16ee69f0ede5ac56bd1ecf802d1fc30b12bd0da48050b40c994ac3fd4ef3fb11ab0ac4803f71301bae6a9f5f3340cbd6d2af1cb01f8c0c4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-arm64.tar.gz", - "hash": "78aa8493421c7debbe8446a1a46bb2733c27d59f8bac4eb7dc00268092ee4f5025d56914c45b3169b8fb466aab2f8274980dc3b6639b6bac5122559f607ffe49" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-musl-x64.tar.gz", - "hash": "534eb3fa37c5dc5131cc542e95c8372571690cdc404da630734e90e87a93080c7ea9ecf29d8fa1e0a956f0599007271cae4e57ac0879cc94df08ad36aba8fdcd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-linux-x64.tar.gz", - "hash": "972c2d9fff6a09ef8f2e6bbaa36ae5869f4f7f509ae5d28c4611532eb34be10c629af98cdf211d86dc4bc6edebb04a2672a97f78c3e0f2ff267017f8c9c59d4e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-arm64.pkg", - "hash": "4659d681910602e4c06d395cb9673d0d70cbaf504f59acab09e4c5a783781c1cad6e9fef3c30d8fe8d801879c9c1c983d6b73059c50985382ec80467f6d07aab" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-arm64.tar.gz", - "hash": "e9e73aa815f4af93ba7325c2904c191bb731b5a4048db2529da7b2472f1a140603f22d2a7d4e35b2f301d046388109116af2c9efb33e1ece43fe39cb96b83d48" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-x64.pkg", - "hash": "38ae9c0aa84079f52339be7ba5d4206f7efe392b40a1e7b2a427eaae6b924302f2a62f5a8961cbcc00d47bd6c6465b98cb4835cbe00f1541e058ac201b98a70c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-osx-x64.tar.gz", - "hash": "b6cbb3fefdb43282f83f69cf5a7c4cc9f74bf64f1008a4a33368cf9ee1d5fa186e324549005942c1ec48778efc2ba0b33a19b5b802920c84aa636b663697cf6b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-arm64.exe", - "hash": "3439f8178c216465ee30112fce93d6cc8cde369ea51304c9d28a5c83eb19c7e0b8a1620152ed3e6889636f081240df997c93a205fc2de53d892399e4972a8c89" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-arm64.zip", - "hash": "223d64cf3103ae0aafc9f833c72f452277aeafb35cf197edf18884dcba1fc5a7e16de0beb21622cd967564e87d91d9eca9355c86f1cf1a4fd56c9d0e891253f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x64.exe", - "hash": "6cf89974261e6a12cbd5531bc2b16231daf56e438325750b381dacfd5d09c80a9addf739c1a3e28f652a7adf13971e37acaf255cd8c61ac39e903ff8ba2655c0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x64.zip", - "hash": "609217ef0e1baecc250db94cf0a0255301220d8f6a443424c0bd912b07c1fdaa5eef89b28907a70e05bee5b76c4792afdbf3e5399dc609a41c05319e523b96dd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x86.exe", - "hash": "ff7a4145a7fe4540585c62e75e58eb104acdccb4d2ce2d905f355670a20c6c3f4878148911fccbe68da2608e8c8ac4f1df09f3cb9d5cba07d025ad6b57b83c82" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.402/dotnet-sdk-6.0.402-win-x86.zip", - "hash": "a00d256379cc9bda550c5eee632ac16bae6b3beb385efc9d22f5bbaf414405a27ce3f24ecef335ae3b470104f9a28ef0a89cbf87fede41e1d7493c83b8b209a8" - } - ] - }, - { - "version": "6.0.305", - "version-display": "6.0.305", - "runtime-version": "6.0.10", - "vs-version": "17.2.9", - "vs-mac-version": "17.3.7", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-arm.tar.gz", - "hash": "ae7ab7920e1ba2833ce55c44116e4400fdebd8ce48d3b193b590b938e25909a647a34706f32dd4fe2a8468ff61a8bc962d7c8dfde5404293b6254c5e980f46a6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-arm64.tar.gz", - "hash": "0d7eb35dc1b2ee8c31710bab2eeb1f6871819168bcdf7aff257074cd0c4eafc3ad52875a45cec38ad799a12e8c81bddc6267f6b608aadfd9607d435cb3e6ba6f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-musl-arm.tar.gz", - "hash": "633b16bb333fdf0cb22b2b2962f00239bddb9f332be450e250c9faca5d656003b948d25b4283acd820b66132a64b7a4b5e728c19030b12b12c73b013c71f8b6f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-musl-arm64.tar.gz", - "hash": "c41194f78e46aaae941df95884268101d2b54eae6db605c9bb168d5a4a84a2cfecd9b1bc02db8c4ad35fe127608bdfc67fc4107d7cab934e80ca87ec49822722" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-musl-x64.tar.gz", - "hash": "7f25cc8966fed34457384ab3616047dbf0c4a4b5fa820189d82e4fc4c14f0495ae00b8f56c652ad29b8252cf5887c360aaa7dac4990b7d93063fd8a898b98d3f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-linux-x64.tar.gz", - "hash": "783859f84ca572c461392a6a42a6ae05d92a5a28741e2ed829bb5d9a3bfe122e343516a9d56b4aa6bff9190f15c229574b06033999e02feac59689f567c8a80c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-osx-arm64.pkg", - "hash": "e751bb9522b61e6728a788b714d9ed6edd734e3e60c455fb16c2fb6fd2f934ecd9c9054a716b1d12238eb542bdf59973289120eb1d673752055e9e24b86f9514" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-osx-arm64.tar.gz", - "hash": "18cd914a6809d0ab783596c7a06318fea39d7c198e7171f39ba29ee1e87114c1d68a7483d9a7d22099d2e712b815d92b77c13beef9ce9f203949df26df0df4ed" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-osx-x64.pkg", - "hash": "2ccd8b30ca9f5fe0907415680c7161db7509606a873b3bc9fb4399f3bdb47bfde8cb10acc42f36c2aff39c36914eea76e2b3ff520231f9fe6c6f953bb89fbcff" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-osx-x64.tar.gz", - "hash": "a548e0dd9e5e869f358e121bbd03a36bd7af3b753e08f32cf99957e5e21213046547eca1cbcfe256d9d53d25231a3643021fb34f1f8ab5221f233875bff6d1b3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-arm64.exe", - "hash": "fc2e90b4e0edbf5c83022495614c2d5b96177cde79fe27e0bd3f9652456d94516c541cb88123b2e6cf1e63cd465d0f3617026662ee99b87cf078271ede275436" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-arm64.zip", - "hash": "6250672e5b80b1c402da5f87cacfaad48b4417fce9ba68dddd0d50a78ebccf77325c6ee4c99c935fdaf659d6b3cbdfe315cbefdc3c5eb2fa7f50a720d59aaac8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-x64.exe", - "hash": "4a4703a1eca27333a4781eb61263c2acaad6e3542e96c18b1bf38d51f2516964919225af22ea7b3dc01bff64c3a86e0db298a7dab349763b0a109475a156eeb5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-x64.zip", - "hash": "61ecb688b1a6c3213874dda92b1eb38ce8b199c7f4d78677e60c2af0b0a58a686d29f5d56463a57af863230a81a73c792df8b8b9b55dae51bbd58796e1d1de95" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-x86.exe", - "hash": "543b8f89bb9e50b8167e6dc634b0363739ec030b7e76e5d2bc66ca7ee9f19fcdd45579be50463cb90a3e5508ea842c68f3344ab179e2897311a7bb370643b3b8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.305/dotnet-sdk-6.0.305-win-x86.zip", - "hash": "5a7ab58a0b22c8216e7d0c025b1d518af1e6b96b914ba9361d3ab6267c01edf496e67220ed181a542bc03a50ca5d9d465eb489f0a2d874138d22c9d67c6d5fc8" - } - ] - }, - { - "version": "6.0.110", - "version-display": "6.0.110", - "runtime-version": "6.0.10", - "vs-version": "17.0.15", - "vs-mac-version": "17.3.7", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-arm.tar.gz", - "hash": "ed8a0a3c5edc42b6e82dc925c35ebd3ba0ddf94b98c97febb0f4ffa758b369b2c063935fa62cc5e18c1f26e64e0618daf2600d8a9946a0d44f6103d725d99091" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-arm64.tar.gz", - "hash": "da312773a6def29612ea6898c489b86b2546e5e52c7c890134712c64fb3c0e52dfab88d8589858f9a9b39c3d2c9fc39406d6da251e3cfca399eb93df0c9ad5c6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-musl-arm.tar.gz", - "hash": "1c96d40960a1a79248bc0cd1ab92b38df38a8a5832a22bb0baaccf6e861b492475aae2067bb75ad2a66862dd2b7273c3d76558f410a9c29d7d1bd58d514963ab" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-musl-arm64.tar.gz", - "hash": "59523820da71f0e799df5971736b5814034edf58c1874cf8364ff112307e0752dcf8246d10923c7564842eb34e8a7e0728d0debd491cd0104983ded1e7b72d27" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-musl-x64.tar.gz", - "hash": "68e4b9aa0d428603f01f0a8b5c151e4a775021bbbc96c2f59ce80a1acd59909ead4de9052b045b8fd388c6681dd5553207cb4d4fdde1aeaa6dbd04bf4060d33e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-linux-x64.tar.gz", - "hash": "104da00b7bfe1f564723e2314d432ad9044cbfa9ad851bc99e06e730a032c6178e487a8bee3f28f8309a32652df0143301be0b827a0c7ad00614a1ce850495e8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-osx-arm64.pkg", - "hash": "95a6b0f8194e3b2b2bf89fec61341c63e24de130a2c42983671fefec118bc1d0eec5e769eade4aae00d03a2d2bc2087a112ef3b64b9b3e7607c1c8d9f168b553" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-osx-arm64.tar.gz", - "hash": "66be3a01d07ba93d881172037b8254c988ed457b002a4f5b536b68faefbe82778efebfc2c43a1db11df4aeec104c2d856821ff1c342ae27f54dbb9ff2a9a2efd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-osx-x64.pkg", - "hash": "ecead3a270135bfea545dbd41026039d4b3ce8a3552c32a1f4320a23cd712891573bc2c9d40a2ab1a45418a81243a6a054dcadf78df792dfd5032587c32e511f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-osx-x64.tar.gz", - "hash": "9b8937bd1e4cfc9cf867f8512ded8f293f59da4a00f3c35f4f869dfa99ef12da39fa77f620d0bd71431371a776f4c9f8c7898d591aba3dd40e9e47116f99d1cd" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-arm64.exe", - "hash": "6245dda85c05c343ed88cef2d82e82d4dab16e7c16b4c97aca7afad28c57bad62d9322ea11c5fc1a461b89bdcb1d4b709213237a53199caefbfb1c015436314c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-arm64.zip", - "hash": "12e3dfd9960406c37ca2d344d7eeb6d33f20121edc4184072a1cc07c9238e165521cbfc26b8902800b0b9b47bd6618d8696390f377f8282a73cefe3e623c2737" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-x64.exe", - "hash": "c02f5f4f3616fa8ae686119a35feac093ab36d2ca088851ee2024531e6386c3e84b159a4c8cf88034bd84a93f1d64090ee6d021066eb2594b80f95bbb24db751" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-x64.zip", - "hash": "8534f4f7cda24f197f422525ae3e6b0111ea5e6a8d0d24563a1560cd701ab10341db4e80c87ccd09993492f9446be6471b3f4f8f5858e73b31d1aa76698f6f37" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-x86.exe", - "hash": "82c095b8efe3759ebfc83af49a6d1b53e51c157d075eec307fe95a0b8ed96e73764ae109fb14532f55afee32640a51bd6438427f1fc8e2944998c63f6f07e687" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.110/dotnet-sdk-6.0.110-win-x86.zip", - "hash": "ac759d3f50e31f2b40a2b73ee0b9ebf5dd214cb4b539224f4f3e52723c409cb9099e27ddecce36f482ea4301e5e0cd35baa00f7e861dd6f010c220e1b2f9ad9e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.10", - "version-display": "6.0.10", - "version-aspnetcoremodule": [ - "16.0.22270.10" - ], - "vs-version": "17.0.15", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-arm.tar.gz", - "hash": "48d590741a8d648c20e130d3934e6e4a8a4d7ce750c7c74cf4eac77fe969798c36d8780c006baa1514e0b341d3e3cd5a6a3860f484762fc703577d35b1b92202" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-arm64.tar.gz", - "hash": "254796814f5810c416361046aada833a151c946b0dda12d10d1ac792db8528b64eed4bb8195d99081639f22b2114489df0d4bae20da3fe6c63987cafe0349b2d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-musl-arm.tar.gz", - "hash": "56a8b2ee654ca040d448a7c0ef09a310d713a892de90df1146d1748db87f6aca86ec95f1db182937b2b99186a2bd3ce14d9d37e172d68552720b149041b4051b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-musl-arm64.tar.gz", - "hash": "1cc24cf179bf391945fa78ed1311e90d06451c9ba918d742f3e0338d3a0aab1374a167e781c40c8e421be8369c55936c051ab59459298dcdeaf91df6643b35cc" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-musl-x64.tar.gz", - "hash": "55cfa0419965dc15127fca3da0f567dd64dc4ca3981f5e3366e01f88c670f91b361548be99c507fcf9fdc51078387a230c3d09d399d7b0345ae4b6e60ae2615f" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-linux-x64.tar.gz", - "hash": "85fd0e7e8bcf371fe3234b46089382fae7418930daec8c5232347c08ebd44542924eaf628264335473467066512df36c3213949e56f0d0dae4cf387f2c5c6d0c" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-osx-arm64.tar.gz", - "hash": "549745d9d41329f12572025317ad40addd00bce64cf15181df5c0c5f5b29c96830397cf97eec315770c8e1b7dfce5909368b213b359f465d679390a0b741a021" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-osx-x64.tar.gz", - "hash": "9449b3f71813d2af75c3e2439aa22a639140f0c3f58c0e55fd1d66d660a603fb71f9f538d48087c113301d30f373be7aa8683e79af66427d3c70bc1713ae305c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-win-arm64.zip", - "hash": "96e541929de5b98756c2c5a88d9e0544ee64083d5bef15cb993aa124965d6c95714f5eb83e5fe73ef10d6d297e0c076e039e98bfce861e90271969662d0cbc1d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-win-x64.exe", - "hash": "4af8da7de85bcb1d079a85cd3f4aafdfc4e4d441b87dfcdffc27c820d9f69513341be5acc987c47cacdc597cbc0cc89c7d746050e6d40ae02db7391e8214352d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-win-x64.zip", - "hash": "e5767f8d7599a0efb91c4187afb94dc7ae3119244383aac4945acdc32fbe39171631dec846b6be9d53317779445ae55ce1c2915c2fbb7740a5ecb63d2ae74219" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-win-x86.exe", - "hash": "dbe4e28673b460c21477a1a6258fcc21e3f372bd4fe928ed46832dc5d768ca8b07aec6e543f15a091cf061c368154c0810a83df2c98f28724e31c056fe7e7caa" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/aspnetcore-runtime-6.0.10-win-x86.zip", - "hash": "ac419d808351ec3f39ec145670dbaba89b01cc780eb0a43e9821ddaa3ac0c827ec660b406b7e694fe33944a8ef1579c286080e936f5b214042a5edb77f845d84" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.10/dotnet-hosting-6.0.10-win.exe", - "hash": "fbb8653545c426ff62788b9493074b48e8590dde33fb0912a220e0f56589785229ad9f3fda7e9c3b3accde2c0221fe3c62b302a50898c3d398a32f9ab6d1c0d3", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.10", - "version-display": "6.0.10", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-arm64.exe", - "hash": "eb43bfe09bc185a6e97454892c98956eb044ef40881d646ee4e2a934bc0ba0054eb2d2472b33dee3e7d64ad4cdc2a4efe0e6bb9cbcc6751a87886639e4b70c6f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-arm64.zip", - "hash": "717ece5dc85ad732ea8844032b2758733791ec22bec59cc1065a1324e1261ed0470c07e682230f3107eeef13563dbb84f054a57a58dab49b7920d76571f495c5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-x64.exe", - "hash": "8fdcfc318fc0a90ad633813764d5a6ea48a6d0e4abc9c0584954b49cf0e1611b0904fd1cc066bfc55195f6424144c8020d9f00c6307cee516ec2072de728ee6e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-x64.zip", - "hash": "b2ccfc46a90eedf52faa9f6e12d0b6eb9aa44f9eb2a5c5c6b2766745c0fc32b6ac63edeee8eb881b0579ddd02cc487ac9d7f5277d330aba90e20f331fe079299" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-x86.exe", - "hash": "ac4a0b971a2829e0c16c18d37567397a89d56ce1c14b52414484982d467eb1f950a44047c27090dfd408a3783e2878777141ba7d3fbd97a7d52a5b899b030737" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.10/windowsdesktop-runtime-6.0.10-win-x86.zip", - "hash": "16186da269bd836e3278d5725d7d4fd7c519e02a256c32eaaa4855912ee8b67f949c52be85a9304e4e5bf7aeff4515db3dbdf68d7573b0d1175e3cd61ffccf77" - } - ] - } - }, - { - "release-date": "2022-09-13", - "release-version": "6.0.9", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-38013", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38013" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.9/6.0.9.md", - "runtime": { - "version": "6.0.9", - "version-display": "6.0.9", - "vs-version": "17.0.14, 17.2.8, 17.3.4, 17.4 Preview 2", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-arm.tar.gz", - "hash": "9b1bc18f86d03e3c80dbc7fb1e8d091fd9b8346deaaca810f8057f6940f60facb9592297bdd8e7e9e3df0268bd0c46f1f7609e04ba0595ff489867665df535f9" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-arm64.tar.gz", - "hash": "a4ce5ec71c60690e577e96a2cd821c05d5f05b7c1754fb753353db77e938349a53d4cc55596f7384813bc44f74eac8f991a1c00cbee60483f552663cf4d8ac31" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-musl-arm.tar.gz", - "hash": "f8baf7dbda54b29c37082f604e6b96ef3d5d6e22bc46cc52d6e8226bb6fc91449584f3203f4f2f5d20df11caa3846e46d6d6c80adddf49577d7b29d405a31d4d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-musl-arm64.tar.gz", - "hash": "3f5ca6d2e498e11bf1b46cf9ba456a4788a4dcb7ba4b0e52301bb9a3e2d511a8a9bd173be0cc8639c0297d90ad911a259da53ac2f6fd066313d79025ca42a5ef" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-musl-x64.tar.gz", - "hash": "e3eb4804dddbc34be37e3d984c13a668605ef7eea6b2daca95ea3fa7ca51b2fe4845df1ad0d343de9075796bf0d4474d7e14e5b3b4b515005d0e24ec53237ad3" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-linux-x64.tar.gz", - "hash": "a6df2cfef73047247bd36f51eaf696f616c6aa9b428e42f219bf91dcf05c03dff817a8ec826740002c8aa83df2fce8a7ace562ad2e2956789542f0b8ab8b1173" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-osx-arm64.pkg", - "hash": "c1c00cf02e5f278103a3ba9712803073db1167af0cd9446f69fc92d90815e495cec019ed889d1b1e74ffa3aaa6c843744f7ae6302838ebd027f93f5862f15514" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-osx-arm64.tar.gz", - "hash": "07dfd194fdc67bd096db0edc691fc2a2d0e41d8a3023582ef1ff7348eb0fca3a58d97b79c454e5c67339f6d9c9b0f3b997d68f6ec7bd0e8c86d584da6d94cd8c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-osx-x64.pkg", - "hash": "d482655facc229dc352ceaaa14001b5e813285bdb1a4f83beb402b02b8ff6fa150787104a28440d8251f0d6cd4bff088c9cab877fe71dbda12d1ef65e4da07d0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-osx-x64.tar.gz", - "hash": "b52542c1850c14b409c0938a31188821b428199a7f3f55779f4986867a78eedfe06478f8ea79e8b20d078fcfd9201dc10d4a73146ef8fd56753f0cd23c5328ac" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-arm64.exe", - "hash": "da44838b878dcf642c65d84df6d7a24107dc5f05ac2b3a321203346759958a98dd6bca3017c44b4073bf7d3d016f1bd5035aef5ad62d2231dbd4f65128b68659" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-arm64.zip", - "hash": "e17c582badbfaa572fb87db2440b923e6f8cb3b44149c7feefdc41a90dda04f971d89d8e226f54941c96c0939526554da86d85464869b318293fe00fcc3e622c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-x64.exe", - "hash": "5f4a73342b3563937f2efb576aa101c29c0ad4908413ba87c415a733239b9af196ff04778f2e8bf5845508b069812c13ca281ea5e912552aab5227e7841e502d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-x64.zip", - "hash": "09bc63373b1dd73cd6a8c1429136597b1b1e4971f5467aa96770837b925e8e6b8e03333be71053ce0e5cf97b447f34205de8b67cf75b178a3b04a5f6643686e3" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-x86.exe", - "hash": "4a5ee2e0297140fb4b6064540cbb9d520c1b3bef474f8342dfc5aaed0fd85b7fe26c49f85d17686e85540d421da57eb2ae4d2b402c5184a6ef2eaded33b097a9" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.9/dotnet-runtime-6.0.9-win-x86.zip", - "hash": "09847079dc9c1c6eae7bd64dae46e3b667bea7520d0c6d47ea497ee303acbf0251d049b09ce505f5e678f3ddf54747f2b019632421d735cb17cd6ef4ef256831" - } - ] - }, - "sdk": { - "version": "6.0.401", - "version-display": "6.0.401", - "runtime-version": "6.0.9", - "vs-version": "17.3.4", - "vs-mac-version": "17.3.5", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-arm.tar.gz", - "hash": "7d3c32f510a7298b8e4c32a95e7d3c9b0475d94510732a405163c7bff589ffda8964f2e9336d560bd1dc37461e6cb3da5809337a586da0288bdcc71496013ba0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-arm64.tar.gz", - "hash": "8c05f9e02e0a48fcc3e4534fa7225fe5b974c07f1a4788c46207e18e94031194e1c881e40452ee6c432764e92331c50ae47305d4aec5afa363fab3a8a6727cdf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-arm.tar.gz", - "hash": "059b7780896ee5af350a4c8342e0262d58046f78bd2310e585ab879df1c99e2a5b1bb3254d91e9c358a0ac82fc4df25b7f34bc08bb77e16cc695990445c36ad7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-arm64.tar.gz", - "hash": "cf4cc55e8d877913960d510d99f4c4034ba1d4eac98f50298c33c08854199a369b572b25954a939eb2ba4994d6fb1b41614781260af9abe7f27e2f76c4962d88" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-x64.tar.gz", - "hash": "acdb7c08d4fb290d3aac2e212c51840f6d9ca787aca94dffe85317a515c541670456ffe37c2365541f18edcd7b39243d72e7d8e5ab4562a2896fd96bbf6cf6b8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-x64.tar.gz", - "hash": "6fce5f29e6cfc80da1df86d2de3a637108023397d275e0dcfa0b79ef36eb85c2c3433db467aa5d8fda7e32bc21205a126636b53d56c4eb4c547d9d3b2370cb31" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-arm64.pkg", - "hash": "2f99d959b5a5f480bb159a05ad26861b22f03e4e7c6147cecc161223c0142be341520bd36dab6fa81cd4efaef254cad5ea819bc0465943b4801e6a608791ad89" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-arm64.tar.gz", - "hash": "0e1974a99863afe0b2c03fe52874ad388c3e019e34c7e0a1dc29955dfa9783a946082270fbd767272817509b30d1928d0c9f12cda43777292587693e0b0fc604" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-x64.pkg", - "hash": "c4af91f83bbe731d8b3240443cf7167b72e63434ffb448de81e6c65dc706655ffa735dfe7a11effc8633d74614f6b21543d65e8c6c22c05c512f25257a91db66" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-x64.tar.gz", - "hash": "6cc47bd279ba3d5e2df9f41b14b25662c8a3d61d5dee0fe021ad54a8709aa8a34430deb644c3525d66124a6a1bdf6a273008ea5fcbddccee238f4c470bac3e05" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-arm64.exe", - "hash": "22106ea345999269312a5c87b7076882c2f4d611a6866b5fb0e0cc39bba35d292ffba733024eadcbc62bfdcb68b481a073e88d5a65d026c3f7b61314d38be48b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-arm64.zip", - "hash": "be17ac736f9ef448e5c5c9ce42ace78b167fe9a489ae725f10f935860cf52c6708167230fb8eb2372816c6c02eb7fc74be4915033124cdcc5cd7a98639669cd8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x64.exe", - "hash": "aed1b2ddcfe8056d4a4c3bcbed3ff508010e3a1e4a40e82302c8ce30133f1dd55d93fadd19c8aa6114d7dc6c374764401845f1bd38bec26e9c4e6cd482e5e438" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x64.zip", - "hash": "bab1b1c753536bfd24ad0066bb1c193c7c473442a7891499a1c265b882ae75bcc245c3dccde7f6c5b3d3db70f5de286fcc70c0837d7922104a233bc323907867" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x86.exe", - "hash": "1661c82829c234b5af5c9742e9eb04ca0f0725a83c80f386a7a1743579b4268b2d92946360f0af183d793258d5cb210c1e981e72244c26949d6be99c512a55ff" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x86.zip", - "hash": "5273425d1a240f5355765827cd425726c5f7e617a6d201cafd41953d5d7cfb6be701c7541561859d8b74b4dedba37ceb245e3f99a7c570963cfc18842d9b96b5" - } - ] - }, - "sdks": [ - { - "version": "6.0.401", - "version-display": "6.0.401", - "runtime-version": "6.0.9", - "vs-version": "17.3.4", - "vs-mac-version": "17.3.5", - "vs-support": "Visual Studio 2022 (v17.3)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-arm.tar.gz", - "hash": "7d3c32f510a7298b8e4c32a95e7d3c9b0475d94510732a405163c7bff589ffda8964f2e9336d560bd1dc37461e6cb3da5809337a586da0288bdcc71496013ba0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-arm64.tar.gz", - "hash": "8c05f9e02e0a48fcc3e4534fa7225fe5b974c07f1a4788c46207e18e94031194e1c881e40452ee6c432764e92331c50ae47305d4aec5afa363fab3a8a6727cdf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-arm.tar.gz", - "hash": "059b7780896ee5af350a4c8342e0262d58046f78bd2310e585ab879df1c99e2a5b1bb3254d91e9c358a0ac82fc4df25b7f34bc08bb77e16cc695990445c36ad7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-arm64.tar.gz", - "hash": "cf4cc55e8d877913960d510d99f4c4034ba1d4eac98f50298c33c08854199a369b572b25954a939eb2ba4994d6fb1b41614781260af9abe7f27e2f76c4962d88" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-musl-x64.tar.gz", - "hash": "acdb7c08d4fb290d3aac2e212c51840f6d9ca787aca94dffe85317a515c541670456ffe37c2365541f18edcd7b39243d72e7d8e5ab4562a2896fd96bbf6cf6b8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-linux-x64.tar.gz", - "hash": "6fce5f29e6cfc80da1df86d2de3a637108023397d275e0dcfa0b79ef36eb85c2c3433db467aa5d8fda7e32bc21205a126636b53d56c4eb4c547d9d3b2370cb31" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-arm64.pkg", - "hash": "2f99d959b5a5f480bb159a05ad26861b22f03e4e7c6147cecc161223c0142be341520bd36dab6fa81cd4efaef254cad5ea819bc0465943b4801e6a608791ad89" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-arm64.tar.gz", - "hash": "0e1974a99863afe0b2c03fe52874ad388c3e019e34c7e0a1dc29955dfa9783a946082270fbd767272817509b30d1928d0c9f12cda43777292587693e0b0fc604" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-x64.pkg", - "hash": "c4af91f83bbe731d8b3240443cf7167b72e63434ffb448de81e6c65dc706655ffa735dfe7a11effc8633d74614f6b21543d65e8c6c22c05c512f25257a91db66" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-osx-x64.tar.gz", - "hash": "6cc47bd279ba3d5e2df9f41b14b25662c8a3d61d5dee0fe021ad54a8709aa8a34430deb644c3525d66124a6a1bdf6a273008ea5fcbddccee238f4c470bac3e05" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-arm64.exe", - "hash": "22106ea345999269312a5c87b7076882c2f4d611a6866b5fb0e0cc39bba35d292ffba733024eadcbc62bfdcb68b481a073e88d5a65d026c3f7b61314d38be48b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-arm64.zip", - "hash": "be17ac736f9ef448e5c5c9ce42ace78b167fe9a489ae725f10f935860cf52c6708167230fb8eb2372816c6c02eb7fc74be4915033124cdcc5cd7a98639669cd8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x64.exe", - "hash": "aed1b2ddcfe8056d4a4c3bcbed3ff508010e3a1e4a40e82302c8ce30133f1dd55d93fadd19c8aa6114d7dc6c374764401845f1bd38bec26e9c4e6cd482e5e438" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x64.zip", - "hash": "bab1b1c753536bfd24ad0066bb1c193c7c473442a7891499a1c265b882ae75bcc245c3dccde7f6c5b3d3db70f5de286fcc70c0837d7922104a233bc323907867" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x86.exe", - "hash": "1661c82829c234b5af5c9742e9eb04ca0f0725a83c80f386a7a1743579b4268b2d92946360f0af183d793258d5cb210c1e981e72244c26949d6be99c512a55ff" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.401/dotnet-sdk-6.0.401-win-x86.zip", - "hash": "5273425d1a240f5355765827cd425726c5f7e617a6d201cafd41953d5d7cfb6be701c7541561859d8b74b4dedba37ceb245e3f99a7c570963cfc18842d9b96b5" - } - ] - }, - { - "version": "6.0.304", - "version-display": "6.0.304", - "runtime-version": "6.0.9", - "vs-version": "17.2.8", - "vs-mac-version": "17.3.5", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-arm.tar.gz", - "hash": "4cbcb1fe9d9c3be643d3d0247e5cb4eff95778429a4eeae38060d268b3d31ef4c51cd47357c03a4d4281c5eb20feaa07ac140d430ffe4270c0f37aba3af546b4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-arm64.tar.gz", - "hash": "69dbd86331002990d7f6c915b0fb832c5d8ba55bb4dacbd6a4065ca7d59e92902fb5052f6cd905a453e42355a655d526b5c12be8fb5d12255af2d345d5b12846" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-musl-arm.tar.gz", - "hash": "2f65c701f7cae2b056ee43ceeb2db7203c1e4afd25d4ed3902c284d333cef00f0d5e6540ed496507cb90fb0fab16b72c4dcb45fd6b253357e0b1d293b0e661fd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-musl-arm64.tar.gz", - "hash": "03ae13643f3b3b86b001a49a150a0214f37602c4dbb5574fb12e79868663d263f078f5af3d87ebb62e76e119bca860133cf47ee3387756511839844a2bfe692b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-musl-x64.tar.gz", - "hash": "e7bb801863e4abe9d246d8272892c35cb31c518dc145472d456daa36eeeaa6bc95b62a612dfa6fa6e6ebf813dbe77c71793191b46a0ecf9621b9867a465a265c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-linux-x64.tar.gz", - "hash": "56cc230bcee184b7d661433183b4fd31a05e5a1922c7b2e612581e6e59552cfba5ff10a02192f97c96758888af096288ca972674763a3c5409941593a194d5c8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-osx-arm64.pkg", - "hash": "b26ca98f397c72ca6e1f6292fd9ab89964d347de8377bac936ce0d9b75da748f51c2dc76e8f7d71918cfa77ed7f5847815a6f0e33afdfcd1f7246fd39d2c53ed" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-osx-arm64.tar.gz", - "hash": "84db8eaf1ea3ae9b8b74609989a2d67367533ebe1ef2d39db5c3320c488b3cec9106a4f89b826c33d7bae2e44124e1f6b8093b8156c5f08fe80c1d6d8f961f10" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-osx-x64.pkg", - "hash": "58514a7b283f452803a551315339202dfbca032c2b33427b590b4dcc3611cfaabe1ece2a3e3b6a7d4531fb3e7214e25a714212324d732074acc9b6c68a7d0450" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-osx-x64.tar.gz", - "hash": "6ab14abb005b9d9704291f342d8d9bdf2095c780bb443216b220d3e78be3ba8b03b7104b6b3dbb69e24fb45cac8b719ec9bd92a93bb5635de77dba54cabc3e22" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-arm64.exe", - "hash": "baed7769e6f63508cfcd1d0154045e17ddd371475d5456621e7577708a2b0fa3d9ef63b1e2e46cbe5153659848dff10635a60a58979680b1b139efb143fb5b4c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-arm64.zip", - "hash": "01a8e2a72badebc96b6efa4f3e5df04feb01870a1a709f01d52b192983eec430436470f15cbeb0cad1ade42262ef757838608b4ab0bd0b692897d9925cf30cc1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-x64.exe", - "hash": "fcb5284621030199c876ae408f8ad5dadb6c539d83ba89c574d0d5bca76ef67edfaf814cfa5afa14f465bf5d9db36e69e9f67b70b66440ef1ec81d36b7e7ca04" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-x64.zip", - "hash": "702246b6767f9aec2ea788cc4b3446a1a09afd4559c4419cca0047830c4a07dfb50c744746effa516eed171b3cd47202bdae83044725b687c9442e19c048372b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-x86.exe", - "hash": "429ea31961a8af3e5ae79c21edeccceb433582e93c66f121ec589eb70aa15a57919586af3cc342f3497a4fc1c48d68d58f3ddda4d3d4bb2a65ae293dc686fb9e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.304/dotnet-sdk-6.0.304-win-x86.zip", - "hash": "df0d99f71b30431d90d79d65e0a05256fc5b363a8279e06fa90db473ddb0c750dedf22336efe6d37a348cf04ab38514634ac6bcabe3b919932a0432a878bc23b" - } - ] - }, - { - "version": "6.0.109", - "version-display": "6.0.109", - "runtime-version": "6.0.9", - "vs-version": "17.0.14", - "vs-mac-version": "17.3.5", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-arm.tar.gz", - "hash": "b757ffdef4b87a9394ce0a367f5563b2900e9720eba6b071ce22e454eaddcb7983bde182d90ef552b5b903c2b5505af5ab642190c982dfc18649ea8ee8657886" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-arm64.tar.gz", - "hash": "eb4a42a45cbf8a92d2f78d4299ec34ab11d6d8dbc28dcab9dbe95648e40895a0dc56675a99b4df9e1f5a42ab0f3368322ae17381810d9bac5cb8623066120b80" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-musl-arm.tar.gz", - "hash": "4b567f08847298b0f390c5ff3ad874fb8ec193923f4d3145a3f076b345b4c746f4b5158cca25ca9934f6634b05f1b645ff05114348555162600e0a81cf33564e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-musl-arm64.tar.gz", - "hash": "bfcb8c3e9fb70f0dd10d87c33c338b56399d453ea508455d84cb9010cc41774d1766426360953b4b209adc4a27750b598dabc3fa3c65ebe357db2fd6d9d486cf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-musl-x64.tar.gz", - "hash": "7620f7eb93f77e03ab24a00521085d4469978e9324af1be6fb8fa05bd8fcbbc6ee869ddee995c717f4bb00a2f582756a17450301def4f4c392186cfd803af13a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-linux-x64.tar.gz", - "hash": "3bc9f437a512a72a4ee8e5502f425bb7bf9f3d91db726fcf8052217eec7aea8bd68bfbf17db7a1a4bf3a7559cac85f0fc5e5893f27f8da83719930f65f563022" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-osx-arm64.pkg", - "hash": "478d4c1614d054dfc4e5be8cba8782f015f1903ca226ba059c5024e00ee50a930190946b2b16d90d64616c95b91defd9f17459b107ed4d5f2c6d8f31d9bad730" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-osx-arm64.tar.gz", - "hash": "94dd6696b25f5362e5a24175396d29cc39089acaccf41801e96a137b8276227802eb7eb17e92f20050b5b6a8c264cd3673c55b6bb74c5c6d11a6b181d058615a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-osx-x64.pkg", - "hash": "9a13ce6a2fb2190820be85be3f820cdd537c96af11db4a51a84e80b969f14bccba87939f80e272c46fbf0e3d103b370fcf62f584b497518de3928abb2dd5546d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-osx-x64.tar.gz", - "hash": "36a9b82fc04cc83cf2efad689d5063056c12d8823e50b24ef7ae452860909e81c8c7f82df2d8279d4bc0b960d401621e39a89191937b0a47b02cb3722e39e920" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-arm64.exe", - "hash": "8c73c4f7990965f70e11fa81436c434e3676dcd982ee57daeb334b0840af76ba4edcd019f8eecbaf28f3fbd3f3416173b0a7f6820ec86438ec4fbcef3ce48098" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-arm64.zip", - "hash": "f5ea5d74abb1df516b74e46fb4255cb5244066eca9b845dfc1acc14518448e7b2f8ef2b28ed0a000abdf8ea29191128c456b8237e6d5d81685292edd8f95f23a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-x64.exe", - "hash": "0034730f01718788a993823bda1d536c97224494c0211ed8d952f83e8fc6fee1b78425a97df45c7cd0848d9e5313dd6699bffee766f53673c7fb95aa31a4a2fb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-x64.zip", - "hash": "c581624af3590ae63d28f8041aba1c79f2c58c3cdd600cfe155de9da85a17748a1a8c40657a2a4f580664f8f2d28df20a14d15d4e4ed30c05bc0b2296aa69e53" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-x86.exe", - "hash": "f14892c024ad12ec808d0ea9306f647cfbabc30537053a4700d14ab2f52714c1ddcb8806613629cefb31fff40ba5e318d245b58de5bbfefca19bb07cbc7c0ab6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.109/dotnet-sdk-6.0.109-win-x86.zip", - "hash": "20d6bc74e5077b1a9ceaaf8da40defe5bcc3ead8fc155714445f2a451396a89d5d14a0567b19386ae96acb9bbcc69980c1130f4f707111f8fbb2160679e9cec8" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.9", - "version-display": "6.0.9", - "version-aspnetcoremodule": [ - "16.0.22232.9" - ], - "vs-version": "17.0.14", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-arm.tar.gz", - "hash": "c301b948d5121b4363c8ee9df2915c6c4d588fc0969cae2761f20fb8770bf93e2807b307acca3e313e41adee3f426c47af800b0394700564a480740bd12aa746" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-arm64.tar.gz", - "hash": "ed3315276f918f52188430b0d84d843e938c770e0be06afaec6de0b398a1268bae0195c71a29971923b5b7331b6bb64a623a27f48e21a4c8538fde2a543b2dd2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-musl-arm.tar.gz", - "hash": "03703940ddcbdb45350d09cea211380660f831be68c1d50492f98d97e77ff0aad706ca59cd15c260164d5134f92b724d45846f79edc0dea049da18b8e43c1052" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-musl-arm64.tar.gz", - "hash": "55945e23e2f4140af61f785a47ee15ec94880d52683e1881fb184b2341a1ecf8e04650e1fd896dd44d9493fe0fd3a9365f10dadb897560f42f1bc4cf5b7b9924" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-musl-x64.tar.gz", - "hash": "eb8013608488e7a15dfa847229b7a3d0771312bcf63ddd099846c0ceaf7b506b8a2acb41de40affc8e72adb0526d5c6daf0a059e19e73436f4b3bdc258e153a4" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-linux-x64.tar.gz", - "hash": "e808036155bc324335c309aaf948b2be1940a62eaf0135752989644698653c8f3a5ce310c3ee6742e3af73dbe175c6e529298eedf6eeb31cc38bfeab628f6d7b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-osx-arm64.tar.gz", - "hash": "d47e828c160b7e162f26d0074a47a1646863fc63fde393758d020546d03843e3f98adb92e3c0041a9088ad31043314317a2e8be616f8079d8c98754f94eb55cc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-osx-x64.tar.gz", - "hash": "d67dd72cfd0fb9d96077bc6c3518fabbde107d97b4645c13dc82ec99abdfb4030e10638e4fb0c52aa5246d90628348fd877625469f14fb45e4467934229749d7" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-win-arm64.zip", - "hash": "6267cec00397d83347760c23051220117dfd7431003c9065f5d3f7d34d1e7129a7c2065ced76ad0f3f9a8eaccc5ff8e4ba94a5e9a32b208387f2451ab82ab9bf" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-win-x64.exe", - "hash": "e3fae121878e5d98f49aeaa0a20b03ece760fcf75429256b7af13b78608eeaa2d2485578ed952a410cc590008023e62584233bad0e34e9fa632d445bce7fa1f5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-win-x64.zip", - "hash": "87a187781cb0b5cc364ed52d240feb703855698cfc6c24e49d331ddaa759cfcb135813292fb9d18dc92d182531d8eccf3a50c0494415ca5776afe8cc5230b650" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-win-x86.exe", - "hash": "493d9a5388a0e6bef4fed091465b58a5cc6d9c148478e5a9822d76eca61395cffa93ebadaec78c9f7e1da5ccecc00881baf10b757ca9c4eb9d475fb8ede7fc53" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/aspnetcore-runtime-6.0.9-win-x86.zip", - "hash": "de25ba89b7319c270085aea53bfacbf8d13bcfaf499528649af1f3a9ed37f0c543ca468e3527398a3289ecd41c36b87ca00d646dd3ca128ade2f0ff1359775a7" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.9/dotnet-hosting-6.0.9-win.exe", - "hash": "fb8d8099fbe193e37629c01dc1727f6ed8efb27e47321738cba9db03e733497eb0c8d69bd99b6723a56178f8d049eaf60064ac8bf089986e859f34707a17c0fa", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.9", - "version-display": "6.0.9", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-arm64.exe", - "hash": "a741c4af559526d69e00be8d0d954d365d67f30739af9d142fef28b0197ebaad9f169108b71c4cfa9ba94cc86fe2f0900f8a3165aa1cd0349c74defdf9f6157d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-arm64.zip", - "hash": "d982d1500578ed7c3fcc7d7e284779a229458b3c53609ce65f5ef0ac8a86513c9ce07c0232170cf5ec343ee3818e82d951f1b1ed29d67c8bc5d2d6ee3cdd0a47" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-x64.exe", - "hash": "28cc3d88e6fa54938177937118260e9129967246e30d2140fdb7a4a8e9e393efec689d6282edb6982853fd3ba27701239a8d1ee81a2dd28c93b186f1a3cb1b55" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-x64.zip", - "hash": "e66575bcb2cd5227f6d53dd96e4b57052f47cfba56c73ee6a475b846c420e03f36592156c5a8c2a4bf76fafde6a81ba3b7a02557f76caed09eebf496b892dd27" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-x86.exe", - "hash": "6b45a936a15710e22a03c64ad4f37ee4a934d957d31e78f73533099109bbeecdb8eab7ec0749c2ecbcf90b72c9d6c7462252885f7c502f68e636167cacba3de0" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.9/windowsdesktop-runtime-6.0.9-win-x86.zip", - "hash": "5c2e86f566511d5c712b6afd01cb4b14c068bb29cb5c7c381e7c0e9e0d51d03b792e3c338b59897176af0497d2930c9b74ca236da445dcda09163e7f1726033f" - } - ] - } - }, - { - "release-date": "2022-08-09", - "release-version": "6.0.8", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-34716", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-34716" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.8/6.0.8.md", - "runtime": { - "version": "6.0.8", - "version-display": "6.0.8", - "vs-version": "17.0.13, 17.2.7", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-arm.tar.gz", - "hash": "15720bb8dbd3002bd5058f86f05122be56805d7e22cc189acd34a97602ceca13aa832ccdcb171741b9507294bff84e9a190a69c1ed5e4f50bdf562fd93f006fe" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-arm64.tar.gz", - "hash": "7cd60eda5219a6b882e53e85e2b6543dedc91605503ce8085f447835382fd1b6abd7c8810e0fd865ecaa33167cedf2a33884dd4eb2bdd2857fe69d509cd62a9c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-musl-arm.tar.gz", - "hash": "c50eb9781eb48f958ae286ff06f7c9a85959c8793d91d389b6f1d162bd8eb50d0014a0f8a34a623d7b6fda686717558eec9b59fe4fb752c27baf43524dca83aa" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-musl-arm64.tar.gz", - "hash": "fca50a3dd625d5f430edcac9186f0ce3b0690e504c95cee83221b4b3c332885392e854cabde1557940a71e3decc260cd4a79a4e45ac41c792297a4c35f2ecb52" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-musl-x64.tar.gz", - "hash": "3e627b704f291311c7c54251745a0dac294259fa7984cb0e6c99103ce012aa724add3be883679895aa3e9692b6166639871ba62830165a120759a98bc03eeff8" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-linux-x64.tar.gz", - "hash": "c776813bf87c25766b31a3a514d124d0526086ceea514a10f104d70ba435c91a6bd3c8bf10c6662b4df2b13ffcdf385518f3418e51d05cccec6a2cf2c26099de" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-osx-arm64.pkg", - "hash": "096481fd7e5588952efa84a2243e540146d70773032dc4fd77679839613a4c84df433c332d6de9cc09ab5fbd19037edc66fad357da56daa43cdea102caa7019a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-osx-arm64.tar.gz", - "hash": "99264f4e34e2b6e1a82f3716cce5753967f3386348593e7f51085d96dbec4acf1400a451e9320afbfb45a9b777df1f8bbed8e78d7c4810336f3d226bdfd4343f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-osx-x64.pkg", - "hash": "17621b72b75e0a68c5e4ed3046d2a3e1ceafb927fc39d1532d87d17443eddfd177ed1274b4d75a4dadc4df27faddb76ef0cd8b51c0657de41dc41b0d0fa74d95" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-osx-x64.tar.gz", - "hash": "8100003430b073e9f1f16910eef8af5a5ea806754a1818971ba15f4ba44e12455330334bd1488088880f7ed3ff67c2a4c4a3d8037f4202c95e6bc029806c8b15" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-arm64.exe", - "hash": "3190abc32f625234b6f7bd05ca6e5f9c8e1919b6409c668712b4542dd247b04b33a4169e4e65d6ae2313ed10959416da98521cb42a87f8e5d8cc6b9cc2470288" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-arm64.zip", - "hash": "50ae5abf60cca9c62fcdd7d45d64982bd3ab5c3c5fba5cb905bdf075f63981a8d52635edf36e2090ac16980af6c02543de3411c449fbe32f9282242646673ce6" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-x64.exe", - "hash": "c839f650460a7d89e6d7ba5e074885d25abaab882c94dc8dc8ce88347b23afcf5b109db6c800922d0b36c20fffa0ecd40a506447789e15473da22fab0d86a176" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-x64.zip", - "hash": "365503c27d555c687ff7fbd36434fd4c71f2bcbeaf16f7761cd6ee2355c04b9bf54129595ccf13087cde8c2e177439d7f4cf0e135b470a7ce1b4188a6cd80e6e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-x86.exe", - "hash": "439a0f6d92af686d30641c8efdaf3adbf4bdeb0720441d90931fb12e0589b82b052d94adcbeaf8713865832e2ca670ff37b36eaf6099799a8a781631f47a0fe7" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.8/dotnet-runtime-6.0.8-win-x86.zip", - "hash": "8f1a330e2b8d97b3c9481ae77671f283a5e27f1a799ad8759c73c0e4d08e38d307f66c67017a143f8ce8fc9fccaa92644e653c33fc3ad820be3452c343c85778" - } - ] - }, - "sdk": { - "version": "6.0.400", - "version-display": "6.0.400", - "runtime-version": "6.0.8", - "vs-version": "17.3.0", - "vs-mac-version": "17.3.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-arm.tar.gz", - "hash": "a72aa70bfb15e21a20ddd90c2c3e37acb53e6f1e50f5b6948aac616b28f80ac81e1157e8db5688e21dc9a7496011ef0fcf06cdca74ddc7271f9a1c6268f4b1b2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-arm64.tar.gz", - "hash": "a21010f9e0e091bf0a4df9dfc4ec9893c056c2b07b10be093ea392a4fa5c8a38bad9535f66e570b45dc25165b685199fb729434b845bcfb35f8b79cceb22c632" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-arm.tar.gz", - "hash": "43688531b305109c2862288a60e923a43e694b88e7af9779f1ec1144587b8aca475ddc7f29a5364d8a8719c7816f98c3e56c436f37fdbd5a968d2fffb30c6dfb" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-arm64.tar.gz", - "hash": "bc19c8217b48000a76b34ec0ece60fd9aacd32ad0de005144abe83702816ba98c32421cfbc7bd78f0cf1d1dbf2779e54fae07939422e1ba7b3d0a82553bf9ab6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-x64.tar.gz", - "hash": "e5f27cc44cfdfa3237cac49127288b357d7351c36dee7202dc1d15239e25d6da770679d2d7f1e01a6d1b89d18e7bd44b196f6a54e87ac564b313c49dc4828055" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-x64.tar.gz", - "hash": "8decbba0a6b09501daede52cbb5a9ae9e5f31ade201918c03efcd1b4cc345ec934f88321704ec3beb1f90f2204934be7259c76f66d9204cbdd15933582602763" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-arm64.pkg", - "hash": "53faacfdf57fa722f278992f61122fcf8383b2811a22948ac70331cb870344f4193cb67950786b99eee389f64f63851747c19d16ec4a34e0db97a6e545559655" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-arm64.tar.gz", - "hash": "c3b016bc558f42fba29a8aebcc04be7b3aa3b0290755b6ee2fea1f48f921da78b86cb31913c4b7e32c0421b45a617b551ba593f98f349fae43ea1faa38348412" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-x64.pkg", - "hash": "1f30e5e83b74fcd86230a2999f656634eba02892fb0d5ac12fc6e8a9aeac76e27fe22368d069bb1f17d4cacb0b5c5234ad0cbbd21d7a0670fa7dc9ff320aa155" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-x64.tar.gz", - "hash": "35b80347e31baefdbd42e7434ffa0df1069367a4f8deec8b4051a44658b3ed531832f0e92357887a2f5a27c6433304537c846cdd4793aac874bace82a899053e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-arm64.exe", - "hash": "0e0fcb82aac11452b0d3f86f9b3799f81ff4a5c5a49563ade0ce01183265c81e9bf368ea1a4359aa94fb45022e52943d0beea14a3ba9365c8d47a6d5771d3887" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-arm64.zip", - "hash": "1c26a05aca21d0289cf1f306c6281d8950296aace8f6a6e0ea93502f927705c2c272b77a3ab901b26ea18da1c8f6e30e18216c33e9d77200e50c8291e05ace4c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x64.exe", - "hash": "2ef178ceb63590e548fb644d265c4e1f8fdc319fa7d9f31442a958ac901198e4d1edc1b6ea213527bd9f5fba7925d7a12ce9a37d0fc791862518df70fa597f61" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x64.zip", - "hash": "382d0ea5d78e18691a4e5789db174df1ee0d64062a7198793776db1b0857e303bd23d12008dd87d952fe8d5a4d3fd2eb58735a46db7c26b5b9e3fb51f3435c66" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x86.exe", - "hash": "a9a163b6613fd8287deede5901e8a66b2def51b0967c6acb9e3c0d1db81e5d23b797542d728c86976024c6b448ba900ada5e999bae17eaec3d02ca7531a7d030" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x86.zip", - "hash": "3388f18cdc52b84d1502fd5727dcb3f10477556e5b4cd4c1731b087ba3aaa4669876c119e58ec3b0b78054d295a92210948dd75a9d19ed96249e54b8b1c7fcac" - } - ] - }, - "sdks": [ - { - "version": "6.0.400", - "version-display": "6.0.400", - "runtime-version": "6.0.8", - "vs-version": "17.3.0", - "vs-mac-version": "17.3.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-arm.tar.gz", - "hash": "a72aa70bfb15e21a20ddd90c2c3e37acb53e6f1e50f5b6948aac616b28f80ac81e1157e8db5688e21dc9a7496011ef0fcf06cdca74ddc7271f9a1c6268f4b1b2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-arm64.tar.gz", - "hash": "a21010f9e0e091bf0a4df9dfc4ec9893c056c2b07b10be093ea392a4fa5c8a38bad9535f66e570b45dc25165b685199fb729434b845bcfb35f8b79cceb22c632" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-arm.tar.gz", - "hash": "43688531b305109c2862288a60e923a43e694b88e7af9779f1ec1144587b8aca475ddc7f29a5364d8a8719c7816f98c3e56c436f37fdbd5a968d2fffb30c6dfb" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-arm64.tar.gz", - "hash": "bc19c8217b48000a76b34ec0ece60fd9aacd32ad0de005144abe83702816ba98c32421cfbc7bd78f0cf1d1dbf2779e54fae07939422e1ba7b3d0a82553bf9ab6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-musl-x64.tar.gz", - "hash": "e5f27cc44cfdfa3237cac49127288b357d7351c36dee7202dc1d15239e25d6da770679d2d7f1e01a6d1b89d18e7bd44b196f6a54e87ac564b313c49dc4828055" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-linux-x64.tar.gz", - "hash": "8decbba0a6b09501daede52cbb5a9ae9e5f31ade201918c03efcd1b4cc345ec934f88321704ec3beb1f90f2204934be7259c76f66d9204cbdd15933582602763" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-arm64.pkg", - "hash": "53faacfdf57fa722f278992f61122fcf8383b2811a22948ac70331cb870344f4193cb67950786b99eee389f64f63851747c19d16ec4a34e0db97a6e545559655" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-arm64.tar.gz", - "hash": "c3b016bc558f42fba29a8aebcc04be7b3aa3b0290755b6ee2fea1f48f921da78b86cb31913c4b7e32c0421b45a617b551ba593f98f349fae43ea1faa38348412" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-x64.pkg", - "hash": "1f30e5e83b74fcd86230a2999f656634eba02892fb0d5ac12fc6e8a9aeac76e27fe22368d069bb1f17d4cacb0b5c5234ad0cbbd21d7a0670fa7dc9ff320aa155" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-osx-x64.tar.gz", - "hash": "35b80347e31baefdbd42e7434ffa0df1069367a4f8deec8b4051a44658b3ed531832f0e92357887a2f5a27c6433304537c846cdd4793aac874bace82a899053e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-arm64.exe", - "hash": "0e0fcb82aac11452b0d3f86f9b3799f81ff4a5c5a49563ade0ce01183265c81e9bf368ea1a4359aa94fb45022e52943d0beea14a3ba9365c8d47a6d5771d3887" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-arm64.zip", - "hash": "1c26a05aca21d0289cf1f306c6281d8950296aace8f6a6e0ea93502f927705c2c272b77a3ab901b26ea18da1c8f6e30e18216c33e9d77200e50c8291e05ace4c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x64.exe", - "hash": "2ef178ceb63590e548fb644d265c4e1f8fdc319fa7d9f31442a958ac901198e4d1edc1b6ea213527bd9f5fba7925d7a12ce9a37d0fc791862518df70fa597f61" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x64.zip", - "hash": "382d0ea5d78e18691a4e5789db174df1ee0d64062a7198793776db1b0857e303bd23d12008dd87d952fe8d5a4d3fd2eb58735a46db7c26b5b9e3fb51f3435c66" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x86.exe", - "hash": "a9a163b6613fd8287deede5901e8a66b2def51b0967c6acb9e3c0d1db81e5d23b797542d728c86976024c6b448ba900ada5e999bae17eaec3d02ca7531a7d030" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.400/dotnet-sdk-6.0.400-win-x86.zip", - "hash": "3388f18cdc52b84d1502fd5727dcb3f10477556e5b4cd4c1731b087ba3aaa4669876c119e58ec3b0b78054d295a92210948dd75a9d19ed96249e54b8b1c7fcac" - } - ] - }, - { - "version": "6.0.303", - "version-display": "6.0.303", - "runtime-version": "6.0.8", - "vs-version": "17.2.7", - "vs-mac-version": "17.3.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-arm.tar.gz", - "hash": "444b8055f6814d5282e320ae243244fa27fe8afe76356c7d06e03a399ae2d41806cefc523a7bf12f36931931da88964d6797f1758a9cf23671aae318f41d3167" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-arm64.tar.gz", - "hash": "b6eed880882873a35fdda99f8cc4a3d7b72851004244cd9a2e8656b475c4e766da78cfb33e0f034e742da39200b583ae9970c284e1401f1a4645c9d9d4429282" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-musl-arm.tar.gz", - "hash": "f29f3fb2422fd4ff1045e75a949da19ff980780e34f2d6e27ff4c3e78e9d68dce8de6f509e7006b58ae2bb85cd5e5d53af4672e1abb84d66b21bc8051cc7463a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-musl-arm64.tar.gz", - "hash": "4ecf2182f710b628a4cb2ccc72befee3cb504848291d8ed3457a5b8fe6690ea5a9936226b7583acd0bbe05fbdc904e79b78fbb1cebcb21d2645e40b246d5fb0d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-musl-x64.tar.gz", - "hash": "b8204b5cb80b1f7b937eb8d498bab68c1fdf97eb54e2692e882c254523909266bcadc84a2ac54847bafc7be68172fe57c0b8de20adf107504b1e91a0153e2fc5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-linux-x64.tar.gz", - "hash": "f4ad1bce2d677c4068a32290a1cbeb32f2784c258c0e569547119ccb8ffed04b42d163ed9795acefb2116bc20b91cee5493556f399dad2853641b0403517dcaa" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-osx-arm64.pkg", - "hash": "1a6292b531f658eaa3ca2c7af4ef04cbb552c791c8a82a9baf4c1d43cc104837cc1186bff6e68c9b0927619839148ecdd92a181aa98e84bcc66bb0fac4517ff6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-osx-arm64.tar.gz", - "hash": "43a7d600b6e19e27e588d038691289846f42c7fc988e60eb4c7cbef946d3f12c15b4c2fb85b3153bad7bf94a08a3ad340871e992b88bb7a099d9e88c307a28a5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-osx-x64.pkg", - "hash": "3d752937c3eda788ffd74a21eff2f2025e3f80ce0ec17f64858727ef92a45482f717f47417dcb094f1d8671569d11a682b8a7218b0d6bd2771ce54126997f9cd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-osx-x64.tar.gz", - "hash": "671ad0d7e77ea86159fe798616c0fda8e817e1a28ee4958258da329adcb8f694ae4476d93236d63106b8bf4fd2b533a622254cf105d74046bd87ea71c3680537" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-arm64.exe", - "hash": "435394bb60013c34f529f2eb85001246fccfcbc5b5fe465bebbf9cc11034463d33a192902dfa8f1b7869a40dafef46bb5718e967e3e44571323526e3960e522f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-arm64.zip", - "hash": "0927bfb57ca6e7dad39c71269e812ee0babc7bc58482f7a54a6473414dd3596373f02240fba48679b0c924198dfc6113f12824a9fe3f3a50c03c6dfd84023fa5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-x64.exe", - "hash": "fa0d0f31ed17333261d1871fd3a76e68d6367417b3973418205a2a66a28aaa384b7a450f10e3bc42d48911eb72899809add46651eef0809b1ca8ee40baed1b66" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-x64.zip", - "hash": "aa0d0c9b0ae6d0c95a00094bfc86f6d43723f23fda4b9e22d99d6ed349ff98041dd4d83fec968583d4c7b015ac0889549eb6c089841d61e101da03019d2131d3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-x86.exe", - "hash": "9e9f27d98d807da234c24c9c464df2c448dba33f5c52e7f9a74650d255f5401ec3bdc963cb7e484fabddec4b0958a4220560c228f7ef75628db963117ad00022" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.303/dotnet-sdk-6.0.303-win-x86.zip", - "hash": "fb3d8e80bd08fb030ffee87ed734a3de78098d7f74dfe2cd8fb27ecc6c313c903bf5da5539b400a38770142fcd0a3d16aa8bbfbaf429418f96b6d0b4b0bc4682" - } - ] - }, - { - "version": "6.0.108", - "version-display": "6.0.108", - "runtime-version": "6.0.8", - "vs-version": "17.0.13", - "vs-mac-version": "17.3.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.3)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-arm.tar.gz", - "hash": "c3726e053b447e7baec21e015a91dddb884a79a483c7d2a247f2fe143a5cff25e5d7e822944c6b12f0b030d39b4e71c1da437e2ee4c094dd1bcdeccad3c44568" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-arm64.tar.gz", - "hash": "95f5c47fb27882f5554b0ee0befb813357875d6bfd19447c7c902ce225ed394bbb6cd945c5f7d5233fe0d3a16a1c006f47eba9d6be51cf8578fc5fbeba2806f0" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-musl-arm.tar.gz", - "hash": "c3df5c67338a035445d5447801f631baa579dbbf2eb8abd236baa1e4c18dee46cff66ddd1dafe1a29d45f1d329b89f78cac81f03c0edc44aa9426496b6197d86" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-musl-arm64.tar.gz", - "hash": "38136f1257df79049d90f6dd34dab74ddc3644c6b7cabd1f1cfc58dd23faab0b151484a6304f728b5ef789e70be64632f2eb7c47c8da1ba2961a84bb7613f9f4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-musl-x64.tar.gz", - "hash": "c9a6712efd48f5213749b7898607475d8efef847f67688cb8fb8f2f864e77316f76ddb0c13c6d5315d7527af06197664c817bcadebb3de891296fdb1c4fd08c8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-linux-x64.tar.gz", - "hash": "a0c9bdbbe5a47bb11a547b2351bd37d2febb52c684ef2af82849bab274a10e876456519807845b52cefa0a72f5555f6bbaa254d810999726f4b3b9a761b4aa18" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-osx-arm64.pkg", - "hash": "509a3703cd907cee5489cfe1e56f7b3349fb309d34346a2358975cea571196e84232f1901d9c3b63c247dedfe1623cd328260390403de90e0e71451b81201a91" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-osx-arm64.tar.gz", - "hash": "fb2c6da786214cb3504f59167f86f32965ce962040463d5fade71edb4454bb15083c7e9d823f8a513fdcd267c6c66bafa40a7957bd69ff0ea42c3fef85951601" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-osx-x64.pkg", - "hash": "9c3b06e1a3bc0677e58fc59797bb224c77b9d38c122895894a633eebfb9f3372762f7028bd67f4c55b8bc11f7433cc111edf3cdd7123171cb1ac620f86e9306d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-osx-x64.tar.gz", - "hash": "56d2946b9d10ba7bc2d91e095ff18c3e576d84ca24b6307524def867d2b222e3f729ba6f74e986960018307599f6790f8fe3476603accef83a9443b8f5c8b61a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-arm64.exe", - "hash": "203fd1d4742ce5abea25d9fcf8bf0750e0a31471b2aee9598bbf25752a06d98b1a1346458b3b51b3885954b017da0682311cf7209647086a1ac9fc359f07fb03" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-arm64.zip", - "hash": "a6f7e0d9cf93ebcfbbaa4973d71217e92785d85c9cbc7e11ffdc6bda1aae3c1c8dc293175b2174bb5c39ee9868dc5aa0a91589793e294ceccbc72633c8399121" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-x64.exe", - "hash": "0ef49a5cd1c70e448d1cf39e69882e650972c888c103ed7babb2a20887ec5d975650526bf4299f423f410285e79d1e50067348dc3ccac360abf72e4bbf3dcd5a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-x64.zip", - "hash": "90611fb657036e0bec930d7512022a0f60eb62bf3b2aabdba4f89958de1ddf033ce0255a1ce8c3e3f2928ef04cd05b807a20c298cc1583667e4f7e5e6b795720" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-x86.exe", - "hash": "9a8f0f7521b21808b40bd83bd10d259f915ff299fab0a7d8ba25d4eab6fd5f165b117c9ed8f894d21537b65e0c48b9b1a78c2f0182eb58c8b08cad5f1c86f433" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.108/dotnet-sdk-6.0.108-win-x86.zip", - "hash": "636a128c4ac8956fc13f935c34e6885b719d592ecbb8a66f151a9e4352c2a03147ffc12c5c6b1bc8be0ab66201535a1a9f12f732f7fba0506dcdac3a6e6c0203" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.8", - "version-display": "6.0.8", - "version-aspnetcoremodule": [ - "16.0.22195.8" - ], - "vs-version": "17.0.13", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-arm.tar.gz", - "hash": "db0416b62a4fb84ea660e9157caeeccd4b44b75f07a0a0086edf5d26c2ddcf6837f06b4a009b2e66687656b37e403b037036455a89f9bc021ea302faa20ac858" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-arm64.tar.gz", - "hash": "07babe85c8872ca303a17268b0d23c382a9ac49f8b923c45c496db039f6c01094303cd18cd31f964ba7369bb993c896eeadbb7e458a77d5b86992222b91db52c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-musl-arm.tar.gz", - "hash": "458830ae8c2cc00d5da0f6bbb59e1f7f452aebff1035898cd8ca2338f120a0a2fb126de97b0a92371ab0cdd2d21cdc3f50bcb2f5018ac5156f31010498c0ac9a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-musl-arm64.tar.gz", - "hash": "3f1fa3ab0947f4f38836e37fa6ba4a5611c5b7c491677b2b72345115a29fc46431538d095dfcf36204dd116deb458ba2c10404a9ab741c2dc2d497d494212356" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-musl-x64.tar.gz", - "hash": "28655f1769477e62cc0eb776283d55bb1a921c42aa4e772612bb42d4441f425e792e236934ceb5e6bc880e71ba30cdd8b9cc290ded81a6a96739cf07ef72ecdf" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-linux-x64.tar.gz", - "hash": "b74676ca0d2f47a95533739fd36977bb1552890a81820ee51b29b3d6514398f0952362417bbb31fad4bdf031803cb3e8d2aaf065dfb154a78a1b471a536d4abd" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-osx-arm64.tar.gz", - "hash": "a6cabc3b4c7350deb141e122c194c7eefaf99127cee726ee227e4218add7155b8decdb2a5cd217f757410e267f2370a78806c22a0294098f245105cea925a7b2" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-osx-x64.tar.gz", - "hash": "73d3569c13965de927e9d1eb02ce7d31b44643335a351ddc6392be1a693837263287d9bc5e82a89f2456b7a9cf1bd6c217d9f98cf9fa8da1b6c820e9ddf43933" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-win-arm64.zip", - "hash": "4a3af285ccd24e051c371cb1c703ffff013b3dfb0f85b94ad40293e4e612b48e9aff493e660db0fc73b56eeedc629bff371f8989c93e2e31108cd398865b21a1" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-win-x64.exe", - "hash": "de8ac0c44b71407221454f2ddc8d667ad956dda6288f64a8c1b8211383a3a7ce3a205c6827668c8e79dee787f4c252c1b4399345c132bc07059bfbc523589caf" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-win-x64.zip", - "hash": "9d3f71cf99bc82014c78eef0c3149247b469e7a991534a73e764a5be4954fee26bc081443e0d2d273d86440c16762d20b7ab7ddbbd9bc99f95e2bb45a2acf0c2" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-win-x86.exe", - "hash": "151ca062ff13ea551433b56d118f7a9ff8020b236c087c590b1c16e4e3a7a08828efc53d47bcb0676b929fbb707008746d24a58ddacb0fa59a2ba8a50f4d0264" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/aspnetcore-runtime-6.0.8-win-x86.zip", - "hash": "b8d751501bbd289553923c41e1e821d889322d7432c504e1a2be673c5118737ba049b4900039429980831998d9c41b4ff6ce626e03fc1a8b206b6be145e5803a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.8/dotnet-hosting-6.0.8-win.exe", - "hash": "5835cca327c6c7788e1d87ae5b310300424b866f6618181fe67691b47938732ffdd5444ae2ca425344efdaa6e454299bb2b67af0063e470eaa24a3cafeaea7bf", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.8", - "version-display": "6.0.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-arm64.exe", - "hash": "0cb088c6f3ab8f901019c3a6d45d90130fae090c1e530a12788f118377b0c54096530f4bc1fc868fb4cc8f5c17373a5106f6fcb77a4cb8a7d3bc6ff69792f277" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-arm64.zip", - "hash": "97c182e8543e91c3500d299bcc6b4ff954f2b71ea882934e911478348ca6369ba25a358a912e8299a7ec4af626e956090653bac9700a9af8866fca6e778f9b67" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-x64.exe", - "hash": "53d5f38ebec2675d43c618c32533f3b8684384839b4bfa83902d06be535a56410255e26ee0a4844c170f7536be9039a126eebec8577a781b8a0c30c00a7ad20e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-x64.zip", - "hash": "17a689da1dd9ec47c1ff5c62a93fe9bed01c15a30f60faea136b997c809a978004d8bcec7752d2acb9995a6d31d1984545dbfa2ca0292e38248360bcd1b5172d" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-x86.exe", - "hash": "74738784718eb1f6db893ec084b7a9b590f8490b1976df536d20d7b145767217f6a5c2cb7fb923e917e20e1f0e8ed3d835008e15147b53c3c0e3b6fd053a4190" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.8/windowsdesktop-runtime-6.0.8-win-x86.zip", - "hash": "691d80f809175eaf4bc4737839bd1a3b4045ff98a8c891537fc13116ffc0afa0f098ba94ccfdfaaac187ec24f6dae34b3ad469e502e1040e96b41b59cacef858" - } - ] - } - }, - { - "release-date": "2022-07-12", - "release-version": "6.0.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.7/6.0.7.md", - "runtime": { - "version": "6.0.7", - "version-display": "6.0.7", - "vs-version": "17.0.12, 17.2.6", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-arm.tar.gz", - "hash": "afc44cb3e99df350a53eebe6e757889047d4bb6da417a8c73c97d3a15d66efbea2ccbbd4f272a280bcdcb616ef13607415900167592b0de930476cbf4e511408" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-arm64.tar.gz", - "hash": "a63e100fe80cb64febfd2920e4065b3cc99f759c3de0897928a42cf14fdc963df324bef1354a7734420078d16e52fd8257dd480da465d865c4349c29cab1ef91" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-musl-arm.tar.gz", - "hash": "dafd7efe1f9a47b72a4b89e15c9d662420dc22071c547603894386bf2ba8eeff2b793b56b49f0db4f78dd039e875654838228476ede2dbecf76ffc4e7298ad8a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-musl-arm64.tar.gz", - "hash": "815dbe96eb4ec34c7cfc2856d6e3a98b8d8bbc13aa698c96e6ff69bf8f403df589c6dc54d465fae5692dd0ac198f66898f846ffdf6b22dcbc9566fbf99430f3b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-musl-x64.tar.gz", - "hash": "dc8374ff31d4ae29094815a8df48c777614153820a0ed47454c882fed596aa485010eeb852543e3974bb8d3b37df143bf1c6a3a22305835907c350c2d40017cb" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-linux-x64.tar.gz", - "hash": "996bdaf33be0a9c0f1e2d309b997e3a84a31e28d2424853d7fb1600212f4ce600ebe1b9615de5e46c17652f08ad0d7ecd4b3619217c9624b875a26a553f370d8" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-osx-arm64.pkg", - "hash": "46b67cbb67246127aca2f641bbc8f54cc41b7a9702de4748e93d52f1d68843a3b7d016d9cee2fe220a3dccf2e869bd33f09d6d24bad2140c41657a282851370d" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-osx-arm64.tar.gz", - "hash": "9f08a535921df7c1ce837ef27478f2381e8132a9ebfec7630465fb3243ef2ec9e982d008faec69e0899675dc3a50b379a96967d1eed3c04dada40cb211489127" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-osx-x64.pkg", - "hash": "88537768a655134b2d4e52b548af44c9aff672ce31c52f0438af14e6a0cc335fc4d34d6c5d70a2116b33eb95cb7d738522688ba359f5c0496630e33b528de1a6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-osx-x64.tar.gz", - "hash": "9c53d16971f0366d6d69fbfe37e92eea806faa1c3502cc1050c0e6d2cf394cf886761146e344862a30d0cb131105f387c05d8ea207be8aa87c81cd4c8f962110" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-arm64.exe", - "hash": "8e868e1af18a8dc8e9fbbcb71b767a1e18d1e1921233a7eb5056cdf108d7388951e031e1a2a9d99814f9b01dbebbe0f82be471f612fa6924c35c0ad234a0d0c1" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-arm64.zip", - "hash": "e835fc3a28c336f98aa66d79441430064c5c22dad6310669782090ed7111a9738b793ddec62afb432f5fbca0ec1bbe0ace565e87422bd4a5369a8b5b04c3a3ce" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-x64.exe", - "hash": "ac60eb4d4caa13050b05539e7ea45b0703457144dc127f981cccb8465b60ed058a51feb8682f95032f0a7406f0af70a224793c10062521eb37775d64deda61a9" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-x64.zip", - "hash": "8124484bfe21f0cf7c2bb4b15992afc8cd9fdb676f7c3f36cb720c3f1459107b2bb8a5ced770fd40292a0c42f5fe24cb39bcb064d06e4f20fdbf11ef5dd55140" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-x86.exe", - "hash": "3dce55b6b44be3f0fd55d1505ce4760cc805cfd8e1ce36f128280ed7a1d15b0bc18aa1c81b420f28092cb0f7094130f3ea06aeb5fa0dc34a1bfb6277b835088b" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.7/dotnet-runtime-6.0.7-win-x86.zip", - "hash": "ddedd5a75b1aec67bc0a5972951e9a4c3adb6ce822bb89bf6de5451411daaf221c089098116d276cfdba670853d12614679d29d690d68bfc376efb2dc521af38" - } - ] - }, - "sdk": { - "version": "6.0.302", - "version-display": "6.0.302", - "runtime-version": "6.0.7", - "vs-version": "17.2.6", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-arm.tar.gz", - "hash": "0d31c7e8ccf02c8dea92d7b60bcb15e15912d74e7ee2ab8fd88ee03c4fbd8f292c356357d08ec23c2aedc5e3e0803d42ce16f3fff36245739d0cac6634bc3387" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-arm64.tar.gz", - "hash": "26e98a63665d707b1a7729f1794077316f9927edd88d12d82d0357fe597096b0d89b64a085fcdf0cf49807a443bbfebb48e10ea91cea890846cf4308e67c4ea5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-arm.tar.gz", - "hash": "ad9c16342b13c18c3d81f24bcba304fc0d86dfc0c868227949761828cbec5099e425e15a0371c9422c3da12571a4c7c9e321dd297951c220b3842fc3cc89f067" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-arm64.tar.gz", - "hash": "b8a740e1643d2b089063f7bb6966223ecf62f898fb8c45c22f89243883e0ebbdc66188b18c77d2b166481a675511a9c437dad43c957d94559155a882f9cbd9db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-x64.tar.gz", - "hash": "badd3f9c9cda1529235c0894e697ec4e0088237c6b7dbb6bb10e124f2d610a3a143a52f2d6cb6b7f197c70f34a88c555397a786dae45200dad1f2e3a18247da5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-x64.tar.gz", - "hash": "ac1d124802ca035aa00806312460b371af8e3a55d85383ddd8bb66f427c4fabae75b8be23c45888344e13b283a4f9c7df228447c06d796a57ffa5bb21992e6a4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-arm64.pkg", - "hash": "0fbcc2a47186ff2cf00c527097353e1519d15410c7fdb80ccc271be4dd558ddd2e4a422d231e5ecbba8f284de79d6524ff1fc75bef7f016bfc5f7e61137155d9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-arm64.tar.gz", - "hash": "59caea897a56b785245dcd3a6082247aeb879c39ecfab16db60e9dc3db447ca4e3ebe68e992c0551af886cd81f6f0088cb1433f1be6df865afa357f90f37ccf6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-x64.pkg", - "hash": "56f74dac49c5729744fc6e2997d04d58fe807d4e28bdc67b2757d7c21978805cb2e7bc6c78e4f33ba2d591ce4dee9757837a275d9928e6e1c68874f753100dbb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-x64.tar.gz", - "hash": "003a06be76bf6228b4c033f34773039d57ebd485cf471a8117f5516f243a47a24d1b485ab9307becc1973107bb1d5b6c3028bbcbb217cbb42f5bee4c6c01c458" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-arm64.exe", - "hash": "f4ea89be4b38a7c48ed0bf4e83c56ffd675a35129df6683837f654255d3347653f1e40d6c6fe033891d7d7c8a94dd5ffa291e4c661629b9782fc50dc2b80e43a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-arm64.zip", - "hash": "175a76307e1f8aba0ad196c17c1a0099c265d0b3bcfd2410ee4b13afc27139bf7e563a97b388c1f02aa880389b6f45f37d4728d6b304eab27ce6ae19c38a2387" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x64.exe", - "hash": "29866c4eb29d3238acd168d668fcc35933bc9e61367104e893ecd3d648990792fe928fada230885c7a2fecdf02a056edecda22d25cdbb9f6773648d287bc1ff3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x64.zip", - "hash": "45d476c2c286a55930800c2a0a095374e0bda6df907163c82f73ea79debe9b29f82da0a76bdb3d415d28973a009d84f45edba22bc91777985d24e88216f3332b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x86.exe", - "hash": "eaf426203d91ccb8a073584563d486e03c016ebf98048c1a15af226d74f7e2a03aabd0d05f95dd62c719dbad6dc17142f1b6696b50465addb00dc211de0d6b5c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x86.zip", - "hash": "300607e3e952d31c733214aa77d650f43671519b7d536787ffc46401c349926410c670c2a57c7bab5fda989b6e3c5c6b37e42a98c8f581be9fc771fa66ff6fc8" - } - ] - }, - "sdks": [ - { - "version": "6.0.302", - "version-display": "6.0.302", - "runtime-version": "6.0.7", - "vs-version": "17.2.6", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-arm.tar.gz", - "hash": "0d31c7e8ccf02c8dea92d7b60bcb15e15912d74e7ee2ab8fd88ee03c4fbd8f292c356357d08ec23c2aedc5e3e0803d42ce16f3fff36245739d0cac6634bc3387" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-arm64.tar.gz", - "hash": "26e98a63665d707b1a7729f1794077316f9927edd88d12d82d0357fe597096b0d89b64a085fcdf0cf49807a443bbfebb48e10ea91cea890846cf4308e67c4ea5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-arm.tar.gz", - "hash": "ad9c16342b13c18c3d81f24bcba304fc0d86dfc0c868227949761828cbec5099e425e15a0371c9422c3da12571a4c7c9e321dd297951c220b3842fc3cc89f067" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-arm64.tar.gz", - "hash": "b8a740e1643d2b089063f7bb6966223ecf62f898fb8c45c22f89243883e0ebbdc66188b18c77d2b166481a675511a9c437dad43c957d94559155a882f9cbd9db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-musl-x64.tar.gz", - "hash": "badd3f9c9cda1529235c0894e697ec4e0088237c6b7dbb6bb10e124f2d610a3a143a52f2d6cb6b7f197c70f34a88c555397a786dae45200dad1f2e3a18247da5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-linux-x64.tar.gz", - "hash": "ac1d124802ca035aa00806312460b371af8e3a55d85383ddd8bb66f427c4fabae75b8be23c45888344e13b283a4f9c7df228447c06d796a57ffa5bb21992e6a4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-arm64.pkg", - "hash": "0fbcc2a47186ff2cf00c527097353e1519d15410c7fdb80ccc271be4dd558ddd2e4a422d231e5ecbba8f284de79d6524ff1fc75bef7f016bfc5f7e61137155d9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-arm64.tar.gz", - "hash": "59caea897a56b785245dcd3a6082247aeb879c39ecfab16db60e9dc3db447ca4e3ebe68e992c0551af886cd81f6f0088cb1433f1be6df865afa357f90f37ccf6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-x64.pkg", - "hash": "56f74dac49c5729744fc6e2997d04d58fe807d4e28bdc67b2757d7c21978805cb2e7bc6c78e4f33ba2d591ce4dee9757837a275d9928e6e1c68874f753100dbb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-osx-x64.tar.gz", - "hash": "003a06be76bf6228b4c033f34773039d57ebd485cf471a8117f5516f243a47a24d1b485ab9307becc1973107bb1d5b6c3028bbcbb217cbb42f5bee4c6c01c458" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-arm64.exe", - "hash": "f4ea89be4b38a7c48ed0bf4e83c56ffd675a35129df6683837f654255d3347653f1e40d6c6fe033891d7d7c8a94dd5ffa291e4c661629b9782fc50dc2b80e43a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-arm64.zip", - "hash": "175a76307e1f8aba0ad196c17c1a0099c265d0b3bcfd2410ee4b13afc27139bf7e563a97b388c1f02aa880389b6f45f37d4728d6b304eab27ce6ae19c38a2387" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x64.exe", - "hash": "29866c4eb29d3238acd168d668fcc35933bc9e61367104e893ecd3d648990792fe928fada230885c7a2fecdf02a056edecda22d25cdbb9f6773648d287bc1ff3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x64.zip", - "hash": "45d476c2c286a55930800c2a0a095374e0bda6df907163c82f73ea79debe9b29f82da0a76bdb3d415d28973a009d84f45edba22bc91777985d24e88216f3332b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x86.exe", - "hash": "eaf426203d91ccb8a073584563d486e03c016ebf98048c1a15af226d74f7e2a03aabd0d05f95dd62c719dbad6dc17142f1b6696b50465addb00dc211de0d6b5c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.302/dotnet-sdk-6.0.302-win-x86.zip", - "hash": "300607e3e952d31c733214aa77d650f43671519b7d536787ffc46401c349926410c670c2a57c7bab5fda989b6e3c5c6b37e42a98c8f581be9fc771fa66ff6fc8" - } - ] - }, - { - "version": "6.0.107", - "version-display": "6.0.107", - "runtime-version": "6.0.7", - "vs-version": "17.0.12", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-arm.tar.gz", - "hash": "05364e5f3c3be3f66420310c1fe26550d639c6e95b43ed004ea79017ee8c973d73349ff87c5eca4c560f80fea55a435c1c22f3889d5c015b85474533395245f4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-arm64.tar.gz", - "hash": "946b43f0da3e5d94d20163d6a94fc4fcef66c1c18d6fa02530e769201d96c9e2125c0f35532ea87e0c5b4f3a491daa6d4b8d6dd23f4eb9da32625ca0a4065e14" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-musl-arm.tar.gz", - "hash": "906ce7c142152c297f8b88c697e80c3a2a532365244b5774860f48aa9d3e9dd5aee08c9f41ca8594146720474300dca2ef7a48f81ef797f1a11bbb1b60e98c38" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-musl-arm64.tar.gz", - "hash": "31dd771c031655d7786491a3940f706d2dde0a8a1f6dca40f68977abfbe4d36e7e4a7fe0addcef08d031271ac10d8c3378145754978cd8939cbcef2b10a35a02" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-musl-x64.tar.gz", - "hash": "171de172825103635229bb7870a1aa86ab30943ad82fd423693264735f5af8c54bdb2f1669cfbca51bb0327266e66885b42382539ca68754cebc2a5ed26521f0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-linux-x64.tar.gz", - "hash": "cd03b0a04230371c5c6cc9368722123771a80e38f9a7dad9f831263b319821139d68e37f6e0321487f5fde86e96985965a12f0b3a74fe05d1e917d587775950f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-osx-arm64.pkg", - "hash": "375d8f2ca7ac2dcadb9c9ec3defc1d902052e8a6fae4611fbecfcb16f533d8ac734720a547ec09cc396917fbbc8bb920a0dbc07c9500cfe15a943d1cbe1ecf88" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-osx-arm64.tar.gz", - "hash": "0e317c33b2f88d34136d25a7419e5989a853e5728d9a4d378e1fa8e993e96e86cd03a46b8b5091cf0e0deb598f6ae8046ec2272d0a333f97db5bf6d222437a8c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-osx-x64.pkg", - "hash": "89a0101cb2cb87158b72854252077c73b0e86ff322628be5d6cfd2b2182b6bd11dadcb216d1badaa400791c8932ba398f1f2097a096e5d10c2de6bcf24ce8a19" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-osx-x64.tar.gz", - "hash": "9fe4359eb8c97c0198f044d0d5963d4e334ed7754cbe3985933a79eec917e62c81ccc44cd9f76df3732b3818febcd925bcd0a5f78bfeca7666e6c52f3a821df9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-arm64.exe", - "hash": "d0633ae2e571090d86d04874b0c99c56d9c669738a988c11a12e6a939f0200f55348fd9f7d3f210e5808cbe9f7f5e8c20ee73718dee10a57c8a57137dccc58c6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-arm64.zip", - "hash": "0ad65d407a24cea892192868e7c4c5416e747626616d42b3b2b76f6717f9b2a4ef5265e399555fc350c7311e232988515243acb6a282f4cee6eccdeb53dd4ac5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-x64.exe", - "hash": "5a6826ef13bc4c76b61efbbb5fe498d4c9493173791335812b4e7faf0616deaed08b031484cb9679aa8af2087800483317cdaca2a56275d7ad380dbc487e7042" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-x64.zip", - "hash": "8607e122c4827b3c0f178cc6cabf38bc5efe7dcb52c535b49e5dd006650769ceba09e94f31664f1d58523e613709b7437c7167bf65b71ddd1f3e002f6100535f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-x86.exe", - "hash": "23b1b6ad927bd6b2c89b0824576e7e62f876e8166446e9d701bfb4c3cbe49f6cbd702888600bd6fd6115b02628b7aa8080e337fd1f24b52f19ab1d66ab695a53" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.107/dotnet-sdk-6.0.107-win-x86.zip", - "hash": "8aa6c470747b6df24c97a95c5fc4237a33fa0d7fe2ab77c7c9ccec8ec686d795c8a1b5d5697aa12f2c6ac9c67bbf8db304aafd4108d361cbbc7a72af587bb86d" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.7", - "version-display": "6.0.7", - "version-aspnetcoremodule": [ - "16.0.22173.7" - ], - "vs-version": "17.0.12, 17.2.6", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-arm.tar.gz", - "hash": "db6bf23ee6b475dcc0eb9c1040a660310bb2f020f4162ac480ac898c3984e5f6a9982aabac63d10ee6d6e6aea6f4d1f300270fc8fb08af9fef3daa618c9adfee" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-arm64.tar.gz", - "hash": "0c7317d2170f2632afd7c7c3e5bd84075071802e901de1ed5e54178f8a56266fe0770ebd84502aff9384b06908d4d5bee9d464d215fb20d841de177174f55f93" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-musl-arm.tar.gz", - "hash": "653b59738d70355deb4d8b364ee2465001c761dd6c4f22538438632ee58558471f8a8d55d5ae759453e83150f62533b8987a3489210f4cd5ac1c15f87cffdaf2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-musl-arm64.tar.gz", - "hash": "efac4d9f91a8f442f6223f77e09eafd4fec4d2daac395f968549ebba37285804c77617919c9cd3b900805e3a876d4d8aae2ade31140a6f278598aca4fd0c5995" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-musl-x64.tar.gz", - "hash": "676864175e8ac286b83ce231a5a218050998e8f0903521c7667e1e8b58b035dba45f90c8894e164f70480fc55e32a623b0fad229f28f59d692c53ca97b695092" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-linux-x64.tar.gz", - "hash": "d210e2afd009746d2c4d98c07077b89ce174f462c2bdaae9afea107a5b1c9c4ab63460ae3d9ae38c5388f591c0a95d8712359326013b23325b7be19b51835455" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-osx-arm64.tar.gz", - "hash": "4d9dccaeabc1490fb9261f0be0702c2f5b4e96b840edee94d50f9a4655aa4d85bcf5a16d21d43b0a543e5a90cc631510aba35000df465a4ffc6cca7de37907fc" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-osx-x64.tar.gz", - "hash": "6c05250d2affb61a1f34ba297e3c9bd0ddc42d64b1580f5e8cfa218a079cc455aa183f683869ba52e7b9ce58fb223dff8ef9776d4b2e2421ed7e2058d4af0750" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-win-arm64.zip", - "hash": "a2e62f329fca498c2e3d16c9023cd9914e780fbe635fdc42bd2f66018989e6e38bf1a1cbaf833abe0fa855a786feaef3defb6fd886c03e6cbeb4ffca4c6eeb25" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-win-x64.exe", - "hash": "7f42e5ee589a663aeb0c816f2e4172187189d92bc3c29fafc14523074bb793d58b238e64be8b001350b6dcbc111a5c9514b0def7acf6b6534290f5502206cd22" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-win-x64.zip", - "hash": "e2c52af3361fdb9d5897a238e8275f7f9df8b37bd2b7d6f24c7b889111d1f1fd80f30b1a68022dee3e7378c6973a37f1ad0c96cea4c22d73d3cb5068d1cb3efd" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-win-x86.exe", - "hash": "8b99a164e67aca14227f8eb90165e16189cc2ffda21c276e1ba100fbdfe6d83bf87bcf89f2423ebeef21c9e6eca6dcbf8896690a6fb9235fef7bd7f02b3494ef" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/aspnetcore-runtime-6.0.7-win-x86.zip", - "hash": "db43cbde0e6f33acd9e6d8107b330de5f1f8c7e13fba86ba281c74af2b6903ecffc6067411db89b90c3b051b13c5d325c7c6e9553139f669d1f75c11c3116cbf" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.7/dotnet-hosting-6.0.7-win.exe", - "hash": "e3f8a2ca63eafb2429f9db1a430f1019e7915c0fc6b866110e3c71e10ce470e79bf6926e695cf3ab08bd816e5d61e7d3aa8c998d33ba102f1c3bfb225ad29ced", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.7", - "version-display": "6.0.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-arm64.exe", - "hash": "1ab666244683bdf5c8297e52d6e2553f20b110b063ddd016e82998568ecf818f4d756f1a78fb8049ad25f9ff75f6ed2ad862f8b0576df32f7d6d344588815615" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-arm64.zip", - "hash": "c38d6518111187e684c6f9867b60ae78867f0464951a57a59855bc7d6502d5a1b1e9b9600440db62047ec4efb0a003e992c75421160a05e58c565d690ce8c7c3" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-x64.exe", - "hash": "b38fb7edb21348b1cf6ee7310dd7fe03a10844f47418d993aa8145d7232a4e2d22a3388b591bdb9c3bfbd9c7456a538ac299beb93f180f6cca73cb41f1ef6596" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-x64.zip", - "hash": "f2d6653ff1c0af81a6ba8b240d4c42464d5d8859e0dd85889829d4fb682b2d0a820e299abfe32ec22bb98e77ac266e0d736b7e71baf8b13c0432f2604c3f1243" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-x86.exe", - "hash": "33f65f54f979689122cbbbab700b7de90226088d29a6069f31f69b980c023fcaea4b822562018f8b450509925c5ea295e06a2424366f75088522d1c3d5409852" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.7/windowsdesktop-runtime-6.0.7-win-x86.zip", - "hash": "fdfac60c65109fc9a112eb8613bdf99f845d2d08286f9bc08c74bfc81fc11d6874c4780c5e3313c081d72e5c94c95e3bf38a8f7e91614dc8c551d6fa1834306f" - } - ] - } - }, - { - "release-date": "2022-06-14", - "release-version": "6.0.6", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-30184", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-30184" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.6/6.0.6.md", - "runtime": { - "version": "6.0.6", - "version-display": "6.0.6", - "vs-version": "17.0.11, 17.2.4", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-arm.tar.gz", - "hash": "92026b23ed3125fb93cdbd7c790a3f160f58a75122561950374e0ea7da2fa0efb002fbdfdddb9f26763ac92df88b6aa4c2e482ba54a0a7b4649517182f87957c" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-arm64.tar.gz", - "hash": "659bf64c5f2e11f2b8cf01dc595a4280d1960bf484fc379d3a382660eea7adb6e69ace49d84522a85920ed53fa2ffb95a3b0ca0ebf63dc909b865028174ed29f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-musl-arm.tar.gz", - "hash": "8bc37b9a22c6ffb944d511f757d5ba43359ffe9579f09b5a618a70004b615c87310b31f546ac3e76b045244a65177e7546b7715536ea56e831299e52de6c91d5" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-musl-arm64.tar.gz", - "hash": "3fc7e84b45f2cef2e6d0b6d36cde21f4925cfdbff09606e7380f253d7949c34c63292f5afd143fb32f39fd633394de6482cded2614e5fa14e9653aac0e61b315" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-musl-x64.tar.gz", - "hash": "c950e64d7d95e979032cf2eccbc41911380141e8fb529aca5c05f23c4eb480d0182a8f26c64305efbfe409af3ad7ed66197b10e861ac795098c653ce6b1aa41f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-linux-x64.tar.gz", - "hash": "4fe090f934f0ba4e64a63dfccbac97d49b19a913f2a7d73abe85efd604ee5577cefd65d6e0dc02086e9fa28be4ce2bbaecb33ea70d022714138ed54deea58c72" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-osx-arm64.pkg", - "hash": "1ea80ef2419ba4fe373e0df8571f7fe53f3b3a4a04cb87a7b55d9ed8386d2a3e00f0741a50de6923489294554522697da95be666323d6192900c65806308dc72" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-osx-arm64.tar.gz", - "hash": "0cb4f3c808ae5476ebdbc18840846fb625a51ac5ce53688e83c3ae22a062095f9012c066dbcce231eca50ca3f057d7a29721d4b9cd04c9891ca26fc0c1c4a481" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-osx-x64.pkg", - "hash": "e15b0289a643314f2fbc803d48a808751599bfe749514aafe06446c14441e9a415c0003540d3e952a83f35f36c4f2b275d9c91f3438b5282af428effb3d2b3ba" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-osx-x64.tar.gz", - "hash": "efe5b6287c4a62688bc94aae2d4ed8831ca5d62280ba477bb3efa49666c9fdbb9b091980837882b1b52ddfba566a8ab0071746cbfa63efea99a0bb3ebf19a2a1" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-arm64.exe", - "hash": "352c5502ba070b7f8613b51c777446ab1434b3e7a4345adcd1088120402b49466e349e11b4dd9dcca274b265591ac494de485ce83f3822132ad003d438f9f1b6" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-arm64.zip", - "hash": "75f05cb6b411613da4f1b20cd50df1bd4f7d2e29f2195edf3741d94fb2deaea6a0f41f542cac7a3fa3c3e1ab05dda406f036f8a416a8b17b76b5f4dd4bae3612" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-x64.exe", - "hash": "ac180f361b74af4145d141726f40e5d3d854f18f3bd96e7e4eef015e208fb1af04f12b285d3c18bb5d7abaf47afa5ab6609b66e78551aee1b6327dbb504c1edd" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-x64.zip", - "hash": "d92bfb6ae6d06475a2fe5bf0b45d1a11a617a63a1df5ecefc822e455aaf08fa42c2f5331561f38b2c88118ee3078c8a0b5a79957cf713b150b41e8c944e0557c" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-x86.exe", - "hash": "293df8c1efce6e3e7c03023fb581aa744587a43f98c64fb63300cdd8bfa26822cbdb88a4c94ac04959f0fe1e561b20a8a7ad0cfc240223e7022dcce5fca2024c" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.6/dotnet-runtime-6.0.6-win-x86.zip", - "hash": "84455d621a5f919c5b4fe91df9cbbe264996763438a9a92940707554d1c7793070a9bc71f14bb37992973688435ee83bae8d8a359cb2dd8af0873a49b9f6eb11" - } - ] - }, - "sdk": { - "version": "6.0.301", - "version-display": "6.0.301", - "runtime-version": "6.0.6", - "vs-version": "17.2.4", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-arm.tar.gz", - "hash": "ef7d028b80eaaae18b71195e89e00dea2186d455f7b72f373fc0a57074e8320c8e9245167c06e30a2ddade4ab21ad5e8b05d04a6ea11c1de68b7c9a6f9807d25" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-arm64.tar.gz", - "hash": "978dd04f78ac3d6b594c47f1482bba0abe93f0b37379c1c46a2b9b33bdf5188576b055250546295de39bb22cba93ea9b31c31bb026a319ad1b3fc507db44481f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-arm.tar.gz", - "hash": "bd0558f10b9a112258a969afdfc14d770293b75a49b1d8aa15a2a71a492b18643d6a2a9570e055a0fa6a89dab11cd3532c5e02844dffaff2c2aca4aee25099fc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-arm64.tar.gz", - "hash": "63f2d1e84fa4e62d617e82ae3d9e51fad78d6fda78b481e3342925fef3d1166637841155baf3884d5730bc00b5b0c59d5e8b64bb6b478c0dcbd3d47ef40816aa" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-x64.tar.gz", - "hash": "28e57adc8ac4a82bcfb2d3e623e43b04dc3f2327d7bbc130ecf122cb7d9d1a2f109f51fd14e9be0970e9ca4657d83d4771cc02e791c1e6ff4922d51b89af5f93" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-x64.tar.gz", - "hash": "2f434ea4860ee637e9cf19991a80e1febb1105531dd96b4fbc728d538ca0ab202a0bdff128fd13b269fac3ba3bc9d5f9c49039a6e0d7d32751e8a2bb6d790446" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-arm64.pkg", - "hash": "f389a0dd8e0a83457b71ac34a2b77453f56d7959ce522f927a07a458ea34f13a5efe67a3ac0446aadbc6dfcf1b1b96108ab6e2bbbee19edb3ca048d6fc8ba060" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-arm64.tar.gz", - "hash": "899558be856769ad6ccc4606f3a9f996327a7395a72acb18a5fb0899e0c4c4ba8c90b94f16771439193f87a974e1e884dd55a9fc6649fe929ebe47ef19cb4efc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-x64.pkg", - "hash": "2c022addf200031e323816cb2e1f2ef56caa25318d82f30ca185417b8cc4bf70e6a8d6e9a66fdb56ea40fe6cef0a8dd42ef5ce9ac24bc5013ecc242b4efd1994" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-x64.tar.gz", - "hash": "027328a353b65fad0618d1e5abeb973c9f05787d9432631bf9ab5fafe636ea2f494f70c0704e81a1664fe7a3519174bd269dbc795b651b14e9a86c83f8e3adec" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-arm64.exe", - "hash": "fc3bdc0301c41336904405bd13a6fd2e6496f8ce9c41492e3f2492978db4a63b1ceb9b8b413b579aa1e9489bd9024eb4b2ae4115bf221ba1a786f9db9341f186" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-arm64.zip", - "hash": "9e32717f5bfd890e50a01b731d3b195bd66cfda6fb27c6267ad38fcde43bfc112231ae38ef6eb12f5293fac9da4bd9bdb5e299146c8305bba843f14abfb7e90b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x64.exe", - "hash": "75f24e6836588bc0a866cb226e94b16780719296288261278c99d04a3bc6bef3431e3f0a48b01074c657fbec1db15bee64f0053b7eca1514121e61355bda49f2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x64.zip", - "hash": "cc45e91a04850a175f1c6bcab104f1230067f3ead61d4fb4ddad19c641cfffcfe019cb38faad4b1f16367b6f67641fd2913184c09a8bb83abc51959003b48a6b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x86.exe", - "hash": "1dd3da8df8efdf1c5658e809f941dfbf353f3394fb7aafc63725928aa813b0f50c89677a86711bae07a4ece5b5db69e1d3df21fff46e6c484736e1f0b2b60fad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x86.zip", - "hash": "3ad48f494c64cf64ed3b8d7cc10b18dfbb3b3a7f77d4e40c6ad5b02ec17b4a9c83f1b2f5d9840113b313009864da254e98715a647b2db0306b0b47f088ec6a83" - } - ] - }, - "sdks": [ - { - "version": "6.0.301", - "version-display": "6.0.301", - "runtime-version": "6.0.6", - "vs-version": "17.2.4", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-arm.tar.gz", - "hash": "ef7d028b80eaaae18b71195e89e00dea2186d455f7b72f373fc0a57074e8320c8e9245167c06e30a2ddade4ab21ad5e8b05d04a6ea11c1de68b7c9a6f9807d25" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-arm64.tar.gz", - "hash": "978dd04f78ac3d6b594c47f1482bba0abe93f0b37379c1c46a2b9b33bdf5188576b055250546295de39bb22cba93ea9b31c31bb026a319ad1b3fc507db44481f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-arm.tar.gz", - "hash": "bd0558f10b9a112258a969afdfc14d770293b75a49b1d8aa15a2a71a492b18643d6a2a9570e055a0fa6a89dab11cd3532c5e02844dffaff2c2aca4aee25099fc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-arm64.tar.gz", - "hash": "63f2d1e84fa4e62d617e82ae3d9e51fad78d6fda78b481e3342925fef3d1166637841155baf3884d5730bc00b5b0c59d5e8b64bb6b478c0dcbd3d47ef40816aa" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-musl-x64.tar.gz", - "hash": "28e57adc8ac4a82bcfb2d3e623e43b04dc3f2327d7bbc130ecf122cb7d9d1a2f109f51fd14e9be0970e9ca4657d83d4771cc02e791c1e6ff4922d51b89af5f93" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-linux-x64.tar.gz", - "hash": "2f434ea4860ee637e9cf19991a80e1febb1105531dd96b4fbc728d538ca0ab202a0bdff128fd13b269fac3ba3bc9d5f9c49039a6e0d7d32751e8a2bb6d790446" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-arm64.pkg", - "hash": "f389a0dd8e0a83457b71ac34a2b77453f56d7959ce522f927a07a458ea34f13a5efe67a3ac0446aadbc6dfcf1b1b96108ab6e2bbbee19edb3ca048d6fc8ba060" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-arm64.tar.gz", - "hash": "899558be856769ad6ccc4606f3a9f996327a7395a72acb18a5fb0899e0c4c4ba8c90b94f16771439193f87a974e1e884dd55a9fc6649fe929ebe47ef19cb4efc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-x64.pkg", - "hash": "2c022addf200031e323816cb2e1f2ef56caa25318d82f30ca185417b8cc4bf70e6a8d6e9a66fdb56ea40fe6cef0a8dd42ef5ce9ac24bc5013ecc242b4efd1994" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-osx-x64.tar.gz", - "hash": "027328a353b65fad0618d1e5abeb973c9f05787d9432631bf9ab5fafe636ea2f494f70c0704e81a1664fe7a3519174bd269dbc795b651b14e9a86c83f8e3adec" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-arm64.exe", - "hash": "fc3bdc0301c41336904405bd13a6fd2e6496f8ce9c41492e3f2492978db4a63b1ceb9b8b413b579aa1e9489bd9024eb4b2ae4115bf221ba1a786f9db9341f186" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-arm64.zip", - "hash": "9e32717f5bfd890e50a01b731d3b195bd66cfda6fb27c6267ad38fcde43bfc112231ae38ef6eb12f5293fac9da4bd9bdb5e299146c8305bba843f14abfb7e90b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x64.exe", - "hash": "75f24e6836588bc0a866cb226e94b16780719296288261278c99d04a3bc6bef3431e3f0a48b01074c657fbec1db15bee64f0053b7eca1514121e61355bda49f2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x64.zip", - "hash": "cc45e91a04850a175f1c6bcab104f1230067f3ead61d4fb4ddad19c641cfffcfe019cb38faad4b1f16367b6f67641fd2913184c09a8bb83abc51959003b48a6b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x86.exe", - "hash": "1dd3da8df8efdf1c5658e809f941dfbf353f3394fb7aafc63725928aa813b0f50c89677a86711bae07a4ece5b5db69e1d3df21fff46e6c484736e1f0b2b60fad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.301/dotnet-sdk-6.0.301-win-x86.zip", - "hash": "3ad48f494c64cf64ed3b8d7cc10b18dfbb3b3a7f77d4e40c6ad5b02ec17b4a9c83f1b2f5d9840113b313009864da254e98715a647b2db0306b0b47f088ec6a83" - } - ] - }, - { - "version": "6.0.106", - "version-display": "6.0.106", - "runtime-version": "6.0.6", - "vs-version": "17.0.11", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-arm.tar.gz", - "hash": "9973fa26f7129e4f148e65123512ba02644b78b47a7d4b1fbeeafd09038beac66664b285ace5e228a7818f0c35a357d31ff1d580795182c872c514fdb3b90e35" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-arm64.tar.gz", - "hash": "86fabee178d16dcf9b5ff3d2f786c72be6bea5838b69c9e02d3a356703799378094a87f3ae4cc3ed6564f2c762a1837c4d8f91a228ba94cf58546d5ba7363f8f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-musl-arm.tar.gz", - "hash": "e860bba7ec61f83e1070700dee719f565c42e91dcc7a680f8f21d3571c6eba0e1fc4f62b5dc478a291e91d03d6810b24fcf66399c4005fceb5b3ecafb37a72c9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-musl-arm64.tar.gz", - "hash": "75b78c906c7b6613db37ff5c758f2006174c98fca336b1e682da2e07a858872f407b3c5bf57ee8c347c3a35b6af2eb2a56e05bb29ff7b4f26efaf758f6345649" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-musl-x64.tar.gz", - "hash": "f8f5019ef265add53f1c26042e5abb2681c96e4b4bac82c29668b48b6952635b5681049b4e3fd49b56f864fec80f0bdd14618fe603da70fe0708a95b394d0112" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-linux-x64.tar.gz", - "hash": "baf66ac51feef61c16557cc87d54d5e347f175922098aa45fd1e03dbc2669b97f602c4de378884d95da25968df4700871a82484d8882b5cd0f9a2b049c15212e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-osx-arm64.pkg", - "hash": "37238a9cede87db14911e18456385179f72bafed8409d8a6fbaa205b38841424b017e2850b994cbbb798fa19be56a4c7b255e643ae5f03f63136415df953372a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-osx-arm64.tar.gz", - "hash": "51ae7a02bff806499e5c1a5a9ef6378e68fc6c3bcc3d68fdd83f992cb77d0a1468b4c532a4be1cf3c6966a186748361fa74f796dd59c9899413977fea84b165f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-osx-x64.pkg", - "hash": "ef09502c80c9c3a26fdcdce80ab0c42f42327b931321ca5acc29b273aaf562a52b03b1d12179e8124d12d88f58560dc4a5667fc78b59a651c02bdae4c2b15bec" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-osx-x64.tar.gz", - "hash": "e17d2bd7b686ca924ddf30a25429369a5ec396ffe3a63bf2d2070078a01aadfd9f4184a1d66bbca01e96dc54a70cfbf7bfe506f8941d05bab99e8f8277eeb3b4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-arm64.exe", - "hash": "830c69395d6b14f69f4643b2d3e121e7b16421f001a6fd559dc2b16665607571c4dd20cd6dbbeb44f81e3ec47fcf74cd08ba81660965f7bcb69bbf04942f451e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-arm64.zip", - "hash": "65d1854027f61d5b35e8cfed64bf8260075d9f09c834fd134bb8736ef56c4ebd4fc1dc7f1f8ff387dbbe22e640d6e52c288187b1a36cceff00a7b83da4af390c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-x64.exe", - "hash": "81ee133c927daf3c02d07699450dcf0e83efebf268a883eae3d3e23b97d8f1e59c00fedceddaf041bb6b6e89b23f0a849fc46617579778a8e40dc57b2034a0e2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-x64.zip", - "hash": "a7f47c233d32b4cd0c446491f5afcaa99b7e69c82c65e3bbd17e372244e5f6ed6eb0484f6c3f50fea8680fbee1dcfc504afa3b7a3302d8f2a55ea50b42197dd9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-x86.exe", - "hash": "2b9e64f67fdb4d39a3b4e0160c63a420d179e52394efca21dcf1f495d1359e3424dbb23defb90a81c3c6a8d431e72d318df2dd2bbc5c75139a39b43908785daa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.106/dotnet-sdk-6.0.106-win-x86.zip", - "hash": "30fbc989ced1a016feb9f740d0d1139581398b4dc21120c6dc7202f4d3eaaabe2ae232e6e57c2cbb90f95dd3293f233f17143b217a46e534c3cdda9b72acdeca" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.6", - "version-display": "6.0.6", - "version-aspnetcoremodule": [ - "16.0.22138.6" - ], - "vs-version": "17.0.11", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-arm.tar.gz", - "hash": "311635857dc99d75f6fb7b002fdc0fbc89289cf56650c7e5ecb0c7ffe6016924146df798632d1148c23ce3dd613f3a206b3ffda3d94015241fa558ff4180b270" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-arm64.tar.gz", - "hash": "a3bd7ce99ffb9b87766c49fcf28d802f4072af1d55f1d53ef4043a1a0b038a0fc8046669bbd82f64fb37e4c73703fa8f54a460caaa473d952baf941d23341c90" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-musl-arm.tar.gz", - "hash": "ae31eb4e06fc182c799ce41822c3bf03ddd4a948f96691b7559a5669dbc481d5177c6ed383c9d86baf3362ed297911f5f7cca22f14b945a7b20e90f6052621bc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-musl-arm64.tar.gz", - "hash": "fe7a33e2ff8ff78bcf3877dfe4d5b41ca6e5113cd926777fe2d3d0b4ca7a7dd1e205b515bbbce724c2e41ee544cb7e18c8cbe3caa52e4a91c7a4a43e7bdbb30e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-musl-x64.tar.gz", - "hash": "0ecaf750ecf0eb1da601baed2c71a7a09994fe82ef11c4896c57e07d480e5820fb9f92b5fe55e35bf72f067894b85d7d33d3955f15b670d4282ec5049e52f124" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-linux-x64.tar.gz", - "hash": "1a5c0f85820f0eb589700df94de6dbff45fe4089a37f1cd5b1fac33476a2cbd8d5c6f129e55b3716f5a7a2616f1a5a720c52238f21b28a510a3e5c8bcb8c516c" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-osx-arm64.tar.gz", - "hash": "0d62c151b4d25d606becbc0a99d4ed3988aaae97a95990a8d5b6e0e220bdf661e3f7fad64dad6a479f8c9bbd42971d6e5fab7dca43b74ca7ccbc423fa5b200af" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-osx-x64.tar.gz", - "hash": "d1a469a5d27afd2f035f9865a295b8948bb2fcefd0e734c61ea8d0fe1b272fd1e0ba3aa4ad414aa68491fc611695c8d94064d1bb02d62cf1e7ea071a73a844da" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-win-arm64.zip", - "hash": "c8718f76f2c7e81b4ebdcf54e5d4a2278cbcf1fc899339a0769482ec26fe1de349016c1c814e025d94e20b23e98d5613e5257ca3e2c44f33832596e50e0f4d76" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-win-x64.exe", - "hash": "f82a64e442fb4db7133df64c53e7a69b57c904ad1ffde66219cd4e87138452f5860abd5c42ce8281ccf804f780f4583243218099491a3324e9dd55c9722bf5b9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-win-x64.zip", - "hash": "b5d72c13b9ca157cffa2a6b53f80e8cf4d405a899ed29313117f64d33ed59b4307316379bafce013645a14c58ef15804bb1149fba88818b73c076fce3c352ae4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-win-x86.exe", - "hash": "c092c5a459876a549577c43d6112fb584f855877afb615d6adf1dcb902477e30bda9bbe680a6965e6532fce1159923043b4687dbd8bcd6ef072604af3be84253" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/aspnetcore-runtime-6.0.6-win-x86.zip", - "hash": "e8bf2c894cb5fb33659002275ec5e0cadb26ce42a462d1b463e3b04853ddbbaf60694926bd1dad9c13c23450e0d6d034456e9e0ece153f582c855ba7c9fa4d6d" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.6/dotnet-hosting-6.0.6-win.exe", - "hash": "44db96cb9b22a10eba3b61daa9eae2080a21da751253ad8e56f964015944ec7430ff895f29370a56a091b8048ca228b1fecd41e1a88f29145b2b8f13efcb9dbc", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.6", - "version-display": "6.0.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-arm64.exe", - "hash": "176f8d10e890d253cfdc19b65fef83c6df299d10262ee3298299b1545b27ba2143ebc76a15f06ae5d6dace6a01fa2944b19af01fedb42bbac309d173b996ed71" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-arm64.zip", - "hash": "414c37303481514ccedd4633c51c1395b4a99b0a9852cf509f17e31045698e3ed939e758c399708fac8605efb89715b292757f9933a5786ddc384e299e9256f5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-x64.exe", - "hash": "b4b5d989fdfca6c160fbd769660f91aec47b0cc0764de1d2fb3de9d1b86d5c789a84376497574ebd86fb6fb1c7a2a6aaf52661932e8be4f4c2efe8a47a60e469" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-x64.zip", - "hash": "18e2b249e68ea61b5e3f73b0b82aed515c3ffe8e99925700ff8e399e42cccafaad618bfed9f9a6112b864b6219be9c9e2b0e4519a64bb18d9331dff39a0a6215" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-x86.exe", - "hash": "8de470e216dd3066976e916f887697817e2245e7ea3db68326356c959abe0bb5dd408f889d154718cc316f046cc8b592ed9022c164a8f495448b6deed3cd9d24" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.6/windowsdesktop-runtime-6.0.6-win-x86.zip", - "hash": "5de9b960208577caa0fdb618b53b09ebb97c30f28aec40d6ef2b24934ad2daeeb28eb7b62e66d0223e51d24377ba5359f9c679fda2b4e3983388e7d9f7284d6e" - } - ] - } - }, - { - "release-date": "2022-05-10", - "release-version": "6.0.5", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-29117", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29117" - }, - { - "cve-id": "CVE-2022-23267", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-23267" - }, - { - "cve-id": "CVE-2022-29145", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29145" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.5/6.0.5.md", - "runtime": { - "version": "6.0.5", - "version-display": "6.0.5", - "vs-version": "17.0.10,17.1.7, 17.2.0", - "vs-mac-version": "17.0", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-arm.tar.gz", - "hash": "5180bc076629afa91096ed500ce966d1d62e7b1b6248a6a33d6e758a3bca8fdff382d90793d847f049a330f4a0964dd29b18ac8cbd374492f19d74056a608252" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-arm64.tar.gz", - "hash": "bed49b74ad60d2701ddd638c61c215ad48f5c6eb88df140545d29901df60c6667474ca9d3bed6583dba605282ec64989ff2b431f098f0afc6ed155af59f7126d" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-musl-arm.tar.gz", - "hash": "bcbbaa72b6bcc667d735f42107181eb8943f0138d0093cac78a5ee24b167a1577b5224f0ec399057eea84bcddecb810f22cd307687176c3e2db3796b2b25fd8b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-musl-arm64.tar.gz", - "hash": "4b576997e7cf56f362db70d77ecca0b2dcf4f5435926eb0157242c99bac576112dde06b5aa396ba9b9d199d9d2427a10a273509f24685e5a2ac34dd5098a11e9" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-musl-x64.tar.gz", - "hash": "de0224c5cb933ff557d19c4293a7a3591a54ae1b5d2de1f663195a1cab34c89986999fd63d43fe6d31fc5ad467d5f5cbd15636fa672c34303fc7eddb1708db7f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-linux-x64.tar.gz", - "hash": "c228f0ba0ecc4ccda708e97529b248dd6d70f7f747ead6453623be77e8e1529b54db52f5df1b5e00b5b7f92b73389560832f80607fc07e50879d55ce905afcf7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-osx-arm64.pkg", - "hash": "42321b4f814d18d751939c6ef878ed2bfa2a47338fc8d497488c4bd618905c0cc0b1376bf30221b6f636cde4260661a388951fb5b288986e0b36a3abf06b1521" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-osx-arm64.tar.gz", - "hash": "3222c366e7da30e39f00eb27c7ac75094b7f294daf105a5ba85cc7f046eb35bdda1c561f3234da3ea2aefbbd1701940557d4e3b31a1e03eda890c9b0b49effde" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-osx-x64.pkg", - "hash": "198b6ba1178691730b645e5ab5034538ac5b76bdaac6859f2af8072953f9fa6bfc77dc6e10490e597e6803d30164048530e1489084ef80ad0aa763d526282c8d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-osx-x64.tar.gz", - "hash": "fc26668071b989739fc139a06db9895602c179779f5051a01dc3543285239b0c50da0003f0daac2215b502c8a91170f55b748440fe711817ef3cad08266af9d1" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-arm64.exe", - "hash": "48421d20f3939863ebd07300c231f36a2be43e55550662f589883f70c1493d971d2eaa437ebfc969f35f22b348fe0fe875838c336d351516cea5b29500008e00" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-arm64.zip", - "hash": "bc1c083483cbe5f6c31716d772de58cdbf76850f3e6cd7b90feb03969beef6a3624a621a25bc6d5ddc6e10edaa4488fa63917767c6ea42f8d6311111a60d7c9c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-x64.exe", - "hash": "2c4ea305b2deac4dd44616a994c78502c365c9789ad28d87359022a186a01bd00fda17faff96ce16ac8e4132f2d5366f677c02255f084748025b355e245b5d5d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-x64.zip", - "hash": "3e99e10e45b54f625f7a615dde83ac55149a53373cc576eaa586c2fb4822614d505f01972d384cdfcb7c996f5402ded491d187caac143ec75e74ee4b48eaf8cf" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-x86.exe", - "hash": "1fc29711c4bfbfa7a52479eb588e078428ab2fc1a2781da06b20068ec4165da75770d1253689277c43ff752189f8d40c0fe653f174f06cb1896118558784e2c3" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.5/dotnet-runtime-6.0.5-win-x86.zip", - "hash": "fc0b8745d07149e8728ee3c9a09866336d978ef1625277e1ecc91913951ce2057b90c6a5bb9d763197f642fae0f7c1802d16e891f534a8c78ac6e8c7bf82a2ae" - } - ] - }, - "sdk": { - "version": "6.0.300", - "version-display": "6.0.300", - "runtime-version": "6.0.5", - "vs-version": "17.2.0", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-arm.tar.gz", - "hash": "362e09bbe36a827beacbf36af6d66f7a6eb6da92e002e9a466a597f2fc181754e8893840c68c67a6c5e94b39e2dec1da360c72814bd904b325171ff7d06c56eb" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-arm64.tar.gz", - "hash": "67eb088ccad197a39f104af60f3e6d12ea9b17560e059c0f7c8e956005d919d00bf0f3e487b06280be63ad57aa8895f16ebc8c92107c5019c9cf47bd620ea925" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-arm.tar.gz", - "hash": "515762d63d070e5a0b01a442dfdfa9df02b683b2624ceba81617da4cb21141df47a469c50457962bb5ad6801eb529ca1bf845fc713357192b09201d6db349619" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-arm64.tar.gz", - "hash": "4213881a029f6624011e3ae1082d4bb43783cbffac0a2bdc1865cf1a802884c416b9b7faee17099d689d0d18a2a1c1a03b9bdd0c42de27b721e05d872e4affc4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-x64.tar.gz", - "hash": "c7a443e8e037be1b10d803f083832d7ac329006798c45d40d02a316009c886070c1ffc2033bdbe816df66e3840bfd7977f2f9a61e28235857a69c552a8d9c2fd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-x64.tar.gz", - "hash": "52d720e90cfb889a92d605d64e6d0e90b96209e1bd7eab00dab1d567017d7a5a4ff4adbc55aff4cffcea4b1bf92bb8d351859d00d8eb65059eec5e449886c938" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-arm64.pkg", - "hash": "7c2085ec15565c67c8254b49596b5475d80fecf2ecdec4ac58fa532efa2130bace1afc5898a823d1ae7e77fe1e29a27ad6d51a79c31fa667bb39b25d421a3b85" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-arm64.tar.gz", - "hash": "174cecbfdfcd1187ca71e5b741eadacc0e103cea75262f7dd15fdab6845226cec8def75cf4cbec3dc07bd085d003ac456670115b2f2a4a88f902be8a5c3bb3ae" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-x64.pkg", - "hash": "3c0146c65e3cd2ecf4a60caa94553ad3978af23c0f90a3e5638e266631e945f94d5bc9d0d9947506c45b3c65e48fca97f34a4bb94dc14c391f2d604941eeeee4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-x64.tar.gz", - "hash": "36118673ce1a49cf31658444f29b67dfc338b78eb46847a43f38de0ae68cf2e4d72039b1813a8972de31cd8cfea13a9861d075384e67b86f98ff6abb90f4bd2e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-arm64.exe", - "hash": "dedd832c7645fad3e5e270b07997b4dda117ecec44b05c276ae7e4c740d083e194496c914dc6d97c13eb74f60c192699f4397e2f0a4b359bb81f45e375053ec6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-arm64.zip", - "hash": "55f58f99afbdde247504b700594389fe5a95c95b2c0cb4a8c7ba45f6c57b74fe801803a918c704e1e84329d97e95cbb53b9f914e62f57af443c2dbf440b940f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x64.exe", - "hash": "8ab7f23e6dddb43349467a815a4b84b8d66c378f8da78cfe62c2654f5dec55abc42ab92bfbed8a5a38ad87ff0be70418a38ef4ea937010d7c1c40595a19f1df2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x64.zip", - "hash": "579d886a6778540ac36098b511322fb99e9d5bdc07dd4cc1cb840da04286422019c091b133d306abd4dff9fae1154abf6e996625895db853c9140e6d9dba560a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x86.exe", - "hash": "0943b0a9976f769aa354c04cf29b409a19881aace9100b87d75ef3955fb06a8798d6d4c4a714684c8413977f15ce922f1895e3770dc3285e0f70febe2cc86fb1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x86.zip", - "hash": "c5065cd5cb872cebf66a11aac8731e8b9ece01c30c2fcbde6fb1f6839008590134486acb2f4038cd88baec0f90a784d5163753291b11b5f3e2f68e4882b7abd6" - } - ] - }, - "sdks": [ - { - "version": "6.0.300", - "version-display": "6.0.300", - "runtime-version": "6.0.5", - "vs-version": "17.2.0", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.2)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-arm.tar.gz", - "hash": "362e09bbe36a827beacbf36af6d66f7a6eb6da92e002e9a466a597f2fc181754e8893840c68c67a6c5e94b39e2dec1da360c72814bd904b325171ff7d06c56eb" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-arm64.tar.gz", - "hash": "67eb088ccad197a39f104af60f3e6d12ea9b17560e059c0f7c8e956005d919d00bf0f3e487b06280be63ad57aa8895f16ebc8c92107c5019c9cf47bd620ea925" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-arm.tar.gz", - "hash": "515762d63d070e5a0b01a442dfdfa9df02b683b2624ceba81617da4cb21141df47a469c50457962bb5ad6801eb529ca1bf845fc713357192b09201d6db349619" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-arm64.tar.gz", - "hash": "4213881a029f6624011e3ae1082d4bb43783cbffac0a2bdc1865cf1a802884c416b9b7faee17099d689d0d18a2a1c1a03b9bdd0c42de27b721e05d872e4affc4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-musl-x64.tar.gz", - "hash": "c7a443e8e037be1b10d803f083832d7ac329006798c45d40d02a316009c886070c1ffc2033bdbe816df66e3840bfd7977f2f9a61e28235857a69c552a8d9c2fd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-linux-x64.tar.gz", - "hash": "52d720e90cfb889a92d605d64e6d0e90b96209e1bd7eab00dab1d567017d7a5a4ff4adbc55aff4cffcea4b1bf92bb8d351859d00d8eb65059eec5e449886c938" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-arm64.pkg", - "hash": "7c2085ec15565c67c8254b49596b5475d80fecf2ecdec4ac58fa532efa2130bace1afc5898a823d1ae7e77fe1e29a27ad6d51a79c31fa667bb39b25d421a3b85" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-arm64.tar.gz", - "hash": "174cecbfdfcd1187ca71e5b741eadacc0e103cea75262f7dd15fdab6845226cec8def75cf4cbec3dc07bd085d003ac456670115b2f2a4a88f902be8a5c3bb3ae" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-x64.pkg", - "hash": "3c0146c65e3cd2ecf4a60caa94553ad3978af23c0f90a3e5638e266631e945f94d5bc9d0d9947506c45b3c65e48fca97f34a4bb94dc14c391f2d604941eeeee4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-osx-x64.tar.gz", - "hash": "36118673ce1a49cf31658444f29b67dfc338b78eb46847a43f38de0ae68cf2e4d72039b1813a8972de31cd8cfea13a9861d075384e67b86f98ff6abb90f4bd2e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-arm64.exe", - "hash": "dedd832c7645fad3e5e270b07997b4dda117ecec44b05c276ae7e4c740d083e194496c914dc6d97c13eb74f60c192699f4397e2f0a4b359bb81f45e375053ec6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-arm64.zip", - "hash": "55f58f99afbdde247504b700594389fe5a95c95b2c0cb4a8c7ba45f6c57b74fe801803a918c704e1e84329d97e95cbb53b9f914e62f57af443c2dbf440b940f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x64.exe", - "hash": "8ab7f23e6dddb43349467a815a4b84b8d66c378f8da78cfe62c2654f5dec55abc42ab92bfbed8a5a38ad87ff0be70418a38ef4ea937010d7c1c40595a19f1df2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x64.zip", - "hash": "579d886a6778540ac36098b511322fb99e9d5bdc07dd4cc1cb840da04286422019c091b133d306abd4dff9fae1154abf6e996625895db853c9140e6d9dba560a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x86.exe", - "hash": "0943b0a9976f769aa354c04cf29b409a19881aace9100b87d75ef3955fb06a8798d6d4c4a714684c8413977f15ce922f1895e3770dc3285e0f70febe2cc86fb1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.300/dotnet-sdk-6.0.300-win-x86.zip", - "hash": "c5065cd5cb872cebf66a11aac8731e8b9ece01c30c2fcbde6fb1f6839008590134486acb2f4038cd88baec0f90a784d5163753291b11b5f3e2f68e4882b7abd6" - } - ] - }, - { - "version": "6.0.203", - "version-display": "6.0.203", - "runtime-version": "6.0.5", - "vs-version": "17.1.7", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-arm.tar.gz", - "hash": "e6cb656e4acf450023413cd0e155e9c4f294887dec1fb6c87d4e9951eb29d0ad697f50719e42fe3dbea0a34f9d297dce9261c541a7e43e6e4a359c8db215390d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-arm64.tar.gz", - "hash": "552448b13cc77fc1e6189f4954eab16e8a87822189f3e488e6bc73ac099a8fbe6f34b667dabee637522e35edad30661ba32cdd4b94d57bb5cea9441e2f4abf19" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-musl-arm.tar.gz", - "hash": "e8c226460c2a124afd9ca4ab877a081cd07cdd1d33b2d3cef9e3677321c8aaa2bb8c272966f4f65763ac7a949d81c3a78ca1bc6e602bd4d620503e00bd4660f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-musl-arm64.tar.gz", - "hash": "15e1aaa9e0b5b28a8fdc32e963c1d346a53d3a5ece09e91d59d021fd8e0fb08c22f3eeccc43777d14a6d05bfdda32d075c65563420b9854aa466fbb3a796a7af" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-musl-x64.tar.gz", - "hash": "6d16711b06fdabdea151b9878e64bffe571055d7fac0f7abfaa990640d819fd67d5f1ea7ade05bbe91659012f9dc3900f24137cba1423e0e2fba116f8e87b9a2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-linux-x64.tar.gz", - "hash": "08b97f34a74c9605eb2fef414b9df89e0bff5c0564672a1a7653fe37fce4e10c272aa0ddc1121d981bca04a3e98cd2346c679a18b6052f2afb08d767f49626f8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-osx-arm64.pkg", - "hash": "60eb5c7e16ae6d29191d27e816ae6adda393969a39dac4b852eae5cb9fb0a417dfb736e0d5081e583736cb8db207cd526b1ad807f3fbb2408146c8b3c3243f3b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-osx-arm64.tar.gz", - "hash": "fb7841f78f658c863f88e82eda9694454ad2c8ddd01d81faef46a94cdc93d52b6a35d22e49ae28e36d205d3a915a924b6dbb7d16766e25180be597639f0ead28" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-osx-x64.pkg", - "hash": "40f364cd16593e2b78e4277985b7e8d840bb33dd61431683649d7f8b2e86a61e8315cb7c57492bfd36908a64627282c0223f1a01c634f7548f7a20193903a0cd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-osx-x64.tar.gz", - "hash": "656cb5286edf4c21857ff2831d8650556569f5e662d41a9ee09d668b35cb4eb9672e0c67f6c9537177d20a7ff0573d1970b6d6c80bc11ce79a4decc0c3c55433" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-arm64.exe", - "hash": "d3a43b1091042d3ad9f84f88cd5682d95536fee8bcd9d7cf7817f35d1cda9794c6aca96102908f4741d5f294820cebfc9069c8820a06c5c03629e78a74673fd9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-arm64.zip", - "hash": "a84da4178bbc4ac36c9f44b3a7bc54567bab092b767a47b5c0f3a1a0e66c84f3d574f42de67b85d52c8a084832599c9c39b9749abf30d15c5a9adb34e96003b7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-x64.exe", - "hash": "bbfcfb10dbee48bfa507870d86cdbf5611264694d395457de08f196be9415ac0e91ca694ac52214b2c38ba6c88587848328e8ba6056fec5bede30146057d40c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-x64.zip", - "hash": "71b5b2d99ebe1fe025bb341e463b1f6c459d1725e12e9dba14327e958849fa2f8e0dd310f77a705d0926e560f77df40476b9f9f5002a63bde43f07bc082b1715" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-x86.exe", - "hash": "8af6430b8ea043fdf1b902d183e3c8c9383f35625a8d5e2a441d936db12f9ccb3388138eda46005857785d2ccd0c3da8a9b710becc26266c95924707fee505ca" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.203/dotnet-sdk-6.0.203-win-x86.zip", - "hash": "e49482c3efaddb8207bfa9980d4cd03cfa7ab727e74e6366e29336493d8bfff03a4b87a5c749b9c3108526e964d9172fbb4b5b2b620b71a14844b26d49a88d94" - } - ] - }, - { - "version": "6.0.105", - "version-display": "6.0.105", - "runtime-version": "6.0.5", - "vs-version": "17.0.10", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-arm.tar.gz", - "hash": "edfb33b0956cf1398f460847505cebd8571b82ae870f64e48de54b67d5cbdb5d3cdcfe2328ce9f096d665751bae844eb5a1f66fb707da2ad888d694016444adb" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-arm64.tar.gz", - "hash": "e995bf3da74b2b9b0cb17339be5cd34299e2d5471cd72e923919e9ac22badde369d23357f09c3dbc121c10da366f6650ee8721adec3a11911ef5fed223b9accd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-musl-arm.tar.gz", - "hash": "02b03d424411c9be1679fce10073e072f7eeb2064a7418cc18ceb1c9825f73ad63123ee9a7dc02dc1ce80c29adff08d6d787a0a3162e521ff8643d570d69436c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-musl-arm64.tar.gz", - "hash": "e14f37173c082e5e0d6f8e8c650ef89b12127fa41570cc4a0b49e3d868a2c3b07a2aa291aba1abca56f477bd64685469b6d6feeca7e1f1921d06c85aa4723dde" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-musl-x64.tar.gz", - "hash": "d0d603efcc2db1e04898afe26a17bc0af316cc0d3965abd0faf5e45fa2b994fc38d177dfd17e8dd5f4f34c759607a44be3d1d2bd2a1509b276b706e4eaa22de6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-linux-x64.tar.gz", - "hash": "a5a45994e30b390a91110989d725fd5c3e639d0a79183dcd0f49a49909036195b694b413a85b935adfb2b22bb8ff7d6a6b6294fd7a633143cd907218b3285ad2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-osx-arm64.pkg", - "hash": "e65666c976b6f687e4871be861ba828a241b0d5dc74a249e07926f93435c64f8e9db370b19cdb07835a8373789d09fc916dda7a76a2a5ef421a9180e288af386" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-osx-arm64.tar.gz", - "hash": "e96fd4034a2dc25bd2ddccc29a2d7d8696708d2a9806e287957547e1694be48d1eb62d01eafda08b5a7f5f2d0092ddbccb9211cd62aa3f1915c5117ca12bb398" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-osx-x64.pkg", - "hash": "13e6ab876606c0bbd29446888f70d23876eeda2c0f9d456dea9d80090dca87ed2e51e240bdc74b1502d26df0ca44d80d2a1715b0299fc60b9dd39f933774400c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-osx-x64.tar.gz", - "hash": "b56eb3290738e7f6119d46916f2f1b9888f9db4c1c4dc02a5ac265aeb7533e82eec072f100856945fb1e1211a52bf37c2d48efce7ec04f96ae1d4c1ce6bb9c5b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-arm64.exe", - "hash": "b7ec7c6e76171c8b300ea9a0a3bd6a9cb8c5efdd8558c59d82098f323a151e17461faccb40f22ed47d126043803eca00a8474984b8a99f4cab62eff5c7d3c3b6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-arm64.zip", - "hash": "77cdb15fb8eef1eddae375d691ea2a3e79f798861c0b5067fd0022a6ad077e154da788dc71518184406765968c8409c502a5009bcf8751e7234a66e8bd9090bd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-x64.exe", - "hash": "eee66b393acb3c2dc682f8bc2ffe827528be1dcf112a437e17a9208819553d1ceb7e99999818349b45cc4e0639e90c182efd0a3dd9e975473c706276926e2294" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-x64.zip", - "hash": "8407515bd7fb9b3a5f9a3abd33e2d282b90d49a904a28434ef7c90a4be8f8c45aa87b98d4b261503c7121ba299eeb500032a69d52fa961fb39319b661156ba31" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-x86.exe", - "hash": "1bcad5bf49ac77381bf841695778f4a797302a9a74528cdb6e212f9db0a808fcc7c1ec270d53aeaa65c84be8cf5d4b13ae23c11c6ed80175001dce625afb5408" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.105/dotnet-sdk-6.0.105-win-x86.zip", - "hash": "3bb4cd1102a8f274b0607ff0979c8767733a29bc8f61604c73cd1ea57c5502105b1306cf2f7bf3d6094f24dd99ac9df14bf1a9574177622b749ead3ceb68d8a6" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.5", - "version-display": "6.0.5", - "version-aspnetcoremodule": [ - "16.0.22108.5" - ], - "vs-version": "17.0.10, 17.1.7, 17.2.0", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-arm.tar.gz", - "hash": "8a56d232607aed4d2925438c25f93e1770c4b19f05c29e8c0f866349315fc0da3eba89416ebac4b55f947190d7433463591f436781e6a7729aeca1c77b64bf05" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-arm64.tar.gz", - "hash": "fecc864acff305550944fc20c18570d8323b56eefafd07cacf7f03169700265af7c3b5024fffb5a1742b8a7e792a849319e9180a92e04b79644d674f883e7578" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-musl-arm.tar.gz", - "hash": "5985538ec6d0071d850a1b003808feec72281e6b89dcf13595dfe541ad982833615761057491675cb6084fe181c2a14cb66fbe2ca54bb8d5d6ba52336b3c1d2c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-musl-arm64.tar.gz", - "hash": "2f00c9960a7aeeb84cdb932de886c9843c7ec7c1cd4ffc82c5c5321f6da0239796bca8a5651f54a4c92b9c094d48e19244eb6c7f14489e53a522c8977d1c5658" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-musl-x64.tar.gz", - "hash": "b9f07997e5a930e096772a182fcb8f44826cf5fdaf4a5f8d5a9eba4f157373c694a50f57ee1b799fb0e6d4c4d8389cb45409d928e3fc5ea6f56303a190e1941a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-linux-x64.tar.gz", - "hash": "3a2169051da22f3faebba319101c3fb86b1cf8575e3715ebfb82b673e14417370d00b958a252c740a6b0e11a8624e4d4ee41fbfd29a4e73af79752dbbeb1477b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-osx-arm64.tar.gz", - "hash": "862afb12e3755adf7db3c774ac5fbc6b5fe0c005c8b46378c12120a0604492fa17a226e21fe1b542601c15543644442438b9a0a7b1a756e495bff823e45dde6d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-osx-x64.tar.gz", - "hash": "44985a9c47d63d2b9cadae66bd81f73775301a7d1708786cc3b7ac31b7ad2164dc5cb40682836c2e5e7d1a28bbf199c9418d0024b576962dd4f220db238e82e9" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-win-arm64.zip", - "hash": "5f4146d0936c52b0b4ebb47e14dd78d5f612135eb9cab4a681ea4240b090ee880ec0760e4165f7cfaf87b42f7e016cf47615dc789d0aae31c29554dfbafab927" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-win-x64.exe", - "hash": "f931b430e9934f00146a5b09df4eacc781163d86f105a872165d2d95991b8fa1134f4902a27c459e7f8bacf3391a594ea1d4a449f807fe378cb9b3d1035776d5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-win-x64.zip", - "hash": "2fc6768f863679a182063e5f33adc10e0e30cd1df380c4e43caf4f45091661a2341eaa6898da5e735bf01a8018f537e8fce25b288705c1d368be0b7a7cf74b47" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-win-x86.exe", - "hash": "54d05c34ded7ea7e1e8780da3d0d004ed459e264778b76779ced87b4dbd5ff40d3ff24343ae1825dceac40645f1b5f0eb7bfe1de32e05e37d88d50be34d871b4" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/aspnetcore-runtime-6.0.5-win-x86.zip", - "hash": "79d55add4e32ea92601d78d41a5b3ea827e61417d7e8fbc6f7b77099b754a4792dc1d97728ddfcc1d7ccdf22ffe248776ac6b2ce2220007959590b6b97159f63" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.5/dotnet-hosting-6.0.5-win.exe", - "hash": "b24d769c6d82fc2ee8e752789e530c41958ddd0c5d201ba1112aed292413e1f20c4548574d78adddcc19691e6907f4118ffe2ed65997c9d0d7ac2a06a3bd84ee", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.5", - "version-display": "6.0.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-arm64.exe", - "hash": "93a13ed9d11bf5c53958c17d9ab0b6da10376742c14e249b28b5e2412d6273e2b0dfcd71d44de479e13155b6d417f49343baeaf3297406d842e03af6505cdaa3" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-arm64.zip", - "hash": "c77ac50b300e475178202744298b42b1c5a123ce12156a98ae2b2d5ac2f0812a7bc44aa9b5a58216bfa9022d74afd587c4673d452efa384ecd2534b3176410a9" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-x64.exe", - "hash": "5eb1537295cdb513197419c311777229fd43af6cea0ef6134f9990b32b8ac26aa51139f2c0b63d9cdfb6d753dd9db6f243b887ec511f15866157aa9e127b5cea" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-x64.zip", - "hash": "6c98eca0da3dc37283d461072a0142218a9e36ca4a15ec47274a33524df0c27f90b130f48f370cb5e26ab408b06a63e3ad598f89ae9d2bb414f2cb5acacef99a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-x86.exe", - "hash": "c62dfcd8f51ba6aa8d7fcf963aeb3e0756e06c2b106587b4cb0820d06ecf9dadb43555f94986941d1bd8e9d8a61fe2b2bb58fce48f9ecfd0783c0763c40babcb" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.5/windowsdesktop-runtime-6.0.5-win-x86.zip", - "hash": "492bd615a200b1b1b394d45ae48326af75da8a368649c9d7f3dace9fff1cc96c5616089ef2cd08feeaa2bcbf9e0004bac178bddb1fdc60907d3911dd5201361f" - } - ] - } - }, - { - "release-date": "2022-04-12", - "release-version": "6.0.4", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.4/6.0.4.md", - "runtime": { - "version": "6.0.4", - "version-display": "6.0.4", - "vs-version": "17.0.8, 17.1.4", - "vs-mac-version": "17.0", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-arm.tar.gz", - "hash": "688b6c6a35786fd36fb8468953d69e5713f8b62e7aace6b836b70051f827a78565c841cf7913412b6319980aab2dab7e52755993cae36fad676d70ffdce968e4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-arm64.tar.gz", - "hash": "acbb50f2a1cde2bb8f59ec2059cd90f669748ce0da519ddbb831d8f279c4b896cc7a8f4275fb2c4726c5caf3d6430ee6d9823baa6f65238c7017ecbc2b8a6444" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-musl-arm.tar.gz", - "hash": "d4b7287461448fbea1587acd8e8c4a7a39d0f82970d0657f821ffc4d9491b04d3c18c35a091cfd21e2c583f1bb231dac1af9f206488125cafb8045eecd0c7573" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-musl-arm64.tar.gz", - "hash": "65d79da43cbda980a72d6cc4131059dc36f322d1c8ce8e8e6c1729486b5eec7569d4f416045d8a3fa647f8ff684f9ee5ba84ce898cd227e2b615d635b61da8cb" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-musl-x64.tar.gz", - "hash": "e5b538482f10a667bee3b7482db0ac0cac27b5bddab9f3ab68bd5c5d7c18c5bec2bdcb8cd288052c3f3e186291ee02190ff01896c2835ce32b87e18cd817759e" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-linux-x64.tar.gz", - "hash": "001487bfb337d0f737c4e3dedc4bc41b3185922c07c07e8f1d47e4578914fdeeed7421d7af2c4bb5e17ebddd05fde4cb9aea1e8145018dcffeaca70c1fa49bbb" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-osx-arm64.pkg", - "hash": "4ed9480eb844ac7de4a50cc8f691bcd8e15df729ac55c1f4664b8d44f589dfb17cd1ae2134155efa0da2b5291e605e680fc25732394909e86affbc1a34dc531b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-osx-arm64.tar.gz", - "hash": "3070af5d9dc44820dc93ca89489f1dfa8024958f64a9d62fafddb49fa16325f0845cc53027703495dc524515e613f3e7701ef148da06653070cb2e3928fb0aca" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-osx-x64.pkg", - "hash": "46eb9326f3a3d92143918213ad4974d8ffd853dce212bc1ee7150566c5e117bc33e9ea30c01233f1b2e4c4bbf9c8e82b87d8802c98dc7f1daaf87aad25822c38" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-osx-x64.tar.gz", - "hash": "7a798ce54880533151cc9290129e1a6224e81e657026e5be580ee24742d54e8e8e5f8f3bdee2cb94d5129082e3a2ffd1460f490abb848aaf3558e584e2e2df43" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-arm64.exe", - "hash": "0dc66719b143d9ebbe9d835fce93da04ea53baf67eb2f80755aa0bcd1df6fcde88aca50bd41a45f3196360164a203970d054c8db6a38eaec0a47cf3d66aa445f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-arm64.zip", - "hash": "fcf1b1b14fc8bb2a094b4d1340b2c861a3d2a913b6b09ed272c98cbda9634e9dc26220bb663b1d726a779191de9941f0213e16bc845f26a34e6b71de7c7aff43" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-x64.exe", - "hash": "175fd36104c2e5379cc2769da6cb0290407ae06f0fda28625c80f5c099b5f0c6ad26769a8e51347e292b8305dca9681840c24335598cb64759c8ca865f0d66fb" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-x64.zip", - "hash": "c6e7b48352496a299ccc9602fe5b84894aa18587acdb1bb4474a9e3197b0dc76878d0c067d6d3c31354ec36932c3870fa34eb5ca14905b1a9338205df261b709" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-x86.exe", - "hash": "e13e5ed4e9fecc4374aa4cfa746d42d8573ce3f84b93273b49930b13f9b66fce61cedbf983889189bbdfaf89d71c49b693abf4d3ce308ccdb82fe7b17da3f7d4" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.4/dotnet-runtime-6.0.4-win-x86.zip", - "hash": "7189cd0eb035296eb8dbd2ba15cc193663f753de2698052ab14ddaf789530913fe5cbdf6a1b6532c2d232bb919325d5113f0bd2f9b5a6f8c1c0d8e71f8535808" - } - ] - }, - "sdk": { - "version": "6.0.202", - "version-display": "6.0.202", - "runtime-version": "6.0.4", - "vs-version": "17.1.4", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-arm.tar.gz", - "hash": "8c2d56256f4bebe58caee7810b7689408ff023b1f2e68f99fa375f0115db41ef0c3eb160b9ab84dc2764443a045801a4b03f6bc9090e0c1583fca2587ea0d9d6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-arm64.tar.gz", - "hash": "2d0021bb4cd221ffba6888dbd6300e459f45f4f9d3cf7323f3b97ee0f093ef678f5a36d1c982296f4e15bbcbd7275ced72c3e9b2fc754039ba663d0612ffd866" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-arm.tar.gz", - "hash": "03517eca1a996755d80e3ad4bab49f37cea63fa1924a5c8b1a35de9c49e7e37fa8f0c40dfa79c5b3b46e9f586d97f508806005b7f9b28d25bf4f49d65901dc19" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-arm64.tar.gz", - "hash": "89f8dbdad4e9949dc21260b8c7147156ca3374209a41c145a79a6536b585b8ee1786fecf084fa534f4b6284508be6215d92ec2c3ff9d54118acb42853e5ff2a3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-x64.tar.gz", - "hash": "ccf4f6145d3ea10ce56cd89775f607ac57115f63e3ad7f9804b4a0bceb86e579aeddf5b81636bbf3fcb79dd9b1c082a10b7582e6c8c490df55ad287d58c63870" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-x64.tar.gz", - "hash": "81e9c368d445d9e92e3af471d52dc2aa05e3ecb75ce95c13a2ed1d117852dae43d23d913bbe92eab730aef7f38a14488a1ac65c3b79444026a629647322c5798" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-arm64.pkg", - "hash": "d679a8a9b5b03e255fc906b73c2e62e8b4844c358e8a88e2cb24193ad987aa6693c242880314c39dcecdfb7ece8ac874548fd435679022302c6288ae0ac05869" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-arm64.tar.gz", - "hash": "8bf9ff3f89ac0f2d04b09d3f5df72efeac8007b9e33980c9c80eb735d050275a5594b11d902d0304ac9967111971bcd690be3adf34d4acbef6d247e8f2071f60" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-x64.pkg", - "hash": "265b56f211f20584a57195006db93adca614818b2eecb4c6aa0cc993af169d6b6e2a2fb179fd39890c7310b638882a9f85ce605bbf7338c2138912788e252a3c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-x64.tar.gz", - "hash": "ff7df20ce9054ed50d521eba88e063422efa4d48cb3117cf733cc6ecea24012c2ac34f6df10d88f64fe7a952bb96455a3c2eb877f1d50c0b7bcaedf11f98ce82" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-arm64.exe", - "hash": "2ca8cabceeefa254889eaed638808c3de8737bfacaf9d6bf50eab3c2fcc32371c3bf5d658e544faaa6e62e56396252e255e9cd3fea6080be2328efcc70ed5937" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-arm64.zip", - "hash": "b08c6d560089bef162c80b10fb8a3c26202b918a1abfb5c571aea5d78dcf8e92f252e28ad841d68d801ed179605945bf9b15d398f2a23997fc9658efe009651e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x64.exe", - "hash": "54e9a70cfcdb69f4e442fd8822c1233f0672599cbb91664ff7e31c4d2d93538f5de0a2287f385cce87aca8268df9caec13c4864637ed10501e8b6fcf83743f52" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x64.zip", - "hash": "fc3299972e50a26ec7d2485b25afac7a5c345076eef35ff1e8de02fac01915f4e33deaf3c94b92d4ab6a446326339fd121b6f45f796e899d980c0ee27f4e2ffc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x86.exe", - "hash": "e6d6cbc851808f20153ac4c2b5c6fd1170f62ce2d4ad878dac01a800a7e2c9163764e20beed9196d0f545d370c04aef68106cebbc965faab2d90047a3c37e2a6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x86.zip", - "hash": "e6c8ffc3a5c68638a8e4a6e7d69a14c2c3158329db647e04e0b08b086e97222ba1d2594273433a8114297a7141e37f71d8ed5b11b6bc3ef4daaf7efca9047372" - } - ] - }, - "sdks": [ - { - "version": "6.0.202", - "version-display": "6.0.202", - "runtime-version": "6.0.4", - "vs-version": "17.1.4", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-arm.tar.gz", - "hash": "8c2d56256f4bebe58caee7810b7689408ff023b1f2e68f99fa375f0115db41ef0c3eb160b9ab84dc2764443a045801a4b03f6bc9090e0c1583fca2587ea0d9d6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-arm64.tar.gz", - "hash": "2d0021bb4cd221ffba6888dbd6300e459f45f4f9d3cf7323f3b97ee0f093ef678f5a36d1c982296f4e15bbcbd7275ced72c3e9b2fc754039ba663d0612ffd866" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-arm.tar.gz", - "hash": "03517eca1a996755d80e3ad4bab49f37cea63fa1924a5c8b1a35de9c49e7e37fa8f0c40dfa79c5b3b46e9f586d97f508806005b7f9b28d25bf4f49d65901dc19" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-arm64.tar.gz", - "hash": "89f8dbdad4e9949dc21260b8c7147156ca3374209a41c145a79a6536b585b8ee1786fecf084fa534f4b6284508be6215d92ec2c3ff9d54118acb42853e5ff2a3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-musl-x64.tar.gz", - "hash": "ccf4f6145d3ea10ce56cd89775f607ac57115f63e3ad7f9804b4a0bceb86e579aeddf5b81636bbf3fcb79dd9b1c082a10b7582e6c8c490df55ad287d58c63870" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-linux-x64.tar.gz", - "hash": "81e9c368d445d9e92e3af471d52dc2aa05e3ecb75ce95c13a2ed1d117852dae43d23d913bbe92eab730aef7f38a14488a1ac65c3b79444026a629647322c5798" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-arm64.pkg", - "hash": "d679a8a9b5b03e255fc906b73c2e62e8b4844c358e8a88e2cb24193ad987aa6693c242880314c39dcecdfb7ece8ac874548fd435679022302c6288ae0ac05869" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-arm64.tar.gz", - "hash": "8bf9ff3f89ac0f2d04b09d3f5df72efeac8007b9e33980c9c80eb735d050275a5594b11d902d0304ac9967111971bcd690be3adf34d4acbef6d247e8f2071f60" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-x64.pkg", - "hash": "265b56f211f20584a57195006db93adca614818b2eecb4c6aa0cc993af169d6b6e2a2fb179fd39890c7310b638882a9f85ce605bbf7338c2138912788e252a3c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-osx-x64.tar.gz", - "hash": "ff7df20ce9054ed50d521eba88e063422efa4d48cb3117cf733cc6ecea24012c2ac34f6df10d88f64fe7a952bb96455a3c2eb877f1d50c0b7bcaedf11f98ce82" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-arm64.exe", - "hash": "2ca8cabceeefa254889eaed638808c3de8737bfacaf9d6bf50eab3c2fcc32371c3bf5d658e544faaa6e62e56396252e255e9cd3fea6080be2328efcc70ed5937" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-arm64.zip", - "hash": "b08c6d560089bef162c80b10fb8a3c26202b918a1abfb5c571aea5d78dcf8e92f252e28ad841d68d801ed179605945bf9b15d398f2a23997fc9658efe009651e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x64.exe", - "hash": "54e9a70cfcdb69f4e442fd8822c1233f0672599cbb91664ff7e31c4d2d93538f5de0a2287f385cce87aca8268df9caec13c4864637ed10501e8b6fcf83743f52" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x64.zip", - "hash": "fc3299972e50a26ec7d2485b25afac7a5c345076eef35ff1e8de02fac01915f4e33deaf3c94b92d4ab6a446326339fd121b6f45f796e899d980c0ee27f4e2ffc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x86.exe", - "hash": "e6d6cbc851808f20153ac4c2b5c6fd1170f62ce2d4ad878dac01a800a7e2c9163764e20beed9196d0f545d370c04aef68106cebbc965faab2d90047a3c37e2a6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.202/dotnet-sdk-6.0.202-win-x86.zip", - "hash": "e6c8ffc3a5c68638a8e4a6e7d69a14c2c3158329db647e04e0b08b086e97222ba1d2594273433a8114297a7141e37f71d8ed5b11b6bc3ef4daaf7efca9047372" - } - ] - }, - { - "version": "6.0.104", - "version-display": "6.0.104", - "runtime-version": "6.0.4", - "vs-version": "17.0.8", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-arm.tar.gz", - "hash": "96c3af8b9c920b542a4e9fc3ce26242a0d193404d74b7e88d223d44b2e597da83d44892d89f7fed5385acad1ff5f787bbd81381f01c3cd1b0d89888d14688750" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-arm64.tar.gz", - "hash": "91fa1114a656173a988aafd65c657c9498c34ef9145eac60b6feacc8a08f68538defeb38af472e2626ffd0669eb62140fdb1408771db0e2b63501baf2a646f29" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-musl-arm.tar.gz", - "hash": "252bc96ee054c9ac2e35641ca9920df9d3e3503989ca8d8be44bec49fb6917c71158d1c6e0873d23d20ed487b135b691c63511dd84e2ddb50043c601b4001204" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-musl-arm64.tar.gz", - "hash": "a32b1c526715a43bef186b6839bb8865995cb16dc3bba4067c3e1cbe23fa210ad47adbf47531a839f29be04da3e1e4ee3ddde52e801ddefa114643108cfc0632" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-musl-x64.tar.gz", - "hash": "994e276b23d4a274aec49955025adb2637235deb586c8d3cd6d00c7ed91b79ec0f3641c7f3b6a0680603a46b12efca5d825432c95f0a72d85d432d4baf2808bf" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-linux-x64.tar.gz", - "hash": "126f22f48cdbbf59ff21ac1a6cd354b4dab500cef372c42a7e4a9546c755ab6d1670a096be3c66f5fe80b6e2a5c31b16901a2c3ccbe928b501e25bb86339ec6c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-osx-arm64.pkg", - "hash": "0c7fa3f54fb514a3fc4a053af169fb94eb34bf56174af0b32d52e71b77798c64c38c8e529773affe5b0b5fb83ba64d6f8e7e087489c956e1deb3fa0840914f8d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-osx-arm64.tar.gz", - "hash": "7ba0a39336045617d04a7befcf67e9af89444d819ef21ff7fe11f7da03a54e52458d1d6756f113c3ea52407417d8f4d9b533e22cfd6cec0e65e250e8a1a85757" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-osx-x64.pkg", - "hash": "1586e9cafca5737bd90a3e49b8fa20b1900042aa2a1d317ffd52c25b84efd178fd48b275799793e5f19ec44b091e2f0b1ae88010af0bd2e02d769b6ba7df8392" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-osx-x64.tar.gz", - "hash": "6d3041ba4c3ee3cd1b8875ac419eeb6b2c34278df8a95a1f1621f7256b47733a3eedd09358a2f3b219e69ae7f08cb2df2178036476a3083896fde280328df6af" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-arm64.exe", - "hash": "1dee656a2a686e24aa239054901374acde9cd4ebde79ef52efcbc0b4ec2baff464e347477a7b7f8c33a3f72040492e9c66f2945d416df140eafeea5daa4d3772" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-arm64.zip", - "hash": "cbbfb63d2be9ab3155eef00e55a83d0e95880fe44bc1b109e9684d76b18f2c659ba951676989d74d0a67db7c3c3e8c98ec6abecd6786ce8f37df568954f57059" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-x64.exe", - "hash": "07b7cf6230c03110f4564acdba35f3d8a478fe284da8df429387ee894ea4dfdcf5b99c0874a56587f2cf0ccb396970d1ffd45e155eed84d7a1f29a43a414836c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-x64.zip", - "hash": "c9b9a6c1eec2d2e663df21dc2b650058cb5af882504c10f63f6c4bd52000ef95c7fde4e8f687c1e04b0c09ce759e778a00b83a37f751082dbe6fc59067d67f10" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-x86.exe", - "hash": "2827ac5d57ef67ef4c23c6c6c673f93cfa69123911fb19e2a15a85fc4388e4b7148c6bcebb6eda5814be2cdbf3cab350b0e16d6d6f483625e4a1c404e3fd2913" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.104/dotnet-sdk-6.0.104-win-x86.zip", - "hash": "139f6952764354670df49766e43ccf4727fb4554617951f41a59ac346d3479232f4b472047246ed249f0a68c94c1a80af917ea83864a65008dfb9f1363044d42" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.4", - "version-display": "6.0.4", - "version-aspnetcoremodule": [ - "16.0.22081.4" - ], - "vs-version": "17.0.8, 17.1.4", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-arm.tar.gz", - "hash": "944bb52352ff7ba79867466117eaf6909847080574d15629c7149b27a4d1685ec2eb024e2dccc2e5ad2251b6143d2bc3c1597ecd668691ae719903887158062d" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-arm64.tar.gz", - "hash": "18ffa72b38dcd01bbfd9f656996e994dbcdb7b6b196771fc498bbaea774ad844f7fd5418487d0a5a7f83a76b3683f8913e22275bc25d66ee0c0d84ea4e279971" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-musl-arm.tar.gz", - "hash": "4b8d19c9f0637479b524517ed1cadc191f1851c1be22c212ffdc9ff738a77e11197822233fa0012f61c95a47c04978c7b0bb962268fb97134a81ea6268680c7c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-musl-arm64.tar.gz", - "hash": "f7c69af61947c6d5a6f5f91a1e3ec3cdcb20d37d0839ef47d6cdf5da13d8109479084363b826585395599d636f5df34f56f5f5751f7ee166a63790104f256ec7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-musl-x64.tar.gz", - "hash": "f54624306b74d9be0a670c2b1d465991b2c1ef67a4c216532fba9dc85f525a68d9ba6e1405945905dc834e073e676f0234d18edc5c9507d5b6c420bb2d073a40" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-linux-x64.tar.gz", - "hash": "eaff93db0a4cc0adc2fc54de5e9a6e4b0844398451c06bcf6b2867471b8ed4fd0528ad04fe7150aa5ed306d5e08a5e4219c6029b96da03ad2d1c58e7a0ddacaf" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-osx-arm64.tar.gz", - "hash": "9ff8ecc60f70d8cfa53396761610282358aa7bcbd3f013aedc639be7b8f502a8cb121777c7e8a0a7d64d74b99211751ea8a8c1819861b72ad11d80590ba9ed2b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-osx-x64.tar.gz", - "hash": "33b1b24496296242dd78714564e52e6be575f46d681a5093a0aca842aff5e29778cbf31259f11ce395fc9a2368fa6bfde2e12a074ccf310f9b661c0bdaf39d2d" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-win-arm64.zip", - "hash": "22b37ba8cc388385a0fa42b8ca89e449d139abdb141d3a28ef3d6b18fabe4c53be604091c764a50ab5628a1b1b9741af42edceda66a629d44ccf57100e8e6137" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-win-x64.exe", - "hash": "2ee7c786ad0b2ff0c562cfc0fdd8d7b2a03f37fe26ec1f17976b4f709d26e112e9d47da63f59fbd321964031165b9bac3cb22c05dd19ac5739e6d464f78af4ad" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-win-x64.zip", - "hash": "df8e443636ecf45f1ab3bb346ab2ca30dc1b70f3964623ed82f8e5accc3b696b52e5d403141775637c47f4441c5d86b65e271bcc23bc948af6553a716c8e91cf" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-win-x86.exe", - "hash": "f1431d89161afc8a00ddbc177529431f2fcddddaeb2b0d55fc0e062edc78ea9883ca331232aaac09c5ad6e6c0254d844166b3f5b969bc0516aff340a27d03a4c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/aspnetcore-runtime-6.0.4-win-x86.zip", - "hash": "c93a2117e0b3b2a663514ddf52ae3fd1491891fa3f43a5d2efb57615c8f870079ac3047df49a53e2dd55ea15cff6892efddcd98e965a91f442bcfe00af5b6edf" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.4/dotnet-hosting-6.0.4-win.exe", - "hash": "a03a798060f1a7044042e96e7f4134c6b090da5e3e6ea5acbe225dc979a4cbbf931db76306719e7029e09664f178e980d0f5d41f54e8deaa4d0febecb4634a4b", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.4", - "version-display": "6.0.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-arm64.exe", - "hash": "d6d83d7bce6b52a1bd1f6401e8ed0bd3f33a14aed51aca4a0a464d0f228073a79bf371536d8fc0b7e316077fb81a5767aeec5e3bb3da81f809f9b16673d8ee75" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-arm64.zip", - "hash": "eb72a69774961a643713d5268c675afeac9ec8d8a8eb2eaaf16d27dfd6d4c9a006f6e6cba444f7691927b627232d15a8e8f0a4bbfc1d369175ba3e5c4d51ca89" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-x64.exe", - "hash": "209e596edd7ab022241ab378e66703912974e7aa6168f287c9ce036fb31e58029ad304c8182b4b62a08e8d5ae4db74de277e298ced6d2746ef08da2352a2a252" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-x64.zip", - "hash": "1a11cd8ff4275791cbbe92afa3f29d080dd129c0cda58376928112f0abf106118925471de06ec6381b58fcb0dffe7b2850880f874e4402b449c69c66cb29e8ce" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-x86.exe", - "hash": "e3e52096d09782b35d6dfe15c8ed8eed978d7def198696f2e6f3ce7c83e7526b5e74955de2ca68ae94bbbd6c1d01d4faf2f4a5252c1e7c99b0746e2716a0a8e5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.4/windowsdesktop-runtime-6.0.4-win-x86.zip", - "hash": "59ea3b5e9f1dc6f995f6f491b1a57ad0b4649841cd65ab89537921c3fcc8f716d52612028c9e08395f3d769c157405c221c22a0ae2225c82b1bc1e1d5053d0c0" - } - ] - } - }, - { - "release-date": "2022-03-08", - "release-version": "6.0.3", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-24464", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24464" - }, - { - "cve-id": "CVE-2022-24512", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24512" - }, - { - "cve-id": "CVE-2020-8927", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-8927" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.3/6.0.3.md", - "runtime": { - "version": "6.0.3", - "version-display": "6.0.3", - "vs-version": "17.0.7, 17.1", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-arm.tar.gz", - "hash": "98f70499f75d8128e4817911be963d0cfe78f89955f3c78e55a6b589dbfab082ffd69832fc14786367391c38d8f674a071254167ac5a1ace99c4f213d29ab084" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-arm64.tar.gz", - "hash": "f0f9fb191054dea2e4151a86c3de1a11ce574cc843cde429850db0996c7df403dfa348a277f1af96f13fec718ae77f3be75379ed3829b027e561564ff22c7258" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-musl-arm.tar.gz", - "hash": "c3ba734dc2f815d767d87054f0cb0876776467f2af3fbed6ba457b05a66fe40a29079dc18845cbe359a3a8127d46ca9d899a9fda14ddc7ba72debd5d15dda7a8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-musl-arm64.tar.gz", - "hash": "58a8990c273041ad7ba133c57f6b1b986a8ff5b314e774cb36805c57f3e11ee8aa823cd03fd4c02dafa5847e5cd9760fdace46045e5ce4dd70965ff8731392f6" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-musl-x64.tar.gz", - "hash": "ad82ce8e1f670188d0d7f384546c88c963aaeccd91f9d0fcb3fe7cf5bfa972b8c9a7a4eaf8e1cdbb8a6ff4257a5f27e7ea4d33e6b0555acb33f8cb791a352290" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-linux-x64.tar.gz", - "hash": "083d9e6e72f0d8f175b341f5229277374e630c5358cfd3602fe611aeef59abec715edbe18d62135a5d13a650e99ef49f19b17e8c81663d0b5bee757519bec894" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-osx-arm64.pkg", - "hash": "c87b67d0656b9748e8db839b3731d3f66b46fe9fa128f93fe6f6d6b3eb0e4f84d44dd13245ab604916e8c93ce80432435d5372654d560f2d8c934bb6edcd4590" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-osx-arm64.tar.gz", - "hash": "1debd4acab3c6408c849323e6dfba28a626850c40f93a0debe46c54f0c0b39526f4118d5b2bcf0307efeba0bc2656a92187a685400095ae078227698a0aabfb3" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-osx-x64.pkg", - "hash": "846bb481e0ee3e1378d3e88ff6b29bef508536a0b26b7b9394986c03b1919d822becfa5e2a471cab0e0c627b4c82adc04c25747f3b25fc9a8dd2c7e517c77f28" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-osx-x64.tar.gz", - "hash": "98c457cbc0ac8f5f0acd7807bb45726b78e87d4f554fd30123cc8d9568b5341cc5bba16c8e4c85537ec4798d7e4d7f2f11701d2045b124f1b36bca75d80458e8" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-arm64.exe", - "hash": "122d97cf6394d8470efccb90ee0f4e14d38e14ff0fc81dc614479065036250c37f119857dd4febc389c1f7996c1277c538dc548bd4d7eeeabfc7650b2d1262d4" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-arm64.zip", - "hash": "e38f13f0504b6e39b0493b5360b6b1a3c62574bc74c64f0552ad780b56f1afba51ad4b7469f9ea5f1d560cf1b02a654e84e61d4c94140f69159a6d6f792cdf01" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-x64.exe", - "hash": "d06a29c5c4620f3975a68ea814b33e748eb61449536d8ba3f0c8c8b749bebf90c2956c9a3d6f7d34089d9c1a9c4fb9e4d068a1a7476982cf5d71e44eafa394bd" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-x64.zip", - "hash": "24bb230a3721a3ea8fbde9f6e648496124b4de0ecba6b58918fc3f7a5bde8d818415e46531dd1bfa399ed3847a7f519fc94cf4d41896ff77652b6a615b79f54e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-x86.exe", - "hash": "161282e9f3e315fffa35d8ad6aef5f12bcbb8734e5c5c00d4de1f754afd93659180c25de73ad131d0959525a3cc8960dfd8e3446e007ee9df94441359b044918" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.3/dotnet-runtime-6.0.3-win-x86.zip", - "hash": "ad85798c40e81ffa641f186876298ab028f05dc501fb8d7b35857ca03f34d0c46a1ec0e51d81918539231f561c0f6d5194ebdc4ae8fda73c6f209711f827ba58" - } - ] - }, - "sdk": { - "version": "6.0.201", - "version-display": "6.0.201", - "runtime-version": "6.0.3", - "vs-version": "17.1.1", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-arm.tar.gz", - "hash": "5a683430325a90dd1d8e0071a1868939fb01268f9eb389ca1dc40956fde6b9f45bec086553ad3333139e530dfe5afae48195bcdfec388b0b568989924a1f1dd7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-arm64.tar.gz", - "hash": "2ea443c27ab7ca9d566e4df0e842063642394fd22fe2a8620371171c8207ae6a4a72c8c54fc6af5b6b053be25cf9c09a74504f08b963e5bd84544619aed9afc2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-arm.tar.gz", - "hash": "80a7a34c1b0696c5ab9fb52920982fd529e93c09b1c1fc0222ddaae569ea488cdcff380fdede516a25a165b195d52c162733082af122b5c07191a900e5ca1e86" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-arm64.tar.gz", - "hash": "95cd26bcd4d312a6b88cdbbffd3154ad8e76ad313838ff386828b9d76f0536e32add86671ad967033c204b6c493b7a27591cc48726007a4cca1c7e0a9daab976" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-x64.tar.gz", - "hash": "6e39c14ce7b2e874105351f5a4d26eea91f9772bb302b39e0697db1e776680ae37c199b820763ce8ff25a2ff84aac45e0f282919e0d5a2fcd3d7dd8d1b2a94ea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-x64.tar.gz", - "hash": "a4d96b6ca2abb7d71cc2c64282f9bd07cedc52c03d8d6668346ae0cd33a9a670d7185ab0037c8f0ecd6c212141038ed9ea9b19a188d1df2aae10b2683ce818ce" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-arm64.pkg", - "hash": "482dfbb627b8278c8e7c100830f1378775b6ca7426df8ccba36281e4e7e5f6a70f7180d46948216b76ca66a312fe85c88ddb8b53189c5cd2471087c19e647555" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-arm64.tar.gz", - "hash": "0796a81339788fbc160885548983889dcffd26a5c0ac935b497b290ae99920386f3929cebfbef9bb22f644a207ba329cf8b90ffe7bbb49d1d99d0d8a05ce50c9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-x64.pkg", - "hash": "41bef6c3bfd21d04b5dfca0fcb569b17cc5f45ea45112e92c3443536e881f135a036f347796eff372bc60390f9f836c4fbe8a8df7a85a4bec7c3db1e302521cc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-x64.tar.gz", - "hash": "1df27ca5a1db1a8712acd95083aa00ec7b266618770e164d6460d0cf781b3643a7365ef35232140c83b588f7aa4e2d7e5f5b6d627f1851b2d0ec197172f9fb4d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-arm64.exe", - "hash": "649c5452801c48cff8e31370035baaea70681737375ddec115d829034413fb3ddafc6848565584cc626affaf7d8c09f3b8de85e7a380de7089c75b0febdb7182" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-arm64.zip", - "hash": "5fc62e24c804e315eeaeeaf1bc5d2a283bfb4f3e122405661dd1002f3b02b7ba3b8cbdb0e35e3eacc5fdbe901a546a07972a55b5700dffa07fda33e9f3fd051b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x64.exe", - "hash": "7fcd52d520a82c8b2dedc6e3074e2201643ea4d8897b521bfa9e5e9af39a2eadcae9836cc5e4f6707e1077bbeab67159735b67fedd87bd8de3953b94e81ba1a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x64.zip", - "hash": "8b7e16202cd67f8a2eac251b33fcb9099bc8113c5d76a0eff99c74a768dd2cda5db7c70aa3224e9731d94b5d7f2c46257f64b6a4a613679266bf16a733f79e01" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x86.exe", - "hash": "9300a674529152d8457d89f657084b8ac4b001bae1b5d7ffd3d5c27c1e82e4a80b84946971601ff86748f422cdaf6bbd66d12bb0112dc248b83f369b1dba9ae9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x86.zip", - "hash": "bb42be5cb431d27ac1414a977eb0da7035b651643feb452deb0c6c17f23dbbfd5c7c2bf54a8c418bcaf08e8b496dcb000af60b2e2de343b3f643b919c15a693a" - } - ] - }, - "sdks": [ - { - "version": "6.0.201", - "version-display": "6.0.201", - "runtime-version": "6.0.3", - "vs-version": "17.1.1", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-arm.tar.gz", - "hash": "5a683430325a90dd1d8e0071a1868939fb01268f9eb389ca1dc40956fde6b9f45bec086553ad3333139e530dfe5afae48195bcdfec388b0b568989924a1f1dd7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-arm64.tar.gz", - "hash": "2ea443c27ab7ca9d566e4df0e842063642394fd22fe2a8620371171c8207ae6a4a72c8c54fc6af5b6b053be25cf9c09a74504f08b963e5bd84544619aed9afc2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-arm.tar.gz", - "hash": "80a7a34c1b0696c5ab9fb52920982fd529e93c09b1c1fc0222ddaae569ea488cdcff380fdede516a25a165b195d52c162733082af122b5c07191a900e5ca1e86" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-arm64.tar.gz", - "hash": "95cd26bcd4d312a6b88cdbbffd3154ad8e76ad313838ff386828b9d76f0536e32add86671ad967033c204b6c493b7a27591cc48726007a4cca1c7e0a9daab976" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-musl-x64.tar.gz", - "hash": "6e39c14ce7b2e874105351f5a4d26eea91f9772bb302b39e0697db1e776680ae37c199b820763ce8ff25a2ff84aac45e0f282919e0d5a2fcd3d7dd8d1b2a94ea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-linux-x64.tar.gz", - "hash": "a4d96b6ca2abb7d71cc2c64282f9bd07cedc52c03d8d6668346ae0cd33a9a670d7185ab0037c8f0ecd6c212141038ed9ea9b19a188d1df2aae10b2683ce818ce" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-arm64.pkg", - "hash": "482dfbb627b8278c8e7c100830f1378775b6ca7426df8ccba36281e4e7e5f6a70f7180d46948216b76ca66a312fe85c88ddb8b53189c5cd2471087c19e647555" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-arm64.tar.gz", - "hash": "0796a81339788fbc160885548983889dcffd26a5c0ac935b497b290ae99920386f3929cebfbef9bb22f644a207ba329cf8b90ffe7bbb49d1d99d0d8a05ce50c9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-x64.pkg", - "hash": "41bef6c3bfd21d04b5dfca0fcb569b17cc5f45ea45112e92c3443536e881f135a036f347796eff372bc60390f9f836c4fbe8a8df7a85a4bec7c3db1e302521cc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-osx-x64.tar.gz", - "hash": "1df27ca5a1db1a8712acd95083aa00ec7b266618770e164d6460d0cf781b3643a7365ef35232140c83b588f7aa4e2d7e5f5b6d627f1851b2d0ec197172f9fb4d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-arm64.exe", - "hash": "649c5452801c48cff8e31370035baaea70681737375ddec115d829034413fb3ddafc6848565584cc626affaf7d8c09f3b8de85e7a380de7089c75b0febdb7182" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-arm64.zip", - "hash": "5fc62e24c804e315eeaeeaf1bc5d2a283bfb4f3e122405661dd1002f3b02b7ba3b8cbdb0e35e3eacc5fdbe901a546a07972a55b5700dffa07fda33e9f3fd051b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x64.exe", - "hash": "7fcd52d520a82c8b2dedc6e3074e2201643ea4d8897b521bfa9e5e9af39a2eadcae9836cc5e4f6707e1077bbeab67159735b67fedd87bd8de3953b94e81ba1a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x64.zip", - "hash": "8b7e16202cd67f8a2eac251b33fcb9099bc8113c5d76a0eff99c74a768dd2cda5db7c70aa3224e9731d94b5d7f2c46257f64b6a4a613679266bf16a733f79e01" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x86.exe", - "hash": "9300a674529152d8457d89f657084b8ac4b001bae1b5d7ffd3d5c27c1e82e4a80b84946971601ff86748f422cdaf6bbd66d12bb0112dc248b83f369b1dba9ae9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.201/dotnet-sdk-6.0.201-win-x86.zip", - "hash": "bb42be5cb431d27ac1414a977eb0da7035b651643feb452deb0c6c17f23dbbfd5c7c2bf54a8c418bcaf08e8b496dcb000af60b2e2de343b3f643b919c15a693a" - } - ] - }, - { - "version": "6.0.103", - "version-display": "6.0.103", - "runtime-version": "6.0.3", - "vs-version": "17.0.7", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-arm.tar.gz", - "hash": "e1ad50651dbd80cd9a089a5032f32c110b47b74935813aa3cbd8a8473ef65f139e5bed61f4952c9ff4ff95fff11c51a12095dd33e228733208222c13c95034c5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-arm64.tar.gz", - "hash": "e9efdbbb36a064b2cddcadc7b8c3a92dabc0da5c9491a6a39580720739d9a7517fee8e9ea2073d2dbfc91685f093a950bcb80713ba77413da07c17cddbbbfe55" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-musl-arm.tar.gz", - "hash": "f16673dfcecfff028781e507e6ed39f8fea9bb168a4afba6d07983d4d9f8e9447d40752fab722cf79f4f6224554c77be484144c019851631a1b51fef2d0d4c35" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-musl-arm64.tar.gz", - "hash": "8d5fca2760674f1e1b0dd44c0929464b785d877887c64d73b1627b84c1409c5050efd9255039a6b6d7c2c9757a824aadebbd8ee4927a05015dce98627a4e66ad" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-musl-x64.tar.gz", - "hash": "b61f6ad200d13d38b87c9a3588db9ca20cfe88092117941a5a18ddc76515a7e95de58f4abf4d787df4c0213997eff6920aac2750466aa5f789e276f5eb1a8f56" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-linux-x64.tar.gz", - "hash": "359855c21c602315c254651b975625670dbde91cf09b7e05ae9a7542d509d0d9885bd3c07f1343e9a117afe2872f18ca8a3d590deb1a6cdf347e97a72c464b51" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-osx-arm64.pkg", - "hash": "01f4df285d8446e8593846f124afa7a1b4f860002393572c0b97326e96467d1d02629d93f61b51a5e2a98c8b312fc0881eaa93035e81dca82cdacbbe3c96c259" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-osx-arm64.tar.gz", - "hash": "a14547f3538ac5f859b138b8d0674fba1ea79ed12f5daf9e7cc1eeb41519610a5ffd353fd8ca5fd3284ed6594becb2909bf4616633ea315354a66e15345e2a7e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-osx-x64.pkg", - "hash": "6d77d547ba1d72784f00945dac80a6e576949eea2a58581c42f2fb592ebca4b6cabb12e1b44e0710683115279a06f2db7852c25c68b3c08fd43d4f1ff8a446ec" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-osx-x64.tar.gz", - "hash": "5bbfc0cd384c978d427add5058edbed2bc7c53fec15416f228aa09b66bba0a1580b992b8350490036df75f9098ed68f28910713af8cdfa0ad58572471caa4cd8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-arm64.exe", - "hash": "ab5e711f78b54548f3e1f414a7e2fa872de01115da56d291ad255f52fac33694ba92511f9dc942061e720075a046071e531849be541b787f69f375a471ec56ce" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-arm64.zip", - "hash": "15bc2abc93df11adae1ea46f25f2ada891cd4bea0c5b7c468e28b2dc3f47cc0b8cacd13ea8e5d9fdbefecc075c414eb66cc78f08c7d31fc549a1e37e53b876ce" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-x64.exe", - "hash": "483fe525aae813ff93a034d4672e0cc8eff2376ea17c9ec35804110b9790f1c8ac3cacddd46894ad6214e7965a8d34c5ea2de0e60164da8d90781cb3634f8c3d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-x64.zip", - "hash": "55ab27e22b04f37ef86d8e239885e48fb0148a362c028b4969410938fa469a166e3fba9f82325942ab0b21c4cbc2b5a4dd2756742c8ec5257f449850ccf62317" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-x86.exe", - "hash": "0cc9165b4a840d5f12046291e548c45e715f604f2c0106854b7154016ae077e136d8a70080ad1975527509cea23f1d33f1e41435ead2e4f4d0a4e3ec47ba8cd2" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.103/dotnet-sdk-6.0.103-win-x86.zip", - "hash": "5fe44e77c05f55c2b514470744236150682d427f1723e26484f1f170dc2b78b06589c9bf73088588bd0b18aa6451043b10751f64d5f18a81e18dc1a05d6b2614" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.3", - "version-display": "6.0.3", - "version-aspnetcoremodule": [ - "16.0.22055.3" - ], - "vs-version": "17.0.7, 17.1", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-arm.tar.gz", - "hash": "7d3ca660a6a64c79d5c49c1ced1123dd2aed1cb6b8067627e640d81737f0a946ccfe3d5169d6cc797b6ec17821ed465a66620cdb1eb43470b403efcb9734a430" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-arm64.tar.gz", - "hash": "745586b64d3e01f856c366821f6fb8ca97c55b2a90ba36d528fdf99c98938574805153e7d4fff0560afe8382bea14b35ddeba391a2dc2328285f02e125c9b702" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-musl-arm.tar.gz", - "hash": "396ab8d31687a4169e146b84e34f862bcfa177814245dbc2061daab9a6e98a34ef6f17599070dca81eb768b31d55cbfba06482ec64d0e574970f0e8da3450ac7" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-musl-arm64.tar.gz", - "hash": "3b51831c58e070f799eccaa7b44aade14541d2f26e9929e11f303f250b62b6e798ed93d4063617d6a96bedb14c8f7c30b2ebd6e20c0d5bf940484988df037916" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-musl-x64.tar.gz", - "hash": "9d334a62e8f591f4cac70b970b20a45d7557a75aa1bccc34891ee4ea9a0ae9d7b046b3dd8ba4a922398198eb7275f9f50177fe8287f2dac7e99a883a448b63d1" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-linux-x64.tar.gz", - "hash": "9ea54220468d922ef2c40433c4b8c70df6c60d8ea63a3ac1ff5e5ce712606ae5cfe1e57d321b87eff1b5dc34d7823a4b4b964180587383f22d9a0ff5bb3a8c88" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-osx-arm64.tar.gz", - "hash": "03d1d4e8a8370856120e045ed4a83b3383d00fb56b5fdaf7db0de8bab5e3de60d03c02deaed6f72bde0d6b0e12511fe1202c4e2c25fdeeb489ad61a5902d71d3" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-osx-x64.tar.gz", - "hash": "bda83cf36fc9aa62ff3e16a26b5f8f37efa3221ab826467fe26f3072517a428c64e44bc52f8a90f5c77bc60eeeddb8c3d59d2a509999edce3b51b835dd7edf83" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-win-arm64.zip", - "hash": "3cd0823802852162dabf31553ce964c0bd3130fc85cbae295b01d4052fe912d7690183885e4ea238267d81172cff0cc76941698a31c775867b2ba54345495dec" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-win-x64.exe", - "hash": "677e6c32197a3e8d3dbdc0c27621006db3a4f484a40ed417d932be3b1d933f51429bf225a9f462793cd9903fa8b4e70f3762ea5df6517e42b88268877bad02ed" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-win-x64.zip", - "hash": "aa3f46d3049dac94ea08cfa6145fd3288378b870e73b6163d5a6fd5f189b206a94156f6526efc7ca56af754f5a1191539a8cf1863dd15d7e3292175c83de7054" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-win-x86.exe", - "hash": "2d5aa3cd1e57969ca327afd428f7ce06a5cfb54e650afd65e075dfd0a44b1e23e5c52ea78437a9e0528d056ec199abf44a521089ca021fa46893a0d8405dfbf5" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/aspnetcore-runtime-6.0.3-win-x86.zip", - "hash": "e2806164a381e38b0b932feaea2aafc90e9afeafcc0dcf5b2393b4399f73ba023324219c67ed27e38e3a8db91bb634a6616b98475716800526c8774b51380226" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.3/dotnet-hosting-6.0.3-win.exe", - "hash": "1c52efadd3792f2d8a595400add3ad7744e9b6ab94d40df0844841a90b8175ea4eb7b54c24c5d700e537533870e1cb0f7277bc4649cc707d236c0af0d4638aca", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.3", - "version-display": "6.0.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.3/windowsdesktop-runtime-6.0.3-win-arm64.exe", - "hash": "87724837f49c1ab2f255f3c33c94858ba65ed642ad781f7d66b20f23dfe9bdc22068db5ccf6780bd5a9beadf8d7021a54abf1b69c57801ef3d4f815ed3ae1c35" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.3/windowsdesktop-runtime-6.0.3-win-x64.exe", - "hash": "089cb2d98057f6193e2ec9aeda28dd0081b6f2c4b13c6d037903f35703fd84148308a85d0e233d17258bd48d44ce3698e876b858fbb241812d5e437524b34b2f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.3/windowsdesktop-runtime-6.0.3-win-x86.exe", - "hash": "ec57c188acefd1f9ff284e9bdee9c978f88651069b7c7a4a7503e2343fd017ab6967d9a4d1b4afd4532e7acc94d6e900aa0b5805a7c3788068a7db1f740a877b" - } - ] - } - }, - { - "release-date": "2022-02-08", - "release-version": "6.0.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-21986", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21986" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.2/6.0.2.md", - "runtime": { - "version": "6.0.2", - "version-display": "6.0.2", - "vs-version": "17.1.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-arm.tar.gz", - "hash": "0628b24971e05ac69c39a6526f6ef90ef65e72071a4be430e028958c33e484e7b95584a4a23716dd8eb70592b8b29266bfbd18c730f39aad8556ee87ca316aa7" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-arm64.tar.gz", - "hash": "5cca54e18332b3297960f21a1b523382e2e7ad6fff477548ac0964451a7db5fadb2acda7cc39bceab184250bd9f81f84162aff4a2ec1d2c4ad278985ed157f4d" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-musl-arm.tar.gz", - "hash": "a9b804e1925d93d32aa0913fea7ce662a1e53eacbc8bd5da7fb6d9c2723d7f495f3134ceaef9f94a7a1a1b689a84080cf89273c6c314666d3e70465dc7a8ba87" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-musl-arm64.tar.gz", - "hash": "3b2943a5d0c416814cf4427515638f9abe0e09444d34c8535a4dd3caeb10900c332ebdf128153c1fc8448f77190b0670c40566d2564192732f21accf180fe546" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-musl-x64.tar.gz", - "hash": "fd298bb310f86969f88807ea907cb20a38d6ab4b24493800bdf026933634a5145aff076dbfe9acb3ab6aa3a48747eca3149e05334847871889a8312e6e8d706f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-linux-x64.tar.gz", - "hash": "fa42a686122655a2a7dedc2415bdd618ff06b0a57132d7d98ad79f25c40f3f9edb953ef1ac93fa1a1ff64cffb4c5276dd7586ba5d16c5a7960913e1c5dd646a4" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-osx-arm64.pkg", - "hash": "726761d6794ceec8ab9f21482963e1cc76b851754e7572fc6d5d21941c21a690976fb2d62434ea1decdc5727659c9a51054a53647540250acfb504e23725c230" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-osx-arm64.tar.gz", - "hash": "baca2588b25cddaee87e45fd347c5e305dc68604045827213db18221e20f545d81824f411502ce29c93e59094e0f18d66eaa6212c4dd2a1b696ace543adcc0d2" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-osx-x64.pkg", - "hash": "b611b0819b99bb46b7cdc5fbbf644ea0a5eaea7212e314a2024c7817bc949d9f37e4703eea9c7de240a96e5c5e4b9fab3ee0dd1986d0e08192e34d930924c79d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-osx-x64.tar.gz", - "hash": "7b86ce31759717eab5cfc6ca36c57ed080e3f50817f8057f4d43afdd28519f0231445d89274095af5cc5d3ee26e9f2fcbc4187f749b46edc64c793a15cd6b26f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-arm64.exe", - "hash": "efc7ad7849c3c80b145390edec4dbaa639878727a90def4f169d5eebebaec087ba5e62b30de08c25a209ccfccd4ca4569bc11f96f53efba54dce2fe15291d3e5" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-arm64.zip", - "hash": "350e84f404d01cacf7660a1cfed6ac23b2bed26a9db4a378eac5007672ed5e73e0b92641cbb6b7944fe347300032eff388b25584f737586f44ab1dd3384a99bc" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-x64.exe", - "hash": "b41ac08e8e90ce01fc7d89319a26d184393fdcb925763c90bf536bfbb7257a40548f8f060c538abe32041d0c82e693d4a263e93724c132d420e04bf9c4e67da8" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-x64.zip", - "hash": "420e07a6df3bdbf209551cf1e563a5e2c1112ec06752bcc4c254c51e4f23ad50924a20a09e4061aa7802cb1d0a0c516327ef9c87974cd7cc31f00da7190f9f56" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-x86.exe", - "hash": "b4614ee4507a7c30e7a01a385446c19fe0d252ebf8902456af686da68870dacfb6f467699ef211a2d4a6db0dd9d5aeca5f9d4b383ea65119b9297b803a819270" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.2/dotnet-runtime-6.0.2-win-x86.zip", - "hash": "19c25248a883cd30796791cad3e10f206ed90098971408a0a03924c4efa65d49f7f8d8ac316cd94c29c5478d126da059115dcdd973d16f9cf14404cc083a0e72" - } - ] - }, - "sdk": { - "version": "6.0.200", - "version-display": "6.0.200", - "runtime-version": "6.0.2", - "vs-version": "17.1.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-arm.tar.gz", - "hash": "c2950d5da671a50c955d07997b288c02076b1d69014d3ac3f5941179e29a67b4d56fc5acbde85fe13ffd46efa95ead05b39d90dc577d2a668f637e6a9547944a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-arm64.tar.gz", - "hash": "4e2b8f65f4cd9d1e54233b377e7efef5202eee3fa5e4592131ff03ecab032bfccdc91f4e8c806064fb769c48f946634bf1e420afecd7fcd2d981d40eeec5a881" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-arm.tar.gz", - "hash": "ff85504645e33e34c3bef849f8257320d9aef3b1d3f961b2ad49a7d9c1e082bc219d5550cfc3e3755e1dd5bfa84880267b06c3c52512d3f7fc160c87874f2a0c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-arm64.tar.gz", - "hash": "395d1432f32c8c471614d0651bbe761160d5b559ba7e93167b914a8e1ea9f5c699feeaeb817b29cb0123c498000f2e40901679eee6dc91694645ff19d67a2b8f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-x64.tar.gz", - "hash": "a715084395d5a280f1a058b9e6d1064921e1114c2aec551f081d93c83b710ee1289b1790030ebbbbb704776afb4a94ada75de9ddab44ff62979c14e307aacf3f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-x64.tar.gz", - "hash": "334f3ea4bfeb736bed61c5896796a09d640b0ae74605c514edc5869c395befb7cfc795b58c922f14560e7d41c89c073c62ed01eefc6d9f13aa916e3478949c24" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-arm64.pkg", - "hash": "db4d9555725dcdf84d1af63868a0a78b8b565dcce636a7ac2e79e11b69d9a347f1fc54e93df4e0da4b7dccb5cd118113f2da373e682d5d3a10f06aaf7fbaa081" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-arm64.tar.gz", - "hash": "29ff786f9ccccc66a7bf6919aa552a0bcbb9c945f0b99778af5da2aecc4cf712a927fc28bb6c7da257d5ea91a82cf992f30f0033832f1be66ebb5a85478361a6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-x64.pkg", - "hash": "ebaa048f50d320ef1bb0e423574806b0392a34169fdb331eb7cd9132452ea3c272f5632b7306f06b3dd5a3b0944480789fc9ca2985564b65e021eff380dbd0bd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-x64.tar.gz", - "hash": "4dc3414c0d017d3f9bc1c3cde5dbf0341a6c5c150f8800ef56860700795a40afa375312c4e3057546fb7664e8d0acd773123698d52b790f5fb82325bac3f1afc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-arm64.exe", - "hash": "51713d64abeeb59338d413393afa05785859559d7931f74ba7f304ccc11899ab157b3b341aceb8b0a1ac8258b8cf6f5188d69a1683cb760450ca0c3e2f0200e6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-arm64.zip", - "hash": "ae467e44de46f94bd7b0aa1014d91f03aa32c79fbaed2ad47573348ae9fddf6e7c9bc95d07c3ee35afed6aeee478c44149faa12191f42b9317fc7f350a90e54f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x64.exe", - "hash": "101de40bf82fb8e17e966e788b7c80f560fa6eb55dce98d959f3671092cf4be1e659d9d11debc6fd7d3b6f09f5c5d5c3adf55ee79a038071bb60e144211180eb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x64.zip", - "hash": "442ea9bb696005a9646aa02e10b0b09809c5b70acd91b08fd489aa8915f8b2a925d73843a742acb8f1068363d3db96137017ca478a6a69ea28b2f17a411eb5fe" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x86.exe", - "hash": "b25aba0a2662cfb16124741a0ae4c14b279f9056ffb2f7802463238a0508e0e33c5d912664fd1a05e3f7d21ec02527b480fd5aaeed3d7e3acb0f3bf323ca73dd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x86.zip", - "hash": "bb6dad05e6bb2daa857caa5b059666d635c5e652e2c63e4775c6a2f392e239e00ea3bf042e4c124362bd9ef46e10e8b5bdcf8d889f3a80cf1b339a1bb58cf024" - } - ] - }, - "sdks": [ - { - "version": "6.0.200", - "version-display": "6.0.200", - "runtime-version": "6.0.2", - "vs-version": "17.1.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.1)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-arm.tar.gz", - "hash": "c2950d5da671a50c955d07997b288c02076b1d69014d3ac3f5941179e29a67b4d56fc5acbde85fe13ffd46efa95ead05b39d90dc577d2a668f637e6a9547944a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-arm64.tar.gz", - "hash": "4e2b8f65f4cd9d1e54233b377e7efef5202eee3fa5e4592131ff03ecab032bfccdc91f4e8c806064fb769c48f946634bf1e420afecd7fcd2d981d40eeec5a881" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-arm.tar.gz", - "hash": "ff85504645e33e34c3bef849f8257320d9aef3b1d3f961b2ad49a7d9c1e082bc219d5550cfc3e3755e1dd5bfa84880267b06c3c52512d3f7fc160c87874f2a0c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-arm64.tar.gz", - "hash": "395d1432f32c8c471614d0651bbe761160d5b559ba7e93167b914a8e1ea9f5c699feeaeb817b29cb0123c498000f2e40901679eee6dc91694645ff19d67a2b8f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-musl-x64.tar.gz", - "hash": "a715084395d5a280f1a058b9e6d1064921e1114c2aec551f081d93c83b710ee1289b1790030ebbbbb704776afb4a94ada75de9ddab44ff62979c14e307aacf3f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-linux-x64.tar.gz", - "hash": "334f3ea4bfeb736bed61c5896796a09d640b0ae74605c514edc5869c395befb7cfc795b58c922f14560e7d41c89c073c62ed01eefc6d9f13aa916e3478949c24" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-arm64.pkg", - "hash": "db4d9555725dcdf84d1af63868a0a78b8b565dcce636a7ac2e79e11b69d9a347f1fc54e93df4e0da4b7dccb5cd118113f2da373e682d5d3a10f06aaf7fbaa081" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-arm64.tar.gz", - "hash": "29ff786f9ccccc66a7bf6919aa552a0bcbb9c945f0b99778af5da2aecc4cf712a927fc28bb6c7da257d5ea91a82cf992f30f0033832f1be66ebb5a85478361a6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-x64.pkg", - "hash": "ebaa048f50d320ef1bb0e423574806b0392a34169fdb331eb7cd9132452ea3c272f5632b7306f06b3dd5a3b0944480789fc9ca2985564b65e021eff380dbd0bd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-osx-x64.tar.gz", - "hash": "4dc3414c0d017d3f9bc1c3cde5dbf0341a6c5c150f8800ef56860700795a40afa375312c4e3057546fb7664e8d0acd773123698d52b790f5fb82325bac3f1afc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-arm64.exe", - "hash": "51713d64abeeb59338d413393afa05785859559d7931f74ba7f304ccc11899ab157b3b341aceb8b0a1ac8258b8cf6f5188d69a1683cb760450ca0c3e2f0200e6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-arm64.zip", - "hash": "ae467e44de46f94bd7b0aa1014d91f03aa32c79fbaed2ad47573348ae9fddf6e7c9bc95d07c3ee35afed6aeee478c44149faa12191f42b9317fc7f350a90e54f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x64.exe", - "hash": "101de40bf82fb8e17e966e788b7c80f560fa6eb55dce98d959f3671092cf4be1e659d9d11debc6fd7d3b6f09f5c5d5c3adf55ee79a038071bb60e144211180eb" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x64.zip", - "hash": "442ea9bb696005a9646aa02e10b0b09809c5b70acd91b08fd489aa8915f8b2a925d73843a742acb8f1068363d3db96137017ca478a6a69ea28b2f17a411eb5fe" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x86.exe", - "hash": "b25aba0a2662cfb16124741a0ae4c14b279f9056ffb2f7802463238a0508e0e33c5d912664fd1a05e3f7d21ec02527b480fd5aaeed3d7e3acb0f3bf323ca73dd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.200/dotnet-sdk-6.0.200-win-x86.zip", - "hash": "bb6dad05e6bb2daa857caa5b059666d635c5e652e2c63e4775c6a2f392e239e00ea3bf042e4c124362bd9ef46e10e8b5bdcf8d889f3a80cf1b339a1bb58cf024" - } - ] - }, - { - "version": "6.0.102", - "version-display": "6.0.102", - "runtime-version": "6.0.2", - "vs-version": "17.0.6", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-arm.tar.gz", - "hash": "a72a0e81c62478b0dc662ef0aaeb7f96e7dd534e90b3ac1bdab1ca98dd93a4605881dba6e9ed2315781fdf71f5b33acb1aa5e28090c7a1693405bebed5853094" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-arm64.tar.gz", - "hash": "790cbf322ca8fed32eaf574f19d0bdc05656c5a88a65aa4dba8269cfce1443cd7cdeecdd3a40e353c368f055490b70592ca7f15f981a66c5b3a9517d0b09e4cb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-musl-arm.tar.gz", - "hash": "b5fe2f9b29de220d94ecfd23036c89d046c71edc8aa6918f2f9c5543d20e9537add15aaa941f632e0c25562b29b1ef061a4887623b0a13ae65d20e8a9ff136ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-musl-arm64.tar.gz", - "hash": "d47657df5640016cf84479ff1f895cbb03e6b0811c71fa73b6769c6a1e55ad2a9b130c759fdfa634367e906de12ab56cf6ab185168b3d2e396b613a4c065afb7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-musl-x64.tar.gz", - "hash": "921ada7b90a87a06dfe5353defcfff0337b696a246daf7898802342f45c3b5ffa03ab8c0edb3cb6f0e0971b533457f41e96fe7655f94f2ee8b6292b0fe9c8fcf" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-linux-x64.tar.gz", - "hash": "edd79ebad3327032ea0aaa8504c14e3270050bb459b098202676776b41a3a1d282aaefd1e5e8aa09ef7f7cf7c4601c4783a57112ff6e3d427507e8eec2bfb748" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-osx-arm64.pkg", - "hash": "e4e2738a87ad097b1e5f6eb7b7526d713ba80a479e545c52ddac8413db026f7bb611e2803d4ae7a49780c7d8479c16533723f4f6b2f7b291312ffcb915388c61" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-osx-arm64.tar.gz", - "hash": "85b7208cb19fc91a75a4a447065d09069ff007974ed3543848345710b55d29e343e3f72bccae821da5b18c2b7c5e7901bed26a39501f6baa0fa1e54549045627" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-osx-x64.pkg", - "hash": "5bdd536faf05b54f1252106856b26ee725c747c794075877d75f423449e68c4505cbe6e037ed6c9737772d2fe6c4a6945fee69f9124c17e84e86ed78bbd693cc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-osx-x64.tar.gz", - "hash": "2306e62c58eee6e568fd1993ce559b68b0f35be88bf6896a3f60c1e53a65c2dd32d6e107681195fd27758c46caace3a2694e9d4c3b8ae0eb43a896a6f48b3af8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-arm64.exe", - "hash": "d52b51c41f9cd7e2fb614cc043f54b83572469f3c13ad11d48117c921d6ab8f78526525631187cf13972893541cbd70ab4d48d53c98f76bee3e6acd6eae34aa7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-arm64.zip", - "hash": "61494b452c9d09ba8db584d32166777e75cde7a2091ae862d854cac417f84b164192c88ef8aeb28315411b0e64e3a0661a8a10e6652d2df238e76c66420ce015" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-x64.exe", - "hash": "5c999a3871473d1a5bb767f381d8fb216571955f59d93e9e579a3ef415906c2fc731857eb8faee4fbf47570c4eaaa8dc2de39553492f4e8d000ec3d12686b0fe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-x64.zip", - "hash": "df6df12efee231848a993c3d96210b40134e900e6cdc5f6c2c19e55cdeb52c1130f8a217790f016a9d9371d199e75188da6f4d5c9e613d74643fb7a5899c1948" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-x86.exe", - "hash": "dc979f055fbbda1badcfb0bf6e01924b79703fc20c98d85a6872a9585a5b1259baab4a0b186071eb16e6723cf59ecfe111a981d7d8ce4e8a92defa8299010e5b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.102/dotnet-sdk-6.0.102-win-x86.zip", - "hash": "c00fc0897053bf44626f4e86c0fe918a34744a50f6a25a93599c6e3e73fce80a13fbecb088c9ddc8fe623158aa58f4d4d2be53080c9d1d3dc2b231f3e0834da7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.2", - "version-display": "6.0.2", - "version-aspnetcoremodule": [ - "16.0.22015.2" - ], - "vs-version": "17.1.0", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-arm.tar.gz", - "hash": "5e9619f839da39c46f888493d761af6de1c02bdacb0ba47025ba367d9d08b230d2c85d75d6e3cf5045a23a3b6029d4697f671ce0c64f9e4fd8a79813b90a2727" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-arm64.tar.gz", - "hash": "00ecdb4343d6f42861157aaef7d892bb3d0e0c0ccd8035305708aaf6bf7095fd6daea2e80cf4fa773aad063d6e510e70cd84d6c1efbd2e3555af6cda0f4b5d31" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-musl-arm.tar.gz", - "hash": "d693c2fbd952e7a1e53943acb7af91895b1dde405f7b66c689da675de39140cf20460cabd27382ea1b73d2fc17d1b04985447d2dd0992a50ba7fbc22899d1a9e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-musl-arm64.tar.gz", - "hash": "c1009ef634f1103bbb89427bf25b541f50670c9817cc0d36fbf854de91291a5360abe338e0f627cb05ec377f792876a8e7c39a5585ec47892024fc0b12c9d295" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-musl-x64.tar.gz", - "hash": "8fb985bf79039cb1848604f08976ad82ff9582b0379cc7047f5bc95fa9e2a50f88b608efdb1b39d626b5e2a4615e38bee720a83f2d263f4dfb6716e65c74fa73" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-linux-x64.tar.gz", - "hash": "190959576342542bfe51c48808011236e86dcb12779c8e9e444a71f1b778302972ab291adce0c185f6b9790b11867173934968ed88ccb9530266faaa1a05829b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-osx-arm64.tar.gz", - "hash": "a47717e2655413c7db90a9e33894183222855078af277c06630bf6101ada2eac31a8d3aef7e9b5d1d75bf8a6548752f3c4532bbb84f49946899e8ae25949a753" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-osx-x64.tar.gz", - "hash": "12ccc0cf1e05cdce5e052b0d60db61fe59bcdc7e07c15465c22caa7604e9b16b8e51f502abca0ca0bfcf000ac4d74e64aae5577685a238af87f12718ec75fca8" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-win-arm64.zip", - "hash": "209b3b15058ce908967d11a51cecb468d526d715e9863c07f12582138176739b0dc09bb8eb063c10f1161183ba003d6228aba6a231d2b2ce4fcc402cd4befe4e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-win-x64.exe", - "hash": "04c540ef795318255dd5ee8d3b90d0da855180d0d576c3a406efc9396daea989359b9059acc88409eaa554d0804097f9669ab1890f9e29f55ca65a33417ea930" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-win-x64.zip", - "hash": "3d1869ada5816df75cd336798278609b08fcc878459ad6fb02f4eabe0c20329d8d7605672404ea77440b55855b4c2d03f12fb39e8d0ddc0d919d49c2fa113aaa" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-win-x86.exe", - "hash": "d317c6be4b3bcf483a8394f9c6c21dc98e39eb55ecaed78bb9581ae46ba0425352609604f4e1666ac1301af4b961c587858e10123b076fe020f127352ca1ced5" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/aspnetcore-runtime-6.0.2-win-x86.zip", - "hash": "70a5ae766bff7030c87106cdad9de6474bb9965a6774629f16205a04db0140277995a6cbb2cf9d1bb27c5adfb9162758518c31a8b1f9c86163177acdcaeb3772" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.2/dotnet-hosting-6.0.2-win.exe", - "hash": "fb80d1763ac26077ddf4dea41d4d59515792cfef60a1ea580cf53cceb61abc536826fa1bc477a7b8c715fb10262ea14946113f0b9eceba3fd81befdc28aa8169", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.2", - "version-display": "6.0.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.2/windowsdesktop-runtime-6.0.2-win-arm64.exe", - "hash": "de3fbb4cafb010590e7658c5f3d5aa13e93bf399d205f610cf3b78208a3aa463ec341cd26c3d40da4e159b7fba1096547d6f5bdfd5298e52d67947555d04a94d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.2/windowsdesktop-runtime-6.0.2-win-x64.exe", - "hash": "3bbc786c0bc25074ce430a5c7e2d8257888d21128d4c0a905b772fbc12a1e2053feb57e3d9535e7825d5bcc93440821a5264c91ccab41d6b791142b39f896187" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.2/windowsdesktop-runtime-6.0.2-win-x86.exe", - "hash": "741031b9a2348bb9abb65c85b6728b6d67d36583503cf07af32c5a7af105161d5556543e049eb99ef5c58fefe6d329c1a38c6cf1f2c85ef4b2918c79586e597b" - } - ] - } - }, - { - "release-date": "2021-12-14", - "release-version": "6.0.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2021-43877", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43877" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.1/6.0.1.md", - "runtime": { - "version": "6.0.1", - "version-display": "6.0.1", - "vs-version": "17.0.3", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-arm.tar.gz", - "hash": "a6bea3289279ddfaeda4c46bc2cae82c662e2b2cfa13abefa18baa8db747bd1be9fabdd8c0103310f89d4c9e356235551af5354742117d2cd58abf5727883609" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-arm64.tar.gz", - "hash": "10b8775d44088ddc1ae193ce41f456d1bbaad21f2dc993de75c2b076b6ffcb07bca446f52180c9a175715a1e47ad42a4862c43ef11b5cbc1023cb4da3c426146" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-musl-arm.tar.gz", - "hash": "97d011df17d97db5ac6f5b5ab541f8a0428bc699a8a04ac92da5cb3865f200031cde07a34430ff492a5a54af41ee4fd4c5628093c2b7a0f4895a8326f4f63d35" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-musl-arm64.tar.gz", - "hash": "d18a059cabe2581054d9e9a2ef83c7b11159954726e2bc15e7e6b8f01cb5d7eacd34ca28dd12701286810bb52712129927471933fcd77bc062b7c892e46bca83" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-musl-x64.tar.gz", - "hash": "bcb328eb00ad53ae2f8ebce8802dda1329de68cbba120311d69a5f235f81ee59316728289f7797f23f657102d50751e3cff641538d4670ac8fd85da1d57feb97" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-linux-x64.tar.gz", - "hash": "2a316e8cba20778b409b8f2a3810348e2805f35afad8aba77a67c4e6bb2c2091e60bc369df22554bb145a5fad0c50e20b39d350b98a85bd33566034a11230da7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-osx-arm64.pkg", - "hash": "120dd524407e6f680bae783eaf5f33065fa3774cec49bfeb9a122571daa013209e23c4fcbf50bc4157330b6e5181656fe38ec49e0a50eb547d29a060c41b4b09" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-osx-arm64.tar.gz", - "hash": "35419a4340fbdd6e4ad15700a00687e163ee17234f7fd059df627db89efb47bb66a5194c96849ce65eb6fa2faaba5b5f7c53d0f169b3d8370e775ce865b745b8" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-osx-x64.pkg", - "hash": "d8a0888afc608d3f27fb1da90801783aeb223646e24f3a51627e555be6c8da599cdbe0d8bbdf0ec09e8e238f75dc08e3119f05889ce1280e949d303d90b59674" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-osx-x64.tar.gz", - "hash": "45ed27f5cfd1674c4cb67a1242730928699608f6523a7fa7150c9a1b1e2ae972d32f7eae2fff119bccedfbfe1c7666ac8db882b442624157355e2f5e452b3900" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-arm64.exe", - "hash": "aa0534c0c6289e867dfabd46cf47fc9f359d2a4df64069e2bfa106841fe0b091a7b338f5210d285b3939e0b2ee1b8416013052c74b6e7af561bc811c876a68c5" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-arm64.zip", - "hash": "07f5706f7e1bc1818d72f97432b618a254c2b5945159d01828e290255f195fdbe077889e657e9d99243b8986b30598e3cdc76fcaa77159f561144c76fcd0c57b" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-x64.exe", - "hash": "f84244e65899e1f7f1f821c873945be76e9f7320463578117d5754ae5add396ad919b0b76337707425eb72c2d711e30af9a99b842f05bfcea6dc19bacde1a41c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-x64.zip", - "hash": "059ef7dffb1e421a764779f1e75eb804fb61e32a75855964e426d7e0e8d7dd171b26861b8655738bf887efcd17657cde1b6386cf844c55e63d9822527e83411d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-x86.exe", - "hash": "4966f32df2c702642cfc4aa14d049bf077f2afdaf4a496810241ded865b36c0b6445c38fca9fa74e3f57d6c064f7e53e8b4326c64ff0abc531e5c7b07b50c9d0" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.1/dotnet-runtime-6.0.1-win-x86.zip", - "hash": "595205f3bfa2d0f77b90b80df4f5b5a827dfd44efb476fe7151d1438407f486151d7487cfc0a72eec2afafc9f87c337a37f1925191d480d4e7077daea0367b17" - } - ] - }, - "sdk": { - "version": "6.0.101", - "version-display": "6.0.101", - "runtime-version": "6.0.1", - "vs-version": "17.0.3", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-arm.tar.gz", - "hash": "f9e212dc4cccbe665d9aac23da6bdddce4957ae4e4d407cf3f1d6da7e79784ebd408c3a59b3ecc6ceaa930b37cf01a4a91c6b38517970d49227e96e50658cc46" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-arm64.tar.gz", - "hash": "04cd89279f412ae6b11170d1724c6ac42bb5d4fae8352020a1f28511086dd6d6af2106dd48ebe3b39d312a21ee8925115de51979687a9161819a3a29e270a954" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-arm.tar.gz", - "hash": "9f6ca3c29ce1ec948b69e1bfa0f40f30451d6e998b59bea8ad96701bb0815800e7f44aa91259805e9294f903e9f6264966e76a9e8918e5593d69a417385e999a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-arm64.tar.gz", - "hash": "4d1ef2a941f7be3c73fddda9a129707e1f71c50a7df99cf67dca2310eb7775e98898fa18e017950df39cee2600a87c8c546b1dbb9bb6c2d0550e56cf5ce9e764" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-x64.tar.gz", - "hash": "113428f918514d9be657e18ec454281d1f86b7e6a3214b4327379b4ab679dc60569149e943e894a169c0523f9513f3aed02ddc252daef66b67e514d3501f17a5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-x64.tar.gz", - "hash": "ca21345400bcaceadad6327345f5364e858059cfcbc1759f05d7df7701fec26f1ead297b6928afa01e46db6f84e50770c673146a10b9ff71e4c7f7bc76fbf709" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-arm64.pkg", - "hash": "8a8fb781e8304e4699045fa11e46db58a9b44e2903949d6798f4d2ecca0a7e54da94681f36be3c2879d82aa25f4fc4829ad7c3f1b0ec8b94498482de4d1a08d3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-arm64.tar.gz", - "hash": "af76f778e5195c38a4b6b72f999dc934869cd7f00bbb7654313000fbbd90c8ac13b362058fc45e08501319e25d5081a46d08d923ec53496d891444cf51640cf5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-x64.pkg", - "hash": "00354e7031e046dd15df37980f8ebc9cd679212ffab2c43841f9790743b35a5499e4d83343f7081a1d2057d8d37399be809425945557fa1fb579460a03cb258f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-x64.tar.gz", - "hash": "36fde8f0cc339a01134b87158ab922de27bb3005446d764c3efd26ccb67f8c5acc16102a4ecef85a402f46bf4dfc9bdc28063806bb2b4a4faf0def13277a9268" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-arm64.exe", - "hash": "006e943a7531b965a0551a4dee071255b64b53fa44084c47610f600b831ac057e54ab079a4d12fb51c6ef11212c83acb929e1c4e29482cc046ed7e20089c99ed" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-arm64.zip", - "hash": "881a60104d3c546d938b21cd9aa85257c8f52e0dc7647b547f85d16cb473bf8bc3ba523e9513ba6ac762a45853692bd692497009d4e5ddd36e82a380b1940e9d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x64.exe", - "hash": "695b2ddc8d5338eb0d08d9781930e578c129d55173708e1a5da993f2f1d783750d29d0d482fb2fb0253df2ba280bcb2cabba5c78fa9601b5c1f9631f94b7b65a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x64.zip", - "hash": "7259dc349861d68878f19ba1f4f72ee47403adda2e8814882c5096a44bfd42e475fc2b9eb16d819bbc61c166e13b9b5b97cfc16a36190faa88eeb6eb61693f12" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x86.exe", - "hash": "b52f0eb94c48a813c552cb526d9b46e112176ee9cf47552a419627516b62e4c1288c95f574c2f1f1dda515ee458b609d4bb633bae46cab2d4ade4e15d6b33f2f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x86.zip", - "hash": "512e5ca6e4df0cecb26a733575ab0fa3acf196b70c323a51ba25c5f5df5da39ba8b92b534128be1627077e2f3e8b21dd8c90f0a086b189296e94f333954abc8b" - } - ] - }, - "sdks": [ - { - "version": "6.0.101", - "version-display": "6.0.101", - "runtime-version": "6.0.1", - "vs-version": "17.0.3", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-arm.tar.gz", - "hash": "f9e212dc4cccbe665d9aac23da6bdddce4957ae4e4d407cf3f1d6da7e79784ebd408c3a59b3ecc6ceaa930b37cf01a4a91c6b38517970d49227e96e50658cc46" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-arm64.tar.gz", - "hash": "04cd89279f412ae6b11170d1724c6ac42bb5d4fae8352020a1f28511086dd6d6af2106dd48ebe3b39d312a21ee8925115de51979687a9161819a3a29e270a954" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-arm.tar.gz", - "hash": "9f6ca3c29ce1ec948b69e1bfa0f40f30451d6e998b59bea8ad96701bb0815800e7f44aa91259805e9294f903e9f6264966e76a9e8918e5593d69a417385e999a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-arm64.tar.gz", - "hash": "4d1ef2a941f7be3c73fddda9a129707e1f71c50a7df99cf67dca2310eb7775e98898fa18e017950df39cee2600a87c8c546b1dbb9bb6c2d0550e56cf5ce9e764" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-musl-x64.tar.gz", - "hash": "113428f918514d9be657e18ec454281d1f86b7e6a3214b4327379b4ab679dc60569149e943e894a169c0523f9513f3aed02ddc252daef66b67e514d3501f17a5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-linux-x64.tar.gz", - "hash": "ca21345400bcaceadad6327345f5364e858059cfcbc1759f05d7df7701fec26f1ead297b6928afa01e46db6f84e50770c673146a10b9ff71e4c7f7bc76fbf709" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-arm64.pkg", - "hash": "8a8fb781e8304e4699045fa11e46db58a9b44e2903949d6798f4d2ecca0a7e54da94681f36be3c2879d82aa25f4fc4829ad7c3f1b0ec8b94498482de4d1a08d3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-arm64.tar.gz", - "hash": "af76f778e5195c38a4b6b72f999dc934869cd7f00bbb7654313000fbbd90c8ac13b362058fc45e08501319e25d5081a46d08d923ec53496d891444cf51640cf5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-x64.pkg", - "hash": "00354e7031e046dd15df37980f8ebc9cd679212ffab2c43841f9790743b35a5499e4d83343f7081a1d2057d8d37399be809425945557fa1fb579460a03cb258f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-osx-x64.tar.gz", - "hash": "36fde8f0cc339a01134b87158ab922de27bb3005446d764c3efd26ccb67f8c5acc16102a4ecef85a402f46bf4dfc9bdc28063806bb2b4a4faf0def13277a9268" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-arm64.exe", - "hash": "006e943a7531b965a0551a4dee071255b64b53fa44084c47610f600b831ac057e54ab079a4d12fb51c6ef11212c83acb929e1c4e29482cc046ed7e20089c99ed" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-arm64.zip", - "hash": "881a60104d3c546d938b21cd9aa85257c8f52e0dc7647b547f85d16cb473bf8bc3ba523e9513ba6ac762a45853692bd692497009d4e5ddd36e82a380b1940e9d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x64.exe", - "hash": "695b2ddc8d5338eb0d08d9781930e578c129d55173708e1a5da993f2f1d783750d29d0d482fb2fb0253df2ba280bcb2cabba5c78fa9601b5c1f9631f94b7b65a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x64.zip", - "hash": "7259dc349861d68878f19ba1f4f72ee47403adda2e8814882c5096a44bfd42e475fc2b9eb16d819bbc61c166e13b9b5b97cfc16a36190faa88eeb6eb61693f12" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x86.exe", - "hash": "b52f0eb94c48a813c552cb526d9b46e112176ee9cf47552a419627516b62e4c1288c95f574c2f1f1dda515ee458b609d4bb633bae46cab2d4ade4e15d6b33f2f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.101/dotnet-sdk-6.0.101-win-x86.zip", - "hash": "512e5ca6e4df0cecb26a733575ab0fa3acf196b70c323a51ba25c5f5df5da39ba8b92b534128be1627077e2f3e8b21dd8c90f0a086b189296e94f333954abc8b" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.1", - "version-display": "6.0.1", - "version-aspnetcoremodule": [ - "16.0.21322.1" - ], - "vs-version": "17.0.3", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-arm.tar.gz", - "hash": "e1d9f0b2357ba637ee33bc8f8428b9ff0b3656ac28d1f7727693444191cc8a0a078c2e864547d58668cf3767f0b6df5b804e2743b6fb0906106d2877cdb687dc" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-arm64.tar.gz", - "hash": "c1cab4bc800bd507ca6046ed1af900a7f1a7d28fa564615b8b93803139affc7f5fe6824c2b161ce635047862d644d724181424b44281b30a77f7159d6769c83c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-musl-arm.tar.gz", - "hash": "f613fb9f30ff2f0693aeeceaf1160f925467f33a2c2308f39c198a128713ef19c1d743aad63b381159a420689d06a60a65f8b99fbeab1220f27463e8c112a92b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-musl-arm64.tar.gz", - "hash": "7624ae6b63475c4861e1d48aa85151a8f1e506513fe3dfd3fb95ae9a1067a77ad8ddd3e44bf8d27baca62c9c2b3cb425dbaa8d8de346f45aecb5b40870f3334c" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-musl-x64.tar.gz", - "hash": "763a9895e20ac19012b6fb6489be45a25879c3717e47b7c8f13e38e5c8a33e9ccdf5fe0a90896bd4719324cc24397c62f06426e9dd43c9cdf42296fcb08a1f26" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-linux-x64.tar.gz", - "hash": "9e42c4ac282d3ed099203b9a8a06b4f1baf1267b4d51c9d505ca7127930534b60d4e94022036719133b30c1b503f66d7d4571bc24059d735e510f5e455ec6c51" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-osx-arm64.tar.gz", - "hash": "ce6fab613172b07546f83885906c16eaf56b1de0744d326261222189466debd3ad901e95ff2916f51d7241321a31b2828f4b1fb6ce192224ebab2543dc652c64" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-osx-x64.tar.gz", - "hash": "e21cd7ead260038c820a2697d415d81ed9ce210e9d04e70ac87924f639cf5a37b2d8de400d0d3966fc6921100bb879e8d6fb9fcec9b67b02cecf180bc2f46865" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-win-arm64.zip", - "hash": "7009bc29d02c88c1146950aa56d64d58289d4b9f3678d48ef0d5126f0cf7208e525fb735c362b16ceffaebac55bbcab2a9f866ba7f244536d58345e2b1a2d384" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-win-x64.exe", - "hash": "d73cee3ef2138c3160e30b9db2f1725a540af1faf1a0d9b59e2482b5c1fe445566db8420dd298749fa9f1121d5a14255ca6e7b7c88f7dbe854f05f28738614aa" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-win-x64.zip", - "hash": "a5c5e6b7249101bb3cf309255ee0c33e509783406e64bd3c132afffc7895061a83c4760a1c15297ba0153beca53196b28f81eacb4552481f53d5d7c21b21a30b" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-win-x86.exe", - "hash": "2b285d548f84510a365a46eab0d54aca936c69d88848f3bd5cda19f0a4ebf8cff5b9ccdc0c7927df446256ac849e1c2dbcf1ced326beabe1772b2240711bdec2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/aspnetcore-runtime-6.0.1-win-x86.zip", - "hash": "4efacf582489f01b8bafc3240fe8992b5ab05bc858e37764d3840bd4f9f9c5ffadd87d7d741b35e4790c408198ff54988c7315d8d16d10024ca9f25508eb0d6c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.1/dotnet-hosting-6.0.1-win.exe", - "hash": "0a641778e544c75dd339f2a77e681e7d1d92c0ca0e79d132eca9d462612ebdd1bafb081a2d6f1cd05d618abc539ccbae7b61a5b9b2e539ff335a0d137470095d", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.1", - "version-display": "6.0.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.1/windowsdesktop-runtime-6.0.1-win-arm64.exe", - "hash": "d9a270611d4faca24186f5984f9d8ea01531b4f9513dd129db9f523d98920e24aaf08f0379c01a8edd36877ed0545178fc87b82636ccb40057f64e6c5bbbba45" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.1/windowsdesktop-runtime-6.0.1-win-x64.exe", - "hash": "36dc038f6ed20b964238d6f1cb8d2248fdf120f53ab412c23d77981a0bc4133be731df7b4d5fec7d29a127ab6d3f0e93a3062eeb3691837d7442e085ee884ebd" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.1/windowsdesktop-runtime-6.0.1-win-x86.exe", - "hash": "69d5ebc7e8421cd10164fadcf41f05e79c4c5e4fa88107b682ff44e2081e7d7c3427f775ffdba568f532aae24f9773043cdb6354828a8379e54a5404b1739f79" - } - ] - } - }, - { - "release-date": "2021-11-08", - "release-version": "6.0.0", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/6.0.0/6.0.0.md", - "runtime": { - "version": "6.0.0", - "version-display": "6.0.0", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-arm.tar.gz", - "hash": "575037f2e164deaf3bcdd82f7b3f2b5a5784547c5bad4070375c00373722265401b88a81695b919f92ca176f21c1bdf1716f8fce16ab3d301ae666daa8cae750" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-arm64.tar.gz", - "hash": "b0f0f2b4dc0a31b06cc3af541a3c44260317ca3a4414a5d50e6cf859d93821b3d2c2246baec9f96004aeb1eb0e353631283b11cf3acc134d4694f0ed71c9503d" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-musl-arm.tar.gz", - "hash": "b71b2dc2067c130a7855430dce51cac701c5c03f1ce86e76c45413efa1ee5529161c11107ca7f09e83c149558545207efb4140d441e773a2d63ae9f37ed76420" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-musl-arm64.tar.gz", - "hash": "e5555d81b06f4617569cbe183150f03e483da7b0d2d7da7da4fcaa80decd1ae2369efc4122eb3c6e59a0631c6a51559d8458a022680074f2548df534685ff2cb" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-musl-x64.tar.gz", - "hash": "1b6b5346426e53afd7ea4344e79b29a903b36bb1dfbc88d68f3a17a88b42ca9563d8af7c086cc0d455cb344c7d11896d585667c76e424b2e2760e7421018c1c7" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-linux-x64.tar.gz", - "hash": "7cc8d93f9495b516e1b33bf82af3af605f1300bcfeabdd065d448cc126bd97ab4da5ec5e95b7775ee70ab4baf899ff43671f5c6f647523fb41cda3d96f334ae5" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-osx-arm64.pkg", - "hash": "e9043d8d073a02ed5cbed9f5804d0608c168d800aea5fd9debfc963010cee855ab8439946fc092ad880adcfb84777465ca572f85862402b6875a758e41d343b8" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-osx-arm64.tar.gz", - "hash": "5cfc3c8a70f0e90f09047d3eeccd699e7210756b60fabbf1a30d6fdc121df084e5d8c3210557273739d5421f031dc9e4d07c611406734ca0671585de6e28e028" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-osx-x64.pkg", - "hash": "d3244837766f2f2b0ab5172d3ea6bab149e2bea716d4f7be0d122fcd867609f3c694a9c4fd4cd7180bf5348209e414809c37ed2327804ca76b5bc269187b04e6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-osx-x64.tar.gz", - "hash": "d6842bddd9652dd7ad1d8156c3e9012f9412b3d89b4cfc0b6d644fd76744298aa5ed2cde8a80d14bb2b247ee162bae255875ee2ca62033a422dacb7adaeece2d" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-arm64.exe", - "hash": "88e459d006c6d7ea46f0737421bf479f3a29b2f5bf273b9bbbd6919729c67293df3bfb3066fd04a58d1809b43bd6d9091fac58ccab43b107c4bcba9a606e447a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-arm64.zip", - "hash": "a223bbb3dd09b5f49bce1165c1398123e573a524f8ee9fa808f29e361bea85f94e2eaa9a8ab0b4bfb4b5564bf0d70b27a994dfd5c47c79b2fd5d6501c9d1620e" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-x64.exe", - "hash": "95be7c91cbae40f3faf29329bf741f3d0670003bd3316c2cd7adf1653b472b0ca6b0f40713b84fd3855d9ded7d4e7f6b0ae67aa900ea04caada24e524b94bbe1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-x64.zip", - "hash": "db8ad4e70b2779886f9e8e2aa89c40461f94ec4291786b2c4f9fdc5df1c707acf0bf1fab8fb99d42abb0d8010949e39175d39dea7ac154ea0ac2cf5761f539d3" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-x86.exe", - "hash": "50ff4627573abc80731515573aa1e4b5a8c05c1ace868920d22edcdce803489d4070022e3a4359596a935bb68932c6e53932886a8336ef2220d640cb1b7328d2" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0/dotnet-runtime-6.0.0-win-x86.zip", - "hash": "0950abc1ddec8f8429ec46e29af78f019ffd32f66c0fcfef88e0356cd61dd91b70c4ac19d5be938cf35c791154992228a94f2f3297c46cab490a3a1c9552f266" - } - ] - }, - "sdk": { - "version": "6.0.100", - "version-display": "6.0.100", - "runtime-version": "6.0.0", - "vs-version": "17.0.0", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-arm.tar.gz", - "hash": "c1e555893c48c4f4256d3e6b1d36b31d8a4d7763a6e958fb63dd31436c660648d481612b5e25d79a613e84a1954f5eac2c9c2b740bf410958172780f7bbeaeb3" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-arm64.tar.gz", - "hash": "e5983c1c599d6dc7c3c7496b9698e47c68247f04a5d0d1e3162969d071471297bce1c2fd3a1f9fb88645006c327ae79f880dcbdd8eefc9166fd717331f2716e7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-arm.tar.gz", - "hash": "4568f18912431cf1ffff0ae6ead281999dfaf594a3a59ef7d0492e687069cc988f9809c51cecb9c33eede863dda45868072d98c0aa52d3941fd1783590e7eb73" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-arm64.tar.gz", - "hash": "0f7a03ab2d090658623dc4bba3ece420cdf1976296f812140c152a399513cfd53a0bd5a6b0833c29860f035121b53bc38d9fa348434963a0bf6e6a3945547273" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-x64.tar.gz", - "hash": "428082c31fd588b12fd34aeae965a58bf1c26b0282184ae5267a85cdadc503f667c7c00e8641892c97fbd5ef26a38a605b683b45a0fef2da302ec7f921cf64fe" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-x64.tar.gz", - "hash": "cb0d174a79d6294c302261b645dba6a479da8f7cf6c1fe15ae6998bc09c5e0baec810822f9e0104e84b0efd51fdc0333306cb2a0a6fcdbaf515a8ad8cf1af25b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-arm64.pkg", - "hash": "d7ff82c55eda5844c8869b63646c75a0b0a34f30fc23bdee3c0c5f3bf1666fc78f0ded86356ab21fbfd04f1adc0a60008940e726620a3d42e4a4343ea9134544" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-arm64.tar.gz", - "hash": "92ead34c7e082dbed2786db044385ddfc68673e096a3edf64bc0bf70c76ea1c5cb816cde99aab2d8c528a44c86593b812877d075486dd0ae565f0e01e9eaa562" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-x64.pkg", - "hash": "109076a315749ae37f2f6085f489101f9ed538caaba6bf9f7e5c00ad713185b2d254296139d486a56c16401c56f00ba1d7c89bd991f18cc715a8ccc85353eba6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-x64.tar.gz", - "hash": "6e2f502a84f712d60daed31c4076c5b55ee98a03259adf4bdc01659afcac2be7050e5a404dcda35fdc598bf5cd766772c08abc483ed94f6985c9501057b0186a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-arm64.exe", - "hash": "811a786a433ced4bd6ea5b87016d066bf90972db00be021f752ba8d91a7cf732fc10c90d02553e7146023ea11be7bc36c5aac6b9009d5b9dd8493b3c4c7c8637" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-arm64.zip", - "hash": "a785cab6ae75187fccdd8276e4c961cc7cf8ff03fd49fdc36d251560909a53b4f4767f94ca1f007a672e10f0053f87d33fdd107661f718f4e969c740970ba974" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x64.exe", - "hash": "a3bf940482214add94b20c741cf5b8b41467ec730073eed67dfdcf42ba8ad918d63d44322a29e8dd47e12dbf4617298ab3d331147f40efe21158ccf229fa2727" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x64.zip", - "hash": "d2fa2f0d2b4550ac3408b924ab356add378af1d0f639623f0742e37f57b3f2b525d81f5d5c029303b6d95fed516b04a7b6c3a98f27f770fc8b4e76414cf41660" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x86.exe", - "hash": "8161389c3d4ffd9c7487a6be5f42634a20c0bec88ff07f4259ff1f085f1e776f5137570c336c9fbade17005ad5e656cfd4b5bab2c9bc941eece3d45a2a5eafac" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x86.zip", - "hash": "22ea675797425bd4c65baecf4e0549b648377d74fd2df0d7bbbb2a5802160a7e13dcbb7877f12c7a77d08246bf3378846a20669c2b69db11a32a08ab7e722784" - } - ] - }, - "sdks": [ - { - "version": "6.0.100", - "version-display": "6.0.100", - "runtime-version": "6.0.0", - "vs-version": "17.0.0", - "vs-mac-version": "17.0", - "vs-support": "Visual Studio 2022 (v17.0)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.0 latest preview)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-arm.tar.gz", - "hash": "c1e555893c48c4f4256d3e6b1d36b31d8a4d7763a6e958fb63dd31436c660648d481612b5e25d79a613e84a1954f5eac2c9c2b740bf410958172780f7bbeaeb3" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-arm64.tar.gz", - "hash": "e5983c1c599d6dc7c3c7496b9698e47c68247f04a5d0d1e3162969d071471297bce1c2fd3a1f9fb88645006c327ae79f880dcbdd8eefc9166fd717331f2716e7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-arm.tar.gz", - "hash": "4568f18912431cf1ffff0ae6ead281999dfaf594a3a59ef7d0492e687069cc988f9809c51cecb9c33eede863dda45868072d98c0aa52d3941fd1783590e7eb73" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-arm64.tar.gz", - "hash": "0f7a03ab2d090658623dc4bba3ece420cdf1976296f812140c152a399513cfd53a0bd5a6b0833c29860f035121b53bc38d9fa348434963a0bf6e6a3945547273" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-musl-x64.tar.gz", - "hash": "428082c31fd588b12fd34aeae965a58bf1c26b0282184ae5267a85cdadc503f667c7c00e8641892c97fbd5ef26a38a605b683b45a0fef2da302ec7f921cf64fe" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-linux-x64.tar.gz", - "hash": "cb0d174a79d6294c302261b645dba6a479da8f7cf6c1fe15ae6998bc09c5e0baec810822f9e0104e84b0efd51fdc0333306cb2a0a6fcdbaf515a8ad8cf1af25b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-arm64.pkg", - "hash": "d7ff82c55eda5844c8869b63646c75a0b0a34f30fc23bdee3c0c5f3bf1666fc78f0ded86356ab21fbfd04f1adc0a60008940e726620a3d42e4a4343ea9134544" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-arm64.tar.gz", - "hash": "92ead34c7e082dbed2786db044385ddfc68673e096a3edf64bc0bf70c76ea1c5cb816cde99aab2d8c528a44c86593b812877d075486dd0ae565f0e01e9eaa562" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-x64.pkg", - "hash": "109076a315749ae37f2f6085f489101f9ed538caaba6bf9f7e5c00ad713185b2d254296139d486a56c16401c56f00ba1d7c89bd991f18cc715a8ccc85353eba6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-osx-x64.tar.gz", - "hash": "6e2f502a84f712d60daed31c4076c5b55ee98a03259adf4bdc01659afcac2be7050e5a404dcda35fdc598bf5cd766772c08abc483ed94f6985c9501057b0186a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-arm64.exe", - "hash": "811a786a433ced4bd6ea5b87016d066bf90972db00be021f752ba8d91a7cf732fc10c90d02553e7146023ea11be7bc36c5aac6b9009d5b9dd8493b3c4c7c8637" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-arm64.zip", - "hash": "a785cab6ae75187fccdd8276e4c961cc7cf8ff03fd49fdc36d251560909a53b4f4767f94ca1f007a672e10f0053f87d33fdd107661f718f4e969c740970ba974" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x64.exe", - "hash": "a3bf940482214add94b20c741cf5b8b41467ec730073eed67dfdcf42ba8ad918d63d44322a29e8dd47e12dbf4617298ab3d331147f40efe21158ccf229fa2727" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x64.zip", - "hash": "d2fa2f0d2b4550ac3408b924ab356add378af1d0f639623f0742e37f57b3f2b525d81f5d5c029303b6d95fed516b04a7b6c3a98f27f770fc8b4e76414cf41660" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x86.exe", - "hash": "8161389c3d4ffd9c7487a6be5f42634a20c0bec88ff07f4259ff1f085f1e776f5137570c336c9fbade17005ad5e656cfd4b5bab2c9bc941eece3d45a2a5eafac" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100/dotnet-sdk-6.0.100-win-x86.zip", - "hash": "22ea675797425bd4c65baecf4e0549b648377d74fd2df0d7bbbb2a5802160a7e13dcbb7877f12c7a77d08246bf3378846a20669c2b69db11a32a08ab7e722784" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0", - "version-display": "6.0.0", - "version-aspnetcoremodule": [ - "16.0.21299.0" - ], - "vs-version": "17.0.0", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-arm.tar.gz", - "hash": "36be738bb40a0cadacd4531c3597a25fd45deb7c48090ffb61c79a5db7742a5b8e13051b06556e15e7e162e4a044795c0ca5e6da4db26b63b05c37b39e74e301" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-arm64.tar.gz", - "hash": "e61eade344b686180b8a709229d6b3180ea6f085523e5e4e4b0d23dd00cf9edce3e51a920c986b1bab7d04d8cab5aae219c3b533b6feb84b32a02810936859b0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-musl-arm.tar.gz", - "hash": "f68bbff22e24d4e4b95fdafbe0615f0877233cca43709430cf999556c158c4f26ce0f1624853d367c9756ac771992aa05f01fa4d6bbaf45c279a0184c35b0661" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-musl-arm64.tar.gz", - "hash": "3d8f3f981b5398fe86582dc7119d490401924fdea4c20a96495f87e0082461308d1a28f8777616d2d303f01f63ce9fed78c1ce9600601f9c65a6ad6f914cef3e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-musl-x64.tar.gz", - "hash": "7273e40bc301923052e2176e8321462790e3b654688f473dc7cac613ad27f181190dabbba79929f983424c9b5b5085b8d4be9cc9f0f1d0197f58ef3bb9aa8638" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-linux-x64.tar.gz", - "hash": "6a1ae878efdc9f654e1914b0753b710c3780b646ac160fb5a68850b2fd1101675dc71e015dbbea6b4fcf1edac0822d3f7d470e9ed533dd81d0cfbcbbb1745c6c" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-osx-arm64.tar.gz", - "hash": "e459ddf33243d680baecc5378b9c4182daf42b8c36a9a996205d91146a614d048a385f953c43727350ad55b1221c5f5d43b383d03e3883e862bf12faeaa02dfb" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-osx-x64.tar.gz", - "hash": "76029272ff50fbf9fcc513109b98c0db5f74dbf970c1380be4dfac0dae7558824d68a167d0a8ceb39042ff4a7ca973cdcc15afed2d1ffef55b0adba8e40c9073" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-win-arm64.zip", - "hash": "34f1f2408c2fd231411dd6711b2f0dac2369bde2ed21738cf18fe05bea8209ec6cebfac7739e1268c7a812f1ed9d7fbbf6c7e9f0060499364b57c3a4e9ffe104" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-win-x64.exe", - "hash": "2e589f40a5538afc4aeeb0af106f683e294cba2e1e2624769735efe1468e1e6649b6e5f4bf9af3e7034a9e040e8bc2d7c68632b7aa1db433067f4b7c3b8c0741" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-win-x64.zip", - "hash": "2b6b630b4f0d86f4decfd1a8c2186f14322c792bafb024a8e71919ac8918e29dec99004a5cdf8b22479e0f16af582a90ed521d312a0a67a75ed5bd4adbb7594a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-win-x86.exe", - "hash": "e146f55451bc3a3f9f3043868ce73f4a14d516fdb2a79a62befe5375b2a4ce9cabc669cb5de6345d697049657afc3f134ca8106c4c266d3d91d624b3d23bdd60" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/aspnetcore-runtime-6.0.0-win-x86.zip", - "hash": "69fa95e74b4395e3fa7a67f17a8a955621ae353dfae18a08d5d42efa7cc785fac44a6bc283226fb91987559fae75be160d94cf12fbcce113a60128b1dc52ad6b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0/dotnet-hosting-6.0.0-win.exe", - "hash": "39d76250b2e3a640a30519008c88353be18b85914878ec9eeee742e9335f0b3597970e8f33bd71f01c13808a52ffdc94295d1ca5c90ed234216a770fe24d92ea", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0", - "version-display": "6.0.0", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0/windowsdesktop-runtime-6.0.0-win-arm64.exe", - "hash": "b6a6fbaf7a4a1388cee4daba707ff6e44b12341192d78bc9f7bfcf28d6f15183a0e28758c01db844824b8042d8fa6d24f8c055dc96e788d1bbd3c22b28d315bf" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0/windowsdesktop-runtime-6.0.0-win-x64.exe", - "hash": "6b9b230579b1e5825d3f5db0a209d8c0f1c42bd94b00907aa3a314e257c372a81535244007e3496d712dc04385c3247b2614001780cd27e832598404e754660f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0/windowsdesktop-runtime-6.0.0-win-x86.exe", - "hash": "af89b1d0bcb9b51376fa181b2fe1918ca1dd6a47f928c9b3cafaf0972ba8b2faec4f15150ebfe54c5497570e4abdaee4c9e94d4928965194d232483cae34498f" - } - ] - } - }, - { - "release-date": "2021-10-12", - "release-version": "6.0.0-rc.2", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-rc.2.md", - "runtime": { - "version": "6.0.0-rc.2.21480.5", - "version-display": "6.0.0-rc.2", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-arm.tar.gz", - "hash": "50447f1a5d121c7b5cc34678fade10933711f2a14f9f8be6930bfaefadcd31d7d20518ba48b4335ac69eeec24586eb00c239157eb8df139cfdde23d8820b1e76" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-arm64.tar.gz", - "hash": "b0f8128d994b0de0c72b9dd8083a7350218adfafedc643c59b497fa605420602004d9e21e8acb488d92bc498f9783a3240cfcafa77443eb6f08b66aadc4f5b65" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-musl-arm.tar.gz", - "hash": "3ce96ba48e87ddb942ef7927c66b899ff535f2ceed1fc8e89f6f68c4d5cb2745a5e31737d6cb65fc0569e5695ce7c291102501f5ab0561afc26528d3afebfcdc" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-musl-arm64.tar.gz", - "hash": "8a301cc23db700d5188f29b1e63c3bde1631cf1bdc02d1070923532733d7a030be17dd4391d6d1f4596c11b1009aa38efbfa8335219bd1fac989158ba7e2a728" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-musl-x64.tar.gz", - "hash": "ee3fb0c0311e0d88ae3f8b0d150f8d98da4fa24d77c429438fad04393b24e214db49bfbc4c9e89918e99061004d63f40ec7b76cb1c0e1c2b12414be29ab63238" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-linux-x64.tar.gz", - "hash": "45062417c6111af4d635868927e8f69d43f66c9e0f111cb71c1861eaf5ceda4aefa99d97c6ce3b13fac2bc7c57c435e6f8b2d43c51a3bb3304b42081d98f7047" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-osx-arm64.pkg", - "hash": "41c3154efcc5269ddcac3b877b59b9fec310654cf8238868a1f4a71b48e660d65ec2db6d2f1a1977f9c2147f84c7c9f677e24fbcc210eee3aa9e77ed1e20f94b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-osx-arm64.tar.gz", - "hash": "747abb8eaad53e0ca7e5b2908b620076fa68a75c5e822361483ed13f7544e31def26bbf67bb85f47633e2dddde9cb095503bf70d1a4b0b2f33c6ef6f887d95fa" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-osx-x64.pkg", - "hash": "1807214afa00c9ff4f947f63bc01df3e7f7495d8d3f403aae62f74a8d4ef8cb9090e2f6c18ea7197dd4fec2d6c4b26f87357e59dab1d16aaf819c95940176616" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-osx-x64.tar.gz", - "hash": "0f702645719af5a4f1e720c0f2a0c67c7a4a84fac525b3ac6ce6357ca6d44405aeca674d04d8a976a7338ddf8782350debd53dce85e614c837106ffadf84cfb9" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-arm64.exe", - "hash": "4725ea7abfde572dcba6b2a04b1bf32273ff2ef9001c92a63f39ead5a6ea0142488cf5426d7bf856622cfebbae34d989c4600fcc884979adf71870119a9bbc6d" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-arm64.zip", - "hash": "76d56cff06751652dc7d6e89523dd775191695d74c8f96239191059a89cb35d85867ce940bc2f27e7cd8a47029579fc0d56e142404c37913f8387573e386f77a" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-x64.exe", - "hash": "bff7726653f820b518b55d4e07a1b74a0db17b4e03bcfab78d87a94565766517c83468b199ec00bca23e1ee2a913e16a1e05c6bf32149551470b2232dd39c10b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-x64.zip", - "hash": "46b96bc4cc05918ce91a1bb77227a219e2dde5b90ae99e99180f8ff3455e9731029bcab6fdece926f289e7993f9ca160b737f9a4eccc533304ba83b9842eec11" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-x86.exe", - "hash": "4c33f17a59f01ea439cff6ac8ba87393d02d916ee78c57c25fe0eaef5e13015d64b172538c02f0b4923e5f553f4f4b8b889fa69ff6bf3a452116132f0cee712b" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.2.21480.5/dotnet-runtime-6.0.0-rc.2.21480.5-win-x86.zip", - "hash": "db92d96c40f02bb1cd04a27f21c2d6f7164182bc894901e39a0e75eef681f56206358390d9935a43d1bb331706eb98ef3c919c0abac470c560c2e29b787c0c73" - } - ] - }, - "sdk": { - "version": "6.0.100-rc.2.21505.57", - "version-display": "6.0.100-rc.2", - "runtime-version": "6.0.0-rc.2.21480.5", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-arm.tar.gz", - "hash": "2396998b8f21527f979b84460aee8621ca5fa275e4a1ee83b11fe9f12b42479931e56787d7dc82640d72470df185cb02d0bbc5e0e3e920bb6abb2d270051b188" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-arm64.tar.gz", - "hash": "14aa96f47f7f3520075e41753c705bdbf7f84fd7cff7cc2add1095a13e3e3c44eaaf2d822551902f05a6ad0c9acd7f7424190b7c09c397004c632eddc8acd5ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-arm.tar.gz", - "hash": "6e74874ad38946cb4d8ddcacf61171c440c49b4a5262256ac9b110d7d7981eee1870731df82b6d825117bbb799d2b780b7509a1bd2f9aec8c6fa71edbc745dee" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-arm64.tar.gz", - "hash": "286231a82a5c5b2262049b02875ba3f7569dfbefee8b96dfebddd5c98a45918679a28879150286d9a3c1fa02536effab635c27451748a69e36fcf1e71b57b3a7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-x64.tar.gz", - "hash": "088de76a319ccc11e2d06310d096540100a76a94933602a614fb1f2b71ecaadcb573f2db71ef61cca339ce28caab07827bdb3eb0d7cd3199b0f4b8917f0bdfc3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-x64.tar.gz", - "hash": "0a8f85a2757f61ca7f9b8c546af4554c2aac9cdb06f6d62879a60de6f2a3d37ea7136f48896c9c85828a2d55df354e7b9b5b4dc22896c927f0c6370a5ade1b9c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-arm64.pkg", - "hash": "ebb2971340d3d2a8e2ed4d48dde4f6ac7f49fb37e05e56c8be395b4b5564e0e05b7337a153d9d4e7b79994a5b75a38a3af4cfd78251678162a6fcc1754d08c04" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-arm64.tar.gz", - "hash": "c96c8a86e36ca16a0e10f635250472d5c8eda290dc505ed8eb4bd6a68b8e6ae6b2770236f5bda1573bc3124229531b3ed7dd71f60a821e39aaaa6697a82fdf8a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-x64.pkg", - "hash": "c9f759880c416aeb3d5c786447b1e26fd339f60fbf1bf17e17a5a24cdcea7feed7b895a7cf57a2e5404f0351b9fec9b8db75c058e9fb560afe2f3930f9d2b560" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-x64.tar.gz", - "hash": "6a896f2d1e8e2d00b52641e8b1aee88888a2b30e0f18e499b1eaf4ae7dbdaa24ea5af0dbd4a6a1cee715738e6e91cecdbc02c2c7d3d4c71d4c9af3e04f1b4fc9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-arm64.exe", - "hash": "ef62eb2de12f4eb74b3b867d605387d7540686bb0647723178283631567a15df4f864d46faf398b86bbe603984f27ec3a6b94419eda4051758053dfb1302c0b6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-arm64.zip", - "hash": "b7c7f90faedc4ce88b52a622b21c0815d4092e75cc9dd0dd423400d3dd505c22c1123cf780f1b8df5b634a6e0951cd5d71a7b50323b43f60d817d551d40ae25d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x64.exe", - "hash": "0fd961dcdb07e659b2cc9a710cef12db9acede80268e24d8a48290ca0851a6dca96705445f31f37b8dff9f30139a67744cbbfc2ebeac86e2adfdaac3d944168d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x64.zip", - "hash": "072f581b679a85c546c3ee198332f63a5867933b845dcf5ad1938b3abef169ca34e88755f44282c165cc5e3aba63bb75830a6557397b97ef33e38c478e016a25" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x86.exe", - "hash": "051492d275c00a059aa223a679d06c435188aae3d6bd0702d3337d8734682b8d3424125fa86b87e5900e518d8e7cc0753e14bb4819f2f1d1d60f84787e44738a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x86.zip", - "hash": "e03399267d9d24014fefa106332e41beda378fc8fdf7dd1d8d747e53a74d30f7515b113a4972186ada9127bc9977a4aeb89e49dbe5a1788e3bf6d515a17ad366" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-rc.2.21505.57", - "version-display": "6.0.100-rc.2", - "runtime-version": "6.0.0-rc.2.21480.5", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-arm.tar.gz", - "hash": "2396998b8f21527f979b84460aee8621ca5fa275e4a1ee83b11fe9f12b42479931e56787d7dc82640d72470df185cb02d0bbc5e0e3e920bb6abb2d270051b188" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-arm64.tar.gz", - "hash": "14aa96f47f7f3520075e41753c705bdbf7f84fd7cff7cc2add1095a13e3e3c44eaaf2d822551902f05a6ad0c9acd7f7424190b7c09c397004c632eddc8acd5ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-arm.tar.gz", - "hash": "6e74874ad38946cb4d8ddcacf61171c440c49b4a5262256ac9b110d7d7981eee1870731df82b6d825117bbb799d2b780b7509a1bd2f9aec8c6fa71edbc745dee" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-arm64.tar.gz", - "hash": "286231a82a5c5b2262049b02875ba3f7569dfbefee8b96dfebddd5c98a45918679a28879150286d9a3c1fa02536effab635c27451748a69e36fcf1e71b57b3a7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-musl-x64.tar.gz", - "hash": "088de76a319ccc11e2d06310d096540100a76a94933602a614fb1f2b71ecaadcb573f2db71ef61cca339ce28caab07827bdb3eb0d7cd3199b0f4b8917f0bdfc3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-linux-x64.tar.gz", - "hash": "0a8f85a2757f61ca7f9b8c546af4554c2aac9cdb06f6d62879a60de6f2a3d37ea7136f48896c9c85828a2d55df354e7b9b5b4dc22896c927f0c6370a5ade1b9c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-arm64.pkg", - "hash": "ebb2971340d3d2a8e2ed4d48dde4f6ac7f49fb37e05e56c8be395b4b5564e0e05b7337a153d9d4e7b79994a5b75a38a3af4cfd78251678162a6fcc1754d08c04" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-arm64.tar.gz", - "hash": "c96c8a86e36ca16a0e10f635250472d5c8eda290dc505ed8eb4bd6a68b8e6ae6b2770236f5bda1573bc3124229531b3ed7dd71f60a821e39aaaa6697a82fdf8a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-x64.pkg", - "hash": "c9f759880c416aeb3d5c786447b1e26fd339f60fbf1bf17e17a5a24cdcea7feed7b895a7cf57a2e5404f0351b9fec9b8db75c058e9fb560afe2f3930f9d2b560" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-osx-x64.tar.gz", - "hash": "6a896f2d1e8e2d00b52641e8b1aee88888a2b30e0f18e499b1eaf4ae7dbdaa24ea5af0dbd4a6a1cee715738e6e91cecdbc02c2c7d3d4c71d4c9af3e04f1b4fc9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-arm64.exe", - "hash": "ef62eb2de12f4eb74b3b867d605387d7540686bb0647723178283631567a15df4f864d46faf398b86bbe603984f27ec3a6b94419eda4051758053dfb1302c0b6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-arm64.zip", - "hash": "b7c7f90faedc4ce88b52a622b21c0815d4092e75cc9dd0dd423400d3dd505c22c1123cf780f1b8df5b634a6e0951cd5d71a7b50323b43f60d817d551d40ae25d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x64.exe", - "hash": "0fd961dcdb07e659b2cc9a710cef12db9acede80268e24d8a48290ca0851a6dca96705445f31f37b8dff9f30139a67744cbbfc2ebeac86e2adfdaac3d944168d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x64.zip", - "hash": "072f581b679a85c546c3ee198332f63a5867933b845dcf5ad1938b3abef169ca34e88755f44282c165cc5e3aba63bb75830a6557397b97ef33e38c478e016a25" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x86.exe", - "hash": "051492d275c00a059aa223a679d06c435188aae3d6bd0702d3337d8734682b8d3424125fa86b87e5900e518d8e7cc0753e14bb4819f2f1d1d60f84787e44738a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.2.21505.57/dotnet-sdk-6.0.100-rc.2.21505.57-win-x86.zip", - "hash": "e03399267d9d24014fefa106332e41beda378fc8fdf7dd1d8d747e53a74d30f7515b113a4972186ada9127bc9977a4aeb89e49dbe5a1788e3bf6d515a17ad366" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-rc.2.21480.10", - "version-display": "6.0.0-rc.2", - "version-aspnetcoremodule": [ - "16.0.21273.0" - ], - "vs-version": "17.0", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-arm.tar.gz", - "hash": "28883aee0acf670b2099db7b5d69f74e9853ec0e02d2fafb3aee135f987a117d3a32eca04bb9213e4e39d7782d3cd37e25cfabfe6004269ac3eb20cc5d931cd1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-arm64.tar.gz", - "hash": "3a92e93a8cb0c186f1c4a822d46a37604bc470599dbcbe05a7f1ea7c7d1dd9c0e6571de524de8729d19d237078742a0b4e3a1daa11b5eb5f8cce74b69710ada4" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-musl-arm.tar.gz", - "hash": "8fde5df285a852cfa37bc026983357cac8fdc77c5f9e2fdb242f1c967375e43bac9cc6f9ac6caa684a9bb3aab94c0f98ff93e8e9650399b44917c9e51d8e545c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-musl-arm64.tar.gz", - "hash": "2a8bbd4d767864e5cf87ad2f7cb8b94065af325b72b1c626f4b1791b091e818b6e54cae302293815e5739d198f791bc1194efc21117234536752d7b13ad2a4d4" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-musl-x64.tar.gz", - "hash": "bb85419cdc2cd6d5f357737230038d3ab685832a48964ef9e8a9f783e1ed6cba0f293ed47e187f05209f3d4c919d81de27c5add5c2424e15bc1b0600c92ed390" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-linux-x64.tar.gz", - "hash": "d48895237644a3999663b2e16baa2303d8b77f66385a04d8edb5601fdffacce18b1b1318827d09f74f6b133ff2c179ef659bd21cf8460289b5f81f404fa8b326" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-osx-arm64.tar.gz", - "hash": "688879db73aa6b7556da70907920f3e443dff54bf8624030352ed5ba3896cceda69040ef359dacf55d50cc52fc2c75057d259a1cc11a2258d4446ebbd2200820" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-osx-x64.tar.gz", - "hash": "ed1cad94acf207d0f18201af1e0e6c386466f94b8fd0474dc8d59f47d8f3c456f3a55de392dda126e0e1f4f934249b0e17b7b86f6bc7c510dc475324ee1395f0" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-win-arm64.zip", - "hash": "01cca4811f4f8afea78509c381e9134c93ac4dce51aaef171dba7326b10a3333fc9d51078138b08979dab3dbeaa85bff5121ce6b9007984e2650bcec26358aa7" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-win-x64.exe", - "hash": "2ec43899ddbc16a2f70be20965a2de6d655ea84e18d3e2c933e2551431292085e24e19b46967d1f60eb5f6ecc6c0eee289510a98549b5e8f57bd4c0439c5148b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-win-x64.zip", - "hash": "453ed645205869fe933c5071cd97b267031d0e21f961df7509840f923ad15a2cb8ae09bfb7083333f6fad5236aaa08b7964dbd9784c2f54b9607fb451efec5d4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-win-x86.exe", - "hash": "de20f09e6378f87abab9e414d677f2d950b760be56c3983a286103b98eca2356238ffd68b440e9daa03746049f741c5b278044ece8ace47bda43c774a6b098ee" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/aspnetcore-runtime-6.0.0-rc.2.21480.10-win-x86.zip", - "hash": "6b53d1f40be0191fb80119128803eab7246bc38636a58f36502f8730f4932fc80f7a6557727157025e22777d8f24bf9161f219b5e57b583cb2a46873ac6fff9b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.2.21480.10/dotnet-hosting-6.0.0-rc.2.21480.10-win.exe", - "hash": "f7118fa95cd51ca4ec479dd10578c55383eb9ba58c00cfad91b6f3b7b6d77ca0454411c0e17293093c785ff179328abeef725515c12245a005ca9913c6ecbb9c", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-rc.2.21501.6", - "version-display": "6.0.0-rc.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.2.21501.6/windowsdesktop-runtime-6.0.0-rc.2.21501.6-win-arm64.exe", - "hash": "c36630d1bbd895dfc853003998ac389f417a6583657dd9061012bd362181fa83e4f81ab140a2f210440c718a56dc9cb1a8caf47a22c1486474b99129b4b69d01" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.2.21501.6/windowsdesktop-runtime-6.0.0-rc.2.21501.6-win-x64.exe", - "hash": "940ea45b052c8c26001c0b9a6d87af337ae25495f7d681dcfd0c5b445fd62ace15154e2bc30c49dc23a41b8289c3643849e7626139651cb4ad2e98a8509a8685" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.2.21501.6/windowsdesktop-runtime-6.0.0-rc.2.21501.6-win-x86.exe", - "hash": "46c849edd2b3fc966369af0fd75f6911eb5b1ac2296c318f987bc884544100b834f9d10b9941c55b1aea2916d0459163734f0f2fee274a342db45c008260bec0" - } - ] - } - }, - { - "release-date": "2021-09-14", - "release-version": "6.0.0-rc.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-rc.1.md", - "runtime": { - "version": "6.0.0-rc.1.21451.13", - "version-display": "6.0.0-rc.1", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-arm.tar.gz", - "hash": "6a5786fb0fc10cbe562350c56c35fb4745db18dbf3b299e3d86bd0c0e1bd43b95cd54561d78f1d53f3c41639a4505527e8fc0cf37e4f9da469ac0f521cec279b" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-arm64.tar.gz", - "hash": "a18ab20932e36820407058ada417941535cb51c0f6c68ff8830f43c9521fdd89f31553832522bad0918779e87387ef484d2e414c07923db4ad7deecbdcbc3a52" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-musl-arm.tar.gz", - "hash": "8c0694e75c9d72a0b402eb3cfcc9d3944f0c0abb7e4ba097c4f7ee525d2d3daba588836a34193f34288049597c04ca6ec362574e6c7bdb4223e1707b288b5f6b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-musl-arm64.tar.gz", - "hash": "5a718a94e065d105f2e056672f8a0a7f3486626f253360ca0945dd468d9276e0c33c5a28b82dda9f3928b86967777af780bc2932d07ccea9b7a497dd9d90356c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-musl-x64.tar.gz", - "hash": "41d6b4f68a7bdef7e91b5a153106f7767afa9a0a76e8e5f724a2a44aaf3d7cb6eba8981fbb2426dd4cb669cbd5f071901d4893b4f22760641c94e2dae9ea74cd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-linux-x64.tar.gz", - "hash": "6c101a93766747deddc97dd3ae9cbd0d0babc292dff2897006e1df8ad6af100aa74063d4961d73e67c82db66662f760cf83f510617559a2538210fc89694d9ea" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-osx-arm64.pkg", - "hash": "c7b3041db85cf3f58078fb9ee3fa5facd81816d9d7605ad15034f293d515461525f51ab1c4cbdd4daeb1f1d22c15a0541f4be9f00bf179e52fb708d0fd955ec4" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-osx-arm64.tar.gz", - "hash": "98dca56567b0c9a0874475818f6eadad90cf337eda3ba84e5bab222d58e4d1db7a9238c9aabe8e32016a15b1341576a369149e5394ff332c3014946e8687b8ca" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-osx-x64.pkg", - "hash": "ec9d64438569f211e85393cc1502219447ddedb69fca98728f042149c0abaa773d0fc28580b1e668428be3b63290a031d516ede4ddc18e3905a9cc8bdd16962e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-osx-x64.tar.gz", - "hash": "09bd7620d335edac0c78a88d35dd55c53350df768debaad64ceb6c04d79cb056b8255b5a9b26bf13c6cdad26880905c0da64b7ec1582f525c5386a44d32e9dfd" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-arm64.exe", - "hash": "009f52ad16aae13175eb669497d627f8fa0328d9615b2072563493f366bd14212959c5c18f4f79e8712a8a39fc9a2a6b965b0a20bb613ab00735dc5938add283" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-arm64.zip", - "hash": "1b17494985f080ae3fa79f8370a9cc3677a5b834a7ab62339b53dd9991158bc34fcfb7111c7dfa0d75e0da23cd469aca7f8d6e906a7c4cb33fc86e275c74187f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-x64.exe", - "hash": "91e5bbda28824c5e1ad818e372d8f9f5e8275ebda0611c509925c411f48c2deebdbaa5e1d26e91189e67f0c2eaca852c26cde490221de0c32a05c48383bb36a5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-x64.zip", - "hash": "f820b111842973dc7a8ac64e8e7f5c0b2406cabb4fa9a5ad89a521f1515c5cb64789eb17a113854bd574cbf9cbc064c78c7957564fa28c86f4a42be0286aa03e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-x86.exe", - "hash": "20d64a57307b811557e4efbe513418c9587c94ead25887953236abc4443be351786200b4946a9b0fe6d9218c5381e5d41e907743feb5ae03e9ba58c01d0973c2" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-rc.1.21451.13/dotnet-runtime-6.0.0-rc.1.21451.13-win-x86.zip", - "hash": "233925dc1cbe4027688ed81654ebaa22698646e2847137fe7b34d4806ca40bad4cb654563e964ff1385d77d02233ecba868e083b5377505a0730db580fe06649" - } - ] - }, - "sdk": { - "version": "6.0.100-rc.1.21463.6", - "version-display": "6.0.100-rc.1", - "runtime-version": "6.0.0-rc.1.21451.13", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-arm.tar.gz", - "hash": "8461399292a7dedcbd31295bc6b3e010b0ac0b69dc742026bdfe795780543b9458a3df343d83528d5a0eb60b774ef535aea4f8d3061bf151d7dc90adccf1ad54" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-arm64.tar.gz", - "hash": "d1ebb53cd36617a3e02dbb759a842d2f62ba70b71b528c31e7c76d5137b655865c570c8ad50a0f206264db836afe83e3fb42037bf80127d179cecb8f7b3f28e7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-arm.tar.gz", - "hash": "1e7f43770e67cbdf9c122094fd536ded8fc7120e4e454f833d33608a0732a5481a0b2f5807a1648fa0508da64264ae754714f51ee7aa503913fa74d2423349dd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-arm64.tar.gz", - "hash": "f93d5a72541e676cc26ad851c87738f67ce2b63b85f5fa08d7eb391c6e1affbf55063b57775b6f56a3fde74218d14e0d5316fa6a38d52765d30d9f4fe618dca8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-x64.tar.gz", - "hash": "d5e3f876f8e82fd93d6a0fe17a45459514b98721a19301ded10bca1b10bbc711b4dcbce43292fc77810b04b39e702eb4b97522e05e97069ad938909613ac16fd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-x64.tar.gz", - "hash": "a1d1de7950d0a7221abc4aa73221a5e7f5093a7aa2142ffb89691c3c1ff605c84574ff9375f83d3f16848b90245bc941f66b3d4b22ce6a4c9845f21bd1eb868e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-arm64.pkg", - "hash": "7153abd8a47e76f53dcca305c502cf227d80ce6455c3a272daf33efc70a1d06501ce4515a8de3c15695dd14b63f262794a0dc393f132d3acad3947263dd79669" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-arm64.tar.gz", - "hash": "646fcaa105db75df2ac9dfe6c41018dc0ad317ff8f4cb419878435c79389b15549cf470c5d649e0bc45e3b42353991a598a23e0c3b41beab3ec92ebdb6afb4d6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-x64.pkg", - "hash": "8c4d44b07056a3db6367e82c294bd524330a724754fdf5ae8ca56c39d40729f24e4d66f6ef331d7bb2d4b0f7ff70eb18c79ade143526499094918308b6cd4ceb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-x64.tar.gz", - "hash": "d12ec4de477cf8d067b54799d179692c2397e7c68847eaec7d7941ca946868089e7b576939a7108ac323c0056176b12c32dee532f2361eba2b1c43c8e50a2525" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-arm64.exe", - "hash": "30e8b09a7c9d754059b545fac96f925870bee6b88c4bd0a429402a3558a8ebdce55a385b4898275035af7b6d44cff3ca283fb221c19b2ebb5dfa71ccf8e5cca2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-arm64.zip", - "hash": "fada909f655fc412f08095f977ff3640ee54a799ce02eb34877b5325e1437ed0fb1f217730456be3cd23a662057ab086e15be269702396c9bbf83fe026969b05" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x64.exe", - "hash": "28874389ca1085ea9567c0e6fdb35c897980242fc1d22a7bbc139fbaf0726aafd0910202e47850cf4e36a3b25ef74856e09c6169f4915b7709f9fdf79aaee509" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x64.zip", - "hash": "96d807e79baa7d69d9248736ea9a63ddcc53281a63765b47dcfd9ded24038cc445834647ef375ffad17ea83aee6f95d234109825f885353ccca73f6684a5acd0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x86.exe", - "hash": "da0c7334050a781eb93d0660ce71e54e7a4d81ca73b83634a245e13f0d26aea985eceedd63a5c1a2ce41e107ea244a4c45f33dd83ca7747f8515c85cdd49183a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x86.zip", - "hash": "d00bcd9fc6b3c14f700007a2425d1ee4951a727769639b922c6bc993f43aef4ac7be0143f2262f2679f55de44c47b766ce158083ab989cae200fc5285d27df20" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-rc.1.21463.6", - "version-display": "6.0.100-rc.1", - "runtime-version": "6.0.0-rc.1.21451.13", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-arm.tar.gz", - "hash": "8461399292a7dedcbd31295bc6b3e010b0ac0b69dc742026bdfe795780543b9458a3df343d83528d5a0eb60b774ef535aea4f8d3061bf151d7dc90adccf1ad54" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-arm64.tar.gz", - "hash": "d1ebb53cd36617a3e02dbb759a842d2f62ba70b71b528c31e7c76d5137b655865c570c8ad50a0f206264db836afe83e3fb42037bf80127d179cecb8f7b3f28e7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-arm.tar.gz", - "hash": "1e7f43770e67cbdf9c122094fd536ded8fc7120e4e454f833d33608a0732a5481a0b2f5807a1648fa0508da64264ae754714f51ee7aa503913fa74d2423349dd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-arm64.tar.gz", - "hash": "f93d5a72541e676cc26ad851c87738f67ce2b63b85f5fa08d7eb391c6e1affbf55063b57775b6f56a3fde74218d14e0d5316fa6a38d52765d30d9f4fe618dca8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-musl-x64.tar.gz", - "hash": "d5e3f876f8e82fd93d6a0fe17a45459514b98721a19301ded10bca1b10bbc711b4dcbce43292fc77810b04b39e702eb4b97522e05e97069ad938909613ac16fd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-linux-x64.tar.gz", - "hash": "a1d1de7950d0a7221abc4aa73221a5e7f5093a7aa2142ffb89691c3c1ff605c84574ff9375f83d3f16848b90245bc941f66b3d4b22ce6a4c9845f21bd1eb868e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-arm64.pkg", - "hash": "7153abd8a47e76f53dcca305c502cf227d80ce6455c3a272daf33efc70a1d06501ce4515a8de3c15695dd14b63f262794a0dc393f132d3acad3947263dd79669" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-arm64.tar.gz", - "hash": "646fcaa105db75df2ac9dfe6c41018dc0ad317ff8f4cb419878435c79389b15549cf470c5d649e0bc45e3b42353991a598a23e0c3b41beab3ec92ebdb6afb4d6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-x64.pkg", - "hash": "8c4d44b07056a3db6367e82c294bd524330a724754fdf5ae8ca56c39d40729f24e4d66f6ef331d7bb2d4b0f7ff70eb18c79ade143526499094918308b6cd4ceb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-osx-x64.tar.gz", - "hash": "d12ec4de477cf8d067b54799d179692c2397e7c68847eaec7d7941ca946868089e7b576939a7108ac323c0056176b12c32dee532f2361eba2b1c43c8e50a2525" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-arm64.exe", - "hash": "30e8b09a7c9d754059b545fac96f925870bee6b88c4bd0a429402a3558a8ebdce55a385b4898275035af7b6d44cff3ca283fb221c19b2ebb5dfa71ccf8e5cca2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-arm64.zip", - "hash": "fada909f655fc412f08095f977ff3640ee54a799ce02eb34877b5325e1437ed0fb1f217730456be3cd23a662057ab086e15be269702396c9bbf83fe026969b05" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x64.exe", - "hash": "28874389ca1085ea9567c0e6fdb35c897980242fc1d22a7bbc139fbaf0726aafd0910202e47850cf4e36a3b25ef74856e09c6169f4915b7709f9fdf79aaee509" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x64.zip", - "hash": "96d807e79baa7d69d9248736ea9a63ddcc53281a63765b47dcfd9ded24038cc445834647ef375ffad17ea83aee6f95d234109825f885353ccca73f6684a5acd0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x86.exe", - "hash": "da0c7334050a781eb93d0660ce71e54e7a4d81ca73b83634a245e13f0d26aea985eceedd63a5c1a2ce41e107ea244a4c45f33dd83ca7747f8515c85cdd49183a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-rc.1.21463.6/dotnet-sdk-6.0.100-rc.1.21463.6-win-x86.zip", - "hash": "d00bcd9fc6b3c14f700007a2425d1ee4951a727769639b922c6bc993f43aef4ac7be0143f2262f2679f55de44c47b766ce158083ab989cae200fc5285d27df20" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-rc.1.21452.15", - "version-display": "6.0.0-rc.1", - "version-aspnetcoremodule": [ - "16.0.21245.0" - ], - "vs-version": "1", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-arm.tar.gz", - "hash": "a27bb55fc10e492f47f15b99d9881832d6732b2cfd5c488ebe29bc8f019586a3adc2f9065af45210c7c68251fa540e8474c68ab8fa73f44d496ccb659bcfc5ea" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-arm64.tar.gz", - "hash": "9c52b365920b8fd6e819ce207018c967c8e3ffa9682da8374c113ae23fc8e63ce6a88d66fe55ccce94a4b7cd7e29fd3161c2bb5c72a136448c8cc6eb55889c97" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-musl-arm.tar.gz", - "hash": "8e823af8ec694a869e4d5fe0356e7760e54726dc2e11c4406bc0d1b7bd9ba1aba99dd25f83bd78bb9b60bb88624beb1d3e866a94f69fd0ce70b142a08e59cc9f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-musl-arm64.tar.gz", - "hash": "d1fc927a9ef473080e500ff250f26c5020e3a60f0303570eb5e37f7adaa12812b139472d00f7d260463789b8f0c103e4eceb65e8764344b9c390fa9a8cfccd21" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-musl-x64.tar.gz", - "hash": "c34e939169faafd9ffc2189695f7e5e134170b131850606c781b80801aab3f8b73a6c4bdb0dbe9b104b065e0585339deec97da367662ed0cf1f0e7dcd009cee1" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-linux-x64.tar.gz", - "hash": "9072abaada96efca7761140de6e789d5fb79b59b6f94924806c62e56498d8412aa34b51d8bbba843ae1be52d3f0ed0e8194e01112889d50b589b29f1336f3598" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-osx-arm64.tar.gz", - "hash": "f4cfd514793d5602513948b331f4c0e1693cd4e3ed21388f613d7124a2831efb086201024f37f12b533517be0561c8120131dbfa8e87d94ff50d1d64703683ab" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-osx-x64.tar.gz", - "hash": "d813882a3144be33bbc5acfc2185d4ef033513e072dba918c2dc96395694b108b891a529ef8a203339e19f5da25fd747db65d2cec86d90c24a7e25e5c9b70ea2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-arm64.zip", - "hash": "be7bf92984b7171b7f020fb2dfd3ba6ffbac0c226e28948af1ffeae5ed053957b07953b40db3e70152084eee605a9a3d184962a9617da5a5747544df58a8493a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-x64.exe", - "hash": "4d740023b920248daad4cceda004b1de36074ce6e2eb99b6b20638d671c59abb8ac707d3debd91d2c45473b4c14f4f053ad47820aec56c729690a5f176708881" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-x64.zip", - "hash": "be77d99cabc7206072776cd3de8add9f6ba0d4f6ee02346807516a7516b8ea18c5a1828f1872ab3fcdbadf7e4d7fe4bbb0652bef679a49cd0b6163569c038083" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-x86.exe", - "hash": "607e71fe7688401ab0d62fdb6ae5fb6c6ff7e9960324df300cc361f8cad4b9d2ae1b973518ed6d719c3c40100da9a0dd4f0688010302f31740d157aa76f5004b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/aspnetcore-runtime-6.0.0-rc.1.21452.15-win-x86.zip", - "hash": "0130a658fc89cd35c0aa3fcba51f2be428585403c37c36b1600cf615a719c2ecbc606f56fd9b242d1e75f8a65b52894da85b5dcef0aaeacf75cbd9e19023e9a3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-rc.1.21452.15/dotnet-hosting-6.0.0-rc.1.21452.15-win.exe", - "hash": "534ee8fe6ecdb96e79c3fd99823fe1c97415e2069cb22b15b4cb9296ce06874bbd60023d37a551898f7001f90068a1990fbf01b5dae52a2a16de7fbb99def979", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-rc.1.21451.3", - "version-display": "6.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.1.21451.3/windowsdesktop-runtime-6.0.0-rc.1.21451.3-win-arm64.exe", - "hash": "fc311cb51bd997c2a1e91aed41b7fda68d184a706701b61277353f6665a1c1aefa544ebf5e5266810cd5b0d36677432e0d37661428862fa1ae766060a4b6349c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.1.21451.3/windowsdesktop-runtime-6.0.0-rc.1.21451.3-win-x64.exe", - "hash": "d7bb90b1dba53ef1d62e6b49bfa4daaf52c74af5b1e74491ce61d65daa61b1afff27ae6d53289b8db4ea1acc50e8847c705ed50eb70f50788d28ecb6f1f5afff" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-rc.1.21451.3/windowsdesktop-runtime-6.0.0-rc.1.21451.3-win-x86.exe", - "hash": "6b4bd720c567add7ccd02d34b96ef65a91c813def04a63e79af5cfbdc7649f155909cb7962fb1b1d5cb586226e83bea63daf6b1b80d39545a54f0ecf53265197" - } - ] - } - }, - { - "release-date": "2021-08-10", - "release-version": "6.0.0-preview.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.7.md", - "runtime": { - "version": "6.0.0-preview.7.21377.19", - "version-display": "6.0.0-preview.7", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-arm.tar.gz", - "hash": "9aec69078629bdf2c84c91edc647ab05d50845d90cd698f22d39f6f54ba7d9bf3050ac87797fa7fe4c098a0bb63f456ecaa050b8504359d365fac22d40e74fea" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-arm64.tar.gz", - "hash": "6c084b0dcd8b56cbca947adf93fe715c8531e39bb081c3b2ede1301a6177effe2e6db7d9746d9f3c92f9d878bed8f9dad0ffae92ab3359afa6c8935d03b95958" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-musl-arm.tar.gz", - "hash": "b98329ae25eab636ec18ae1ede67d2f0d40e973e2671de62248195076bf3ffff8674235cff80ff95a0cafc6e9eb4191294bf48ccd13b44c6e4e5b6d667916a57" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-musl-arm64.tar.gz", - "hash": "23fcb52f7bae7fab181eeca125519bcabf1acc118804e93fa88566e5f588000e9f910152cd8655c6f02604f0b4e50ed19ec2afb92062fd26b671b00e5b9c2929" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-musl-x64.tar.gz", - "hash": "060be1fe4d0b7fb5618d5a1f9482767667c96794111188678c5a9004a5961381f0856f57a6cd77f4ea1883a3e523f1f5c35ec6c72fcab67c9aa725ad8e5b0e6b" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-linux-x64.tar.gz", - "hash": "959ef85c0cb5c9aa8dab90f5e09d9f9216d546a32b5338f389787523b9c4b48b911ac42a4e6f8c9e1b656bc8f0173ff93beed12439e3f87a52b84d810969969a" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-osx-arm64.pkg", - "hash": "cb3ba1c195a55ea620b019bc224fab201530b9cb4c9600cb90d870eeac6ad1011dcae93c690dc1073c258357d52961eb586945f06df609aeb109dc254cae0f68" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-osx-arm64.tar.gz", - "hash": "9e069e7b231e86ba4694da48351b81342ef1b1df78ab619ae17acef498f0fc02bf52a2128da6a7e01c62e42ef5f5d66bf0a2113a36c1f4e4b4263f37c1b5c5cf" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-osx-x64.pkg", - "hash": "c199a5407e1dca00f3ef709772a0350c4467a772f23ee289394867170ba5ba32dcd5d069d4582d60c42e3b096a8feefae002512819b62dd5a1f9170e097959c7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-osx-x64.tar.gz", - "hash": "8b004c550ab934e71fd2c8cdb4407118b636314290dc6c405be5216da3971f03cf64ddfb258331a6c93bce45c2c51096c2de3f728842f7cd2e2445af090ce5f6" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-arm64.exe", - "hash": "399c509b7a86e924c7dfc7516efffdec2be2122eff8604536a0eb47ff6054dc9ee54cbfea80fbcead8dc7d39c227737e59644cf896ff3a3ad63b531e7eabecd6" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-arm64.zip", - "hash": "b6baa6d78720249ceb458dfd18ec01c7b03cdab0b57eeeaa93a597893540d328bf8fd32db254eee3da7bd5fcdb67b0e3440bfc84661ffde203e3264a4534f627" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-x64.exe", - "hash": "499eb8bda1955f6c9921cc64e6ee207dd45d73e782fde5afc6067588b6af7ab1674eaed9a76e1511b727e56d5694423da73118113283795b86b9d7182f5232a4" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-x64.zip", - "hash": "0a9542a9aec6b5a8e57934ad4f903ba194f8d6411a10744adffb7398f51b16b65ed8c0cd0d34b90fab7fb9f55d24aef066176314e33298c2ab78af061e0039d6" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-x86.exe", - "hash": "c4f7d9cd49532dbbba7ce5748047da86cb0ff36b4c8f38e91ec42337c8e7ea339c9a2fe792d8c5b98f8ee1154e859c13f653f4d5301f71e8d9ffcb4c493f6ea1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.7.21377.19/dotnet-runtime-6.0.0-preview.7.21377.19-win-x86.zip", - "hash": "0516db5a6b0edbf0a9d891d9a57f4a39816bd1d8b30f7d09302728bf7c66a9c4284722895aaecca9c61f69c72f03912b190ad141aadba6bf32887988f82cec8d" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.7.21379.14", - "version-display": "6.0.100-preview.7", - "runtime-version": "6.0.0-preview.7.21377.19", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-arm.tar.gz", - "hash": "d6be3f54f2808d7522938b33b386a8616020c2b1cf34d7ef628fc29ea3cfa01eb8acf92b9f771d89ab71ac8c776889c9e2d0a764cad866295727115c8fc2b047" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-arm64.tar.gz", - "hash": "7ee5fbb4e700bcc8a840ec950a764c6ec4cbb8e23394d75a3b4b547e1178f0ae16b0edc262b0fbec5bb9dde3e870225928b147b440f1c27ffada60c03b903dde" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-arm.tar.gz", - "hash": "54667853aac519a77c48822134ef146d0cfe64c517565ac606d77769fccec2458a22279ed1e44e278f5d109bd59ae1324b134c0ae2393e61f8c6f744233081d6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-arm64.tar.gz", - "hash": "c4df610c439d6b37aafdd0a5d6ce9934c48f25ab162485e37ab5e3847884d5197e0bffef64494789a6430fbefd3ab2f82617a4518be3bc9c4a36d6cd212c8c35" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-x64.tar.gz", - "hash": "c4c8cc022bca980c9c22da4d34de683ec3bddeb6d2a8e7c91353c5bd881e45acd6fd244f7c7e6313abefbc58fd680d13736f8bb8a070b3469e7aecdb815c1d1f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-x64.tar.gz", - "hash": "c8757325407b5eb1e3870f0db87eeaf44df978313c0b2a7f465ec7d0a5647317cba597264ec81577ea0b3bd97bd33d782234392e8e592e073126792a0406df7b" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-x64.zip", - "hash": "bd14d4271060155547fe0dfaca3d3c839b00d36e2204d88b47c5d57a25f7a70d96c66b810bb125769d815ea368c03ed31b678d80a061009fa9c56d200027916b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-arm64.pkg", - "hash": "4d77a41c5635d0ecde0db45f0c5d648217bf73e4d5aeea0ed8ce45efe29b17f50021b5f3569d3a5c94b05e6a32e78abab4cb9e4b9c660ea3ac4d7f38ea1a68e8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-arm64.tar.gz", - "hash": "aaacc91eefabbcecb9aa37590cdcff48c0d568233c4cd851237beaa4da158868d520a24e1494d47959acca9f210f2e01c3c2a05c3560ce3e1e0734d1ba8357e0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-x64.pkg", - "hash": "1d08c3f11d210a57403031910b982c4f6b14787c9f7f7faadb23099a7381bd3b7b73779e9f6338d2dcbe2c8c24689972a05cde394d1f5cd36e14dc1aadf239e1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-x64.tar.gz", - "hash": "45910c4c85e7a689b2d98a4b5c3d901da920274bf5ec5e8d52bbc35e46a0345cdf4b69cb36fecdeea28453788998d14909cdb9324792283b1d8e32c5c64a8424" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-arm64.exe", - "hash": "3f9bab1b625c4d04548f2a494a85735a1ac1e1ffb3b2513cbd4f85255605ae7abb75351bdc7a87377a8a779d8674efc0585f84f3cb136ce767b6f9455a695e8d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-arm64.zip", - "hash": "8dc97320b8fe9dd246bba73a3cc722353cf42034621ee3f0108a6b8d057d1f7ba70ad70de004a1f49779cf618210395478e7e7f3103b224cba751f0d8979c83c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x64.exe", - "hash": "974150069371a86747c07d101a5ad2c613fb2fcc8024e7fac258f633a21eb8d1d3fe1c9c5e6bfb39220b6df6123fbaa25b0415a663c787023c0e44594d081fd3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x64.zip", - "hash": "0f164ef5248951762fe063f118d8172c080cf1797e38be858f62637833fb1fb0f19e25680c32ee9e8977e9da36449eab7e6bad36245720f352a91854868c51aa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x86.exe", - "hash": "a6163377b28f1b301526e881de40e3f800a2812208a95b7c36ab40480ab72282d6d53b48f00fd095410ace292e685838ed9c5639163aea43c1c60dc0abd37eb1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x86.zip", - "hash": "c584511905e31981367a28805b8a0ad582eed788eb1f5a838bac9164b932cc965c74e5f9485d87346f9d67b00d0fa81cefa950790b6a999d02459d248edc6b20" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.7.21379.14", - "version-display": "6.0.100-preview.7", - "runtime-version": "6.0.0-preview.7.21377.19", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-arm.tar.gz", - "hash": "d6be3f54f2808d7522938b33b386a8616020c2b1cf34d7ef628fc29ea3cfa01eb8acf92b9f771d89ab71ac8c776889c9e2d0a764cad866295727115c8fc2b047" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-arm64.tar.gz", - "hash": "7ee5fbb4e700bcc8a840ec950a764c6ec4cbb8e23394d75a3b4b547e1178f0ae16b0edc262b0fbec5bb9dde3e870225928b147b440f1c27ffada60c03b903dde" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-arm.tar.gz", - "hash": "54667853aac519a77c48822134ef146d0cfe64c517565ac606d77769fccec2458a22279ed1e44e278f5d109bd59ae1324b134c0ae2393e61f8c6f744233081d6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-arm64.tar.gz", - "hash": "c4df610c439d6b37aafdd0a5d6ce9934c48f25ab162485e37ab5e3847884d5197e0bffef64494789a6430fbefd3ab2f82617a4518be3bc9c4a36d6cd212c8c35" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-musl-x64.tar.gz", - "hash": "c4c8cc022bca980c9c22da4d34de683ec3bddeb6d2a8e7c91353c5bd881e45acd6fd244f7c7e6313abefbc58fd680d13736f8bb8a070b3469e7aecdb815c1d1f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-x64.tar.gz", - "hash": "c8757325407b5eb1e3870f0db87eeaf44df978313c0b2a7f465ec7d0a5647317cba597264ec81577ea0b3bd97bd33d782234392e8e592e073126792a0406df7b" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-linux-x64.zip", - "hash": "bd14d4271060155547fe0dfaca3d3c839b00d36e2204d88b47c5d57a25f7a70d96c66b810bb125769d815ea368c03ed31b678d80a061009fa9c56d200027916b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-arm64.pkg", - "hash": "4d77a41c5635d0ecde0db45f0c5d648217bf73e4d5aeea0ed8ce45efe29b17f50021b5f3569d3a5c94b05e6a32e78abab4cb9e4b9c660ea3ac4d7f38ea1a68e8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-arm64.tar.gz", - "hash": "aaacc91eefabbcecb9aa37590cdcff48c0d568233c4cd851237beaa4da158868d520a24e1494d47959acca9f210f2e01c3c2a05c3560ce3e1e0734d1ba8357e0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-x64.pkg", - "hash": "1d08c3f11d210a57403031910b982c4f6b14787c9f7f7faadb23099a7381bd3b7b73779e9f6338d2dcbe2c8c24689972a05cde394d1f5cd36e14dc1aadf239e1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-osx-x64.tar.gz", - "hash": "45910c4c85e7a689b2d98a4b5c3d901da920274bf5ec5e8d52bbc35e46a0345cdf4b69cb36fecdeea28453788998d14909cdb9324792283b1d8e32c5c64a8424" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-arm64.exe", - "hash": "3f9bab1b625c4d04548f2a494a85735a1ac1e1ffb3b2513cbd4f85255605ae7abb75351bdc7a87377a8a779d8674efc0585f84f3cb136ce767b6f9455a695e8d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-arm64.zip", - "hash": "8dc97320b8fe9dd246bba73a3cc722353cf42034621ee3f0108a6b8d057d1f7ba70ad70de004a1f49779cf618210395478e7e7f3103b224cba751f0d8979c83c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x64.exe", - "hash": "974150069371a86747c07d101a5ad2c613fb2fcc8024e7fac258f633a21eb8d1d3fe1c9c5e6bfb39220b6df6123fbaa25b0415a663c787023c0e44594d081fd3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x64.zip", - "hash": "0f164ef5248951762fe063f118d8172c080cf1797e38be858f62637833fb1fb0f19e25680c32ee9e8977e9da36449eab7e6bad36245720f352a91854868c51aa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x86.exe", - "hash": "a6163377b28f1b301526e881de40e3f800a2812208a95b7c36ab40480ab72282d6d53b48f00fd095410ace292e685838ed9c5639163aea43c1c60dc0abd37eb1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.7.21379.14/dotnet-sdk-6.0.100-preview.7.21379.14-win-x86.zip", - "hash": "c584511905e31981367a28805b8a0ad582eed788eb1f5a838bac9164b932cc965c74e5f9485d87346f9d67b00d0fa81cefa950790b6a999d02459d248edc6b20" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.7.21378.6", - "version-display": "6.0.0-preview.7", - "version-aspnetcoremodule": [ - "16.0.21209.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-arm.tar.gz", - "hash": "530db7ac2ca468354407ba4008cccb04f38661d2fd9ce417d93f88ac80b39c71567e39cb2ad864072b48530fb905e5da83b7eb6c20c254b1da2a67807e3a874a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-arm64.tar.gz", - "hash": "9c2054ae20161d0b8e823e1e079ebc0ef4d9840639afb464f0b25eca73cb15c05ac3d786de15c4b3147ddbc6eff0bb740f96aac908dbc70fb1eaccc87358c430" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-musl-arm.tar.gz", - "hash": "07323dad5ac21937514e9092fcaf4710359f36a9cf716a7589ec2168cb44f0564810c7bc71f29cf7deaf1252e168deb7637a8ab13329c09346658088c0fbff71" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-musl-arm64.tar.gz", - "hash": "a59295332736d732fb18dc1a49727eff7c09d3770cea93c1f326d9e1e7dde3afd42d7c72d8e1ea5c4eec070ca9fc6139ada31a515ec56f74aca0c9000eadafc7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-musl-x64.tar.gz", - "hash": "9c26f6ab72569d347eed4772997ce3df5598ed0f2b21f5042f4da321d07ba97e6c1d1b73617ea26ac1d846a96119c5038eecbf3874ac21bb3a2b5f04daeca8a2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-linux-x64.tar.gz", - "hash": "24e8626d8a2bd126a786ecf97d68e705571567357f6b7370a2b80ac42eff2b1b6e14734be4c0317e2902ea01f2903b285b1e669e4ae76f80ae876dfbf9f0d0c3" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-osx-arm64.tar.gz", - "hash": "1ed0e9152408ff8de5cbd0a978a3e8f9f7218a9a93841780b095c8be0863340e1356534374dee03714ba80754440139f866e0e496fe36a73529b6bc38930ae5d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-osx-x64.tar.gz", - "hash": "54a0a17ed86b0e487f527e11347bde29570baff16ceada323e4ac1315ed7654576ed69bea2fe68d42124bb6862e169bb5fab965287541e77c792e23bf90485cb" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-arm64.zip", - "hash": "d91a8f16542e545b81988c539d6d64efa24531027c62da6e183442964e1eaa5ee2fa49465d900fdd29165f3f74d3a3852fedb0fa0ab91d43ff8602d002ad77d2" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-x64.exe", - "hash": "5736d825e2943d4414f9a767fe313f00a0c5e747fca16ab35a0026f43cfb38c366be18ed77fc800a2c6cd1694923d01a0325effc42d8078b696087c49ea11b7a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-x64.zip", - "hash": "eb2429522872ed1cd3a770f5694c783a90617efc89931b23b8e213419bc36070e3e8c3717a5376d44433b4b97352da534cc1ed287088a5d07821671acd311326" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-x86.exe", - "hash": "b2cac7ba9060ca857441921ed4aae21d6aa5f7ae7d767246481f9275924e4aafa7fa383440eaa8ddbf813852937067754f44313c28807ed13867a6b7c39be9bd" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/aspnetcore-runtime-6.0.0-preview.7.21378.6-win-x86.zip", - "hash": "fcfed7e62dab9561d1792a9048058f09d3e6e8be3dcc7c1eccac856f60304d33d596e4a1d073a7297ceafd9d96eab664a161e27454f7392256e121c42526ab0e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.7.21378.6/dotnet-hosting-6.0.0-preview.7.21378.6-win.exe", - "hash": "e8234b635cbf8e3d1cc7023dd4ed22fee4cbaa6b9c9572a1cb0f16aab798bf61fb88a8ce6ece80a2c8872b89a187b6a613b11f9d92856b570914690b5ac2fdce", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.7.21378.9", - "version-display": "6.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.7.21378.9/windowsdesktop-runtime-6.0.0-preview.7.21378.9-win-arm64.exe", - "hash": "2ee868493e066a9b14a7417dbc49e955e1465c31cea9dd8c180ae701dd8714766849110ecf75eece4f73b98c338ff13f1a65da50addc97029362d66ccad20913" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.7.21378.9/windowsdesktop-runtime-6.0.0-preview.7.21378.9-win-x64.exe", - "hash": "7d177969876ca3df325c90e58f12d0d5b9a810f9001e7971c44784a9cd837c80cc5b2385e23db8ee0b2129eb7261702ee9ac9a4edda3debf1b92b2571fa6c0f4" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.7.21378.9/windowsdesktop-runtime-6.0.0-preview.7.21378.9-win-x86.exe", - "hash": "cbd066897a63a3f831d32bcf0f712762c25c4982de8aa56e8af7241c44b53817daa2efbb4dfd9a78a5a6b24a08696e64aa4e2e6441761fc6667c35769045b84b" - } - ] - } - }, - { - "release-date": "2021-07-14", - "release-version": "6.0.0-preview.6", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.6.md", - "runtime": { - "version": "6.0.0-preview.6.21352.12", - "version-display": "6.0.0-preview.6", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm.tar.gz", - "hash": "7983d25361d7acf405ea2296e94231c3f313791d775fb44aa7b8455c17a5908a983ba43a0a9a67daf83a9fdccfa87f6bce6b931bbb43bb6896959ac00819ac36" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-arm64.tar.gz", - "hash": "6d05901324593d52b39d26ab09649377c888e22346f97e4b98a7487798ae2fe3cf9e2afc6b835b1b038890c6b9aa91741c91f9427958e138050d86cc00c1c673" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm.tar.gz", - "hash": "0cb731082c257294b97a2a0536ed9fc4f156cdfc58e15f60ffb575d43c082ac68ffadd63137b0d9b29a459f782c9ef86b972c8c42c15c567d570e069be66d91e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-arm64.tar.gz", - "hash": "95f6d50107cbd82afa6fc4a637109430e5c1162689e898f24fbc62ea95eb75ac7d122dd27d6b89c86212265fdfcbcea49356ea52eecae5ebd76b928e515a2b9d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-musl-x64.tar.gz", - "hash": "ccd1da6558a1d54e5ad4b651684990d56b7516c5968371f04a9d8f59c847073270ff916b185a1cbd93ddb362ff44e358db1be0335af12bbae0aa22db845057d4" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-linux-x64.tar.gz", - "hash": "b060e5c1d568cadfd813d8b1dd3b378fa7465e47829c4b6831eeb6af9760db456a60da54c99a705b68269ddb8287def6119814514d24a38ed2f0d08464381211" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.pkg", - "hash": "ecc91d0e6f727452b3e48e69514ab2373fb226b6bcde107b61d6d53767371b6aa60b133940a2eb1bf813a2d8a9c8c6aa53ef20c6111a24950456cc73a77d259e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-osx-arm64.tar.gz", - "hash": "1dd308ad7582358f82872478369ea69d2e4c53a73fb63d22c7d4e4a87cf01df4fa980710d1a1346bfcd589437b9d3a037e9801baeae4637fc8fd44d7156dab78" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.pkg", - "hash": "84da9c4cb6b67bfdde401008ed30dfc79e7c4229a90a3b44e4f60b4523f3ced4ac112e93a09368d480d3614b9e1c5039ea6119f7157ff6d532d95ae7466a926d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-osx-x64.tar.gz", - "hash": "fab8e70b0aae1ce65fb7de263215b6e2fdce22d491a1041017dce88b8a4ddc354781a65fc5ae9e5a15448f1192cd1321c876659d2b44332389de01fbf3e371c8" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.exe", - "hash": "9b75ab7057cf1edc131081e87e3921e5d96554d7a3615d01ac9f7b236a825b0b29bc5a83dbb625fdf89b27f341dc84e339affa788d4eb07c0b9aed0e194152ed" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-arm64.zip", - "hash": "bb37d1837f877d2164aa18c1866af7c97cdc281580a0a4403dd4ecb2edc8b4070bc00ff1fe2dae7be44e132d48d828ff6d483b6eb4e5a42a4ef0e4afb1cbc6de" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.exe", - "hash": "77f4023d0ec8ca1aef1f0e6eb133e565a7e0f40a5079fa8b1548c850496a728246d111d5603070b4dbc6dba9eb192fa2fbe52a179a97b75c6336dd1e2f51aea3" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-x64.zip", - "hash": "d2d6b16fd5eeb9b39afdf2e0b6ce732fde0e90806e6c63dfaf88434d306251e5cf344b55e253cb6e7f38da19899e845a76a8e63ed7836f94ecdcd0256fda73e4" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.exe", - "hash": "87dbb4ec5249ced9644bc30479b6b273f27d8de51416167b0a7daa7d9e84bd93c42fabaff93aabc536e0ef60dbfc34f9da37a76ff032f5e74a569dbd1e816c4b" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.6.21352.12/dotnet-runtime-6.0.0-preview.6.21352.12-win-x86.zip", - "hash": "aaebb57a19a965ac998e3c6bd2ed4f4a792cc21a49e32ba74754e4d66aac82a461821bb0f704fd42bb8b9af13c9fc459e7e6c86c5c67def4e225e72aee4dfc9f" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.6.21355.2", - "version-display": "6.0.100-preview.6", - "runtime-version": "6.0.0-preview.6.21352.12", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm.tar.gz", - "hash": "dae9d60048b453f30c74668623e6526fe9ec1a4b55f4c5ad13e250b797c253b3da33933170d0c1852587a995393da29a63fb6c2dd7d08857bbe98ca038e28444" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm64.tar.gz", - "hash": "44202a25b62172edac367b87b4a1521a4c009defba8d1818fdad7436d58cab54894dcd4d341b49f34ac83842ce76a080757bf7514d9ba03cd26152310fde61c3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm.tar.gz", - "hash": "6a9a0e1affde3766e8b06a1bf105abfdc0d02d33e0f9b3512d4c419f4443a24bca171dd5231e999fae5581ceaaee8064ac5e1c6dedc62da2bd29fa3c9a5a06a3" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm64.tar.gz", - "hash": "367e6a90e2527e0f1f3f63a245a7026e64d9d4407159f620bb2c4c90f3981266bab55e0adcc6e7b9861c1b8be50867dbfa33ecb7ba4c56936029aee1fcfafdae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-x64.tar.gz", - "hash": "3674633032ddd934ba743de7e3904ae033c55f2d649db89cb76e3a298a9871932d46687586215719a9c2540e0c9706fa3cd7b285a50308fc5b45621014bec8a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.tar.gz", - "hash": "b4d9282a43fc244f6576ea70b03af1727b5910481f3d5c51c0535c7dfffbc943742041bd8174fdd7ede677f9c99ec917dd3c119710b4a2169862eeacee026ac2" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.zip", - "hash": "f200b8fb4699c28aa60b172f590eb3ecf9a58e1d2a102377f7ed451f9a72f077cf0cea9163363c1cd746759d65e89cac4776d9cf3faedcfb43d1a8d2c5542c59" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.pkg", - "hash": "6394e0c2ea126574a3c518e23dce493b67279c1e31ec20088504d669376ed9d5579f6124f2df92e23e847e3dd9673ab23cbd20f40d234cc49ff86469f1567ca9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.tar.gz", - "hash": "702781aad7793fc74a04765421dd7d037630f8ad498e0ffb82c3e48e88ed799498755572e34c6e6bf8065bcaf8eb2a417056ac300ce1b4b0f114c049b396183a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.pkg", - "hash": "27723bd0c643264fda9ce49c81de1c56ef2492e1b2e328271008eec52d90511e80e6d75d8c823555c258ef306e25af926f169dbc9052c37f3acf630edc6a57ce" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.tar.gz", - "hash": "b9e74e48a64c4f9123fe9ff6400797394d8048aff8a0dabda53fef91b00dec41030d2c41d42dc1af972f7f3d46edcc44585a43bf57c36732a7280f741e672dcd" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.exe", - "hash": "bf046e4b05bd4bf93c5c9955c9e6668626e1067634738bf053980c912cfc1310b6dda0d00ff3a54c1610143c89c7caad1b9cf891d5a9ea1efd18d3068b4d4819" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.zip", - "hash": "ea573499f65e146bbb7cf2efe663053053d8cc7bf7fdb12ff4257826593a0f0ba4cc703e8a79492a6bbf5fb353cecc931edf3d1ef4e72108eca20c7dd0a4aaef" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.exe", - "hash": "201d3304d45265c4fac2e21b52a7e0b61bca54a12aeb87a0a7ba86eb36b7e6cfa0bd7469cd3d3ce6b6adf6cb6eafb1923543529e773b43ccc72f5a1f539b6e74" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.zip", - "hash": "e126fea62f3719cc2c0cef9858e2dad85b31029e1766f2df091c611396ed5b8f02e3874827a4f30e3d5ef0b7b3a318d8bf9a728c74c14425c42befca5c85b26d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.exe", - "hash": "1d8a93d0b82458cdf5bf0c242598bccf2ab05136822d1917b5724beec6b897c3ec74487af4e13a93bc89eab11342598d2cc1b3ae3d2dccf486cd2311a39ca357" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.zip", - "hash": "b937af04b6533fc124163e2dd4f87d88e188da620622d6117e3a6c4093d8dd9f53d84c8b0936bb4ffd14cb4cd93635dce90e747b432cb12454190646317b8ffa" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.6.21355.2", - "version-display": "6.0.100-preview.6", - "runtime-version": "6.0.0-preview.6.21352.12", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "10.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm.tar.gz", - "hash": "dae9d60048b453f30c74668623e6526fe9ec1a4b55f4c5ad13e250b797c253b3da33933170d0c1852587a995393da29a63fb6c2dd7d08857bbe98ca038e28444" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-arm64.tar.gz", - "hash": "44202a25b62172edac367b87b4a1521a4c009defba8d1818fdad7436d58cab54894dcd4d341b49f34ac83842ce76a080757bf7514d9ba03cd26152310fde61c3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm.tar.gz", - "hash": "6a9a0e1affde3766e8b06a1bf105abfdc0d02d33e0f9b3512d4c419f4443a24bca171dd5231e999fae5581ceaaee8064ac5e1c6dedc62da2bd29fa3c9a5a06a3" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-arm64.tar.gz", - "hash": "367e6a90e2527e0f1f3f63a245a7026e64d9d4407159f620bb2c4c90f3981266bab55e0adcc6e7b9861c1b8be50867dbfa33ecb7ba4c56936029aee1fcfafdae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-musl-x64.tar.gz", - "hash": "3674633032ddd934ba743de7e3904ae033c55f2d649db89cb76e3a298a9871932d46687586215719a9c2540e0c9706fa3cd7b285a50308fc5b45621014bec8a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.tar.gz", - "hash": "b4d9282a43fc244f6576ea70b03af1727b5910481f3d5c51c0535c7dfffbc943742041bd8174fdd7ede677f9c99ec917dd3c119710b4a2169862eeacee026ac2" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-linux-x64.zip", - "hash": "f200b8fb4699c28aa60b172f590eb3ecf9a58e1d2a102377f7ed451f9a72f077cf0cea9163363c1cd746759d65e89cac4776d9cf3faedcfb43d1a8d2c5542c59" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.pkg", - "hash": "6394e0c2ea126574a3c518e23dce493b67279c1e31ec20088504d669376ed9d5579f6124f2df92e23e847e3dd9673ab23cbd20f40d234cc49ff86469f1567ca9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-arm64.tar.gz", - "hash": "702781aad7793fc74a04765421dd7d037630f8ad498e0ffb82c3e48e88ed799498755572e34c6e6bf8065bcaf8eb2a417056ac300ce1b4b0f114c049b396183a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.pkg", - "hash": "27723bd0c643264fda9ce49c81de1c56ef2492e1b2e328271008eec52d90511e80e6d75d8c823555c258ef306e25af926f169dbc9052c37f3acf630edc6a57ce" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-osx-x64.tar.gz", - "hash": "b9e74e48a64c4f9123fe9ff6400797394d8048aff8a0dabda53fef91b00dec41030d2c41d42dc1af972f7f3d46edcc44585a43bf57c36732a7280f741e672dcd" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.exe", - "hash": "bf046e4b05bd4bf93c5c9955c9e6668626e1067634738bf053980c912cfc1310b6dda0d00ff3a54c1610143c89c7caad1b9cf891d5a9ea1efd18d3068b4d4819" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-arm64.zip", - "hash": "ea573499f65e146bbb7cf2efe663053053d8cc7bf7fdb12ff4257826593a0f0ba4cc703e8a79492a6bbf5fb353cecc931edf3d1ef4e72108eca20c7dd0a4aaef" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.exe", - "hash": "201d3304d45265c4fac2e21b52a7e0b61bca54a12aeb87a0a7ba86eb36b7e6cfa0bd7469cd3d3ce6b6adf6cb6eafb1923543529e773b43ccc72f5a1f539b6e74" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x64.zip", - "hash": "e126fea62f3719cc2c0cef9858e2dad85b31029e1766f2df091c611396ed5b8f02e3874827a4f30e3d5ef0b7b3a318d8bf9a728c74c14425c42befca5c85b26d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.exe", - "hash": "1d8a93d0b82458cdf5bf0c242598bccf2ab05136822d1917b5724beec6b897c3ec74487af4e13a93bc89eab11342598d2cc1b3ae3d2dccf486cd2311a39ca357" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.6.21355.2/dotnet-sdk-6.0.100-preview.6.21355.2-win-x86.zip", - "hash": "b937af04b6533fc124163e2dd4f87d88e188da620622d6117e3a6c4093d8dd9f53d84c8b0936bb4ffd14cb4cd93635dce90e747b432cb12454190646317b8ffa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.6.21355.2", - "version-display": "6.0.0-preview.6", - "version-aspnetcoremodule": [ - "16.0.21186.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm.tar.gz", - "hash": "aaf6919f55864234a5eee7126d1a79d2dc3bb2bc0d746cc8302c56dc62a683b6a662140b8c4875576e5c24eab41a993eb848f68dfb3096386a935ff3bf41c9ce" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-arm64.tar.gz", - "hash": "27f9b870debb847fc4da084f2ccab8da3c04684fe8343c0f3aa079a54add5967f3efc1dd8d8a0d2bc92198f2bd03b42e3fc3eb4aff425baed97972397870c8b2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm.tar.gz", - "hash": "50f1c68f64aeb576452ddf11a26e5e2bbb9d713ebb9bead6f8d73b16b8111eafec5841c470332a8700ebcd7234b87d453751857fc93ec6cc20a5fcdbbe42c6ef" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-arm64.tar.gz", - "hash": "ff591e1da80ae387e6b9f53bd0ab5fe778ed3334a0249b68d3b7610b6ee5cc036006bb5b596c8b36f6b6a1e71e12c4d241ec308e7a54ec6e66fc76f552c7c72c" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-musl-x64.tar.gz", - "hash": "4c5c327e431903d05524b4cbb506a6b4fa18f342caf0fb3ce28068fae86c1428c8ae6ef324a7885031d33f91009b5e6eed48b3352ece1351a86c08b42d5d0702" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-linux-x64.tar.gz", - "hash": "42cc384554caef8f72b5410aab196f3d62cdb053dbc56e8bd4e0411de5deac19b9524b7cfebb14c69d583842b477e830bc34e8e9d76f723ea02470488d172f47" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-arm64.tar.gz", - "hash": "9806a42586010817aad59a778dd26461e3633d3ac3d97170863c41ff5f38003eaf91e9f153156d6e92a60c8cc94a5cce6f07e194f0987255938cc4fdf8e464e5" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-osx-x64.tar.gz", - "hash": "781edd3f28c754acf32a54ccb57f507aa839ec637883f21bb4e687f3a234ae0a9fc966b529afd928fc57e4a23bbd797a8ebbae0d2f5a107f9322d7f071c86b8e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-arm64.zip", - "hash": "f7e0b22f34a1a435b76525222c6ef7cd80e845fd2be8fabc3825f764c10d49b56a25e985e2c687b9fdf7df65d03bd27d8e1a77e50c9320e48434ce3fc5542c67" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.exe", - "hash": "a7fa47dc733235f18ca1376486c90c8f1aa44530f57bfef0a632a93cb250c1d41be56d9cffcd6ddfc064cafeb64da23fc01cc8653d82f6343ce3ed760177bc5a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x64.zip", - "hash": "3220634d47d556caedbe3f8b11d37f819226654e52fb5641ac705b34f19105144908008c4557213cc61765a2f78f17c21b076217feb911729d9aa0b2f131fd03" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.exe", - "hash": "eb5af3a38dd9b1f2c8e4cddea0e33bafe8961fc52589dbd6bf41c94f6e2539b7448ec79a59ecdb9c3a7eb19605cb7b610401f21782c09bc174eb58e3a018693a" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/aspnetcore-runtime-6.0.0-preview.6.21355.2-win-x86.zip", - "hash": "3dd1cab40b2f5663d7fd96fd778ab481dc33a8be6a170cc80d3e26d6c2b11802649ebe2872c4a3d07abc0cb40a45dde5e949eccb13601e4fad983427bd92e108" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.6.21355.2/dotnet-hosting-6.0.0-preview.6.21355.2-win.exe", - "hash": "f15b02946c33a3117110428a773a4af6c453140995da7c1a69f68c7ec900643eb5080b20f8ee2ac32fe0ddc900fd59aa7a4389da348abed3bfb07d0a8ed1bb68", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.6.21353.1", - "version-display": "6.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.6.21353.1/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-arm64.exe", - "hash": "7712970bbfa4e1adb3c5d0c2ecf98fb5b2b0e978f5aad746f5073ab6abb3e3db9582697860307cba41c2e07baaf16e1a7713e3a23c7eb2b9b43cebcd7b23985c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.6.21353.1/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x64.exe", - "hash": "9837420074eed77e0dcd879f05c0b67d3a402a8cfccef34b62ebdbcbf7f828e42d75df134ed252c6969757a7a174b616b57a56a348ff9e3acb635435ad1e53f4" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.6.21353.1/windowsdesktop-runtime-6.0.0-preview.6.21353.1-win-x86.exe", - "hash": "8cbfdd74f6267ce9127c8aa0e72efc6c9445fc9b99e4121f4d573f57a679f4110c7546be26a71ef5ad87a0073c52cbf28e173607dbb86995255a66cfcae9637d" - } - ] - } - }, - { - "release-date": "2021-06-17", - "release-version": "6.0.0-preview.5", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.5.md", - "runtime": { - "version": "6.0.0-preview.5.21301.5", - "version-display": "6.0.0-preview.5", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-arm.tar.gz", - "hash": "7fc26829ad0d4e9c76e520ef9ddff0bfbcccc44b6562b4cfb149095e5d6ef83e704f9b533825ca176a492305bbbc8afa4e6554ebe82de42bfc1c0021b147dbf1" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-arm64.tar.gz", - "hash": "13d58229e85005ecc1e890052744b8bb3a8e1f538bbe716e9a9c4dea9a459d6bd5e7b733b2eb0b29e96d32e27eeb11f830fa7a52eac7879550e7df97ea73b90e" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-musl-arm.tar.gz", - "hash": "0313e8fd504500003008d87ba89918d81a66d218c46de1bb614b6f79946c019cb8966999ae7d1f2ee4385af43afa8bde28c5312cd6821fbca09e8aa21b7d37a8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-musl-arm64.tar.gz", - "hash": "c2fb6c441f3af0d579a64f63e5bc781218ba82a5fa8cc44e46adb44a3099f71391f03fc5c67755eea92b99d41130cfa64454204ef78f8394988ff2da32898239" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-musl-x64.tar.gz", - "hash": "dab1b9a17a332a384777fe0d81c72bf62968b66adcf68e76e551ba3ae06dce6821dc4dc25ecc3756fd0dd360bad56b98a0c0c353c7a6a3e88e8c55e8352b02ce" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-linux-x64.tar.gz", - "hash": "69b91743bf79f44da0bb82f9d36f77e12ef2889e11badcf096734a8c98819a79e83f9d92cbb9f82584e8062089df52db9e4675bc143fc46ed3a31029d8de6df7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-osx-arm64.pkg", - "hash": "ec1c18e886992453f75efe2e3334589aecfa6565b19a0664a87ae20d5a4808236a00f480972fa848debe90b977ff7db8da0158e0e9bcd13ebd45b51450aec5c7" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-osx-arm64.tar.gz", - "hash": "6f285837a24f898341853adaca5eea82950195ba57484285bf7322c526939e76a331bf567b0e8886537c734eb512bde392911436541a194d6c65589fbb68bb36" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-osx-x64.pkg", - "hash": "fc02ef1a31ef0cc9e89a07a09d6013a60200d0eb2444ad5fcc76fed4daca18462d7746da036762fc92be5f05ccbba299652c45747c553ab482dbf77463260604" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-osx-x64.tar.gz", - "hash": "ef002e82c6febbe798b19ed003fbe8387400fdccfd24fd8f8b5e072144006d5b95c8e7250c7faaa80b2f2d6a3253ec9c8eca8056118246b96af5de708b89ea96" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-arm64.exe", - "hash": "9e63bcbf9a68514b9f4289d25e8e2bf022db2702940a4d9e7c2ecf7d362e1e97cff2f0aa40068cee92ab5e0b84eb6a05f5488ea2a807a883ed0f0c5327371030" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-arm64.zip", - "hash": "9348872af2cab34361bc373d39e0aa02dbc153f1d2fc1b8de36b4f6ae6854ca3dfcf0b08b7f275a5a0bb184f9ac6a9ad801ddb14b53d12b6d29c65fda963bbcd" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-x64.exe", - "hash": "49fd8dd46759e187543bf4ee879dc21191f2ef15f2d47acc1eaf84b107e72ce08eb45e8beaa073dca37e2b94442fdbe7d7a3afcb122cd3b380501aa74c323449" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-x64.zip", - "hash": "c1e4656198f60297511fc28b5b1d6ad28eceec29fe59ea7a9e1c8b0b7622ef69e8af481c98a1958f65cb5b3de81d755ce3402d10712944c0e313366741a0e738" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-x86.exe", - "hash": "9d7e85662f248247c64fe0f260dfdab95e39bdc9ca0e31f4571433c4c145155a619d81e5ddaf254fe1a5ed8f3e89ad8f9c3937a7eaae4221e072525ce096feba" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.5.21301.5/dotnet-runtime-6.0.0-preview.5.21301.5-win-x86.zip", - "hash": "d45c4956a03e3af922083b0f12e46e65cb7e4e1847d7dda5272dc7f4a158fde52214a4221fb38894bf8d4c42cdd7d664928484cfec9c76360db85e19d47c13d9" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.5.21302.13", - "version-display": "6.0.100-preview.5", - "runtime-version": "6.0.0-preview.5.21301.5", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-arm.tar.gz", - "hash": "51a9254c02385703e999e711040c9ebe862d66a9a4342fda296ee35c1cf6e474b7fc7f858dbf914091574cdbc8de929243452ff2fee83c88bc6da056c6d20678" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-arm64.tar.gz", - "hash": "a9b8f8b08187b05cb47620ea90e052eda10e9a0a11e58a0b232df5882c2d856f670bcc17c1ad7ad1ffae37eb98dfdd10da7f4334ae8b7ad31ad808a9c70c1dce" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-arm.tar.gz", - "hash": "224271014987d3bdfa0a869b65bd0d7994ad3202897a732a5e03c6aabd1e5368195b40014a868453e3fe0420ed975861a73e5d8e4457c85b6c105ad53c5f401d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-arm64.tar.gz", - "hash": "7bec783cef13592a275883c493e3c4aed9de223ba4bcf1ce98578a98951694059147a44e1307e8241756301217c243e0e6de19c71b2bd49a56514e224481a7be" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-x64.tar.gz", - "hash": "959fad9c070f3476ea401873534a19dce132d6b3f542f744f3994ef75e068c7b3ad95072f9cea6058065c3ac6c7d97519e4b48e539b38dd429fe2641283872ea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz", - "hash": "000ea38847453f636f81adf3d1083d811b0e4c20585e3735dd599a4009f4289793d4e1e8e75d5f86b73bd9f75e78ce2a68900686f4230ea7ed9a49bdb4e46a83" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.zip", - "hash": "807e510d96890babfa05d3da2be53bd5d965582f4d2a8b99b41f745456bbcd4e25c3adaa0708d5ab0dcb14b5fee1587b34961884507c1d68d738045e0034bf27" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-arm64.pkg", - "hash": "b3cfb04f07f2ee9388e5b6cf0e812b4356d22a6104d527417b3053a323a35cc71b4323a08f9ee38f9b3c16b6c74b4bd42d7eef6340e90be453fd016a8a80c514" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-arm64.tar.gz", - "hash": "8f481f16947191a4ab305a3ee7c60cba86a17c4c3622026230c2be50f41102f3ba1333e21a38b617d331b3907fce7ba65518a1d91bf28a86573662e78017e4cc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-x64.pkg", - "hash": "8680b39cc4558e513c3c0a7746f6ea0f7e5872e9e05f076d38b9ddb4ecec306e7e13e41999e321f1f51f7481611af261ca88175fb5c98e533bedee719db7b49d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-x64.tar.gz", - "hash": "c967e0d27dec8cfb2aa2217d7add786e756dc7ff3d5bd36e9479dc815e0d5f115de953e7c74e8606916b569fa2615f37d6c1fc43dab0bb5059e29ab065819fa3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-arm64.exe", - "hash": "9e6d2f5059665b5773da542d3468da8beb77d5df401ad84d298caa8f66220f57db7ce27d26873a6faed4acb5ac0c6fc6207e0f4a20c1fbca46d5be4cff12fb18" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-arm64.zip", - "hash": "82eafc254ae2e21ace82886c2f831397c8b680c28d25834ad0ec0494a5881d3c0ed64f4892756ae7b1509a794048c8f4907431cdce251afaf1e3b9ac2018f7a9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.exe", - "hash": "c86591883a75ac6cf4eab0043e5dc70014c16f23bb6f9aedce74480f59c9afb1e410008440ea2bd6ae5e4c3a4ca337a0a58c8e429bb5b814395b7cdd78cf551d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.zip", - "hash": "f76c48cc6b9a614b75ba323fd489b9750bb7f2baafe63bedd5f0798feb90bc928e8d4f61f4502b51702f1a1b0ce8824809ec72059f7dbc933ff1b27aab8c2fa4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x86.exe", - "hash": "b0f15c8241f6a184b1de9d8ffa6df0978d28bdba0ffb7b24fc2d6d0d47d7663f56141999a9dbda2630570d253f1f9d64933b92f7f7fcf1b5376bb8c9f123bbad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x86.zip", - "hash": "229f165357abf44ad322295e31f620af191a071736e472084acaf4e8f48ac7b11334213b677b34e09a0e2f7670e9f2ba8f3254e9a42588efad37d15e73398ad1" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.5.21302.13", - "version-display": "6.0.100-preview.5", - "runtime-version": "6.0.0-preview.5.21301.5", - "vs-version": "17.0", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2022 (v17.0 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-arm.tar.gz", - "hash": "51a9254c02385703e999e711040c9ebe862d66a9a4342fda296ee35c1cf6e474b7fc7f858dbf914091574cdbc8de929243452ff2fee83c88bc6da056c6d20678" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-arm64.tar.gz", - "hash": "a9b8f8b08187b05cb47620ea90e052eda10e9a0a11e58a0b232df5882c2d856f670bcc17c1ad7ad1ffae37eb98dfdd10da7f4334ae8b7ad31ad808a9c70c1dce" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-arm.tar.gz", - "hash": "224271014987d3bdfa0a869b65bd0d7994ad3202897a732a5e03c6aabd1e5368195b40014a868453e3fe0420ed975861a73e5d8e4457c85b6c105ad53c5f401d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-arm64.tar.gz", - "hash": "7bec783cef13592a275883c493e3c4aed9de223ba4bcf1ce98578a98951694059147a44e1307e8241756301217c243e0e6de19c71b2bd49a56514e224481a7be" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-musl-x64.tar.gz", - "hash": "959fad9c070f3476ea401873534a19dce132d6b3f542f744f3994ef75e068c7b3ad95072f9cea6058065c3ac6c7d97519e4b48e539b38dd429fe2641283872ea" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz", - "hash": "000ea38847453f636f81adf3d1083d811b0e4c20585e3735dd599a4009f4289793d4e1e8e75d5f86b73bd9f75e78ce2a68900686f4230ea7ed9a49bdb4e46a83" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.zip", - "hash": "807e510d96890babfa05d3da2be53bd5d965582f4d2a8b99b41f745456bbcd4e25c3adaa0708d5ab0dcb14b5fee1587b34961884507c1d68d738045e0034bf27" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-arm64.pkg", - "hash": "b3cfb04f07f2ee9388e5b6cf0e812b4356d22a6104d527417b3053a323a35cc71b4323a08f9ee38f9b3c16b6c74b4bd42d7eef6340e90be453fd016a8a80c514" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-arm64.tar.gz", - "hash": "8f481f16947191a4ab305a3ee7c60cba86a17c4c3622026230c2be50f41102f3ba1333e21a38b617d331b3907fce7ba65518a1d91bf28a86573662e78017e4cc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-x64.pkg", - "hash": "8680b39cc4558e513c3c0a7746f6ea0f7e5872e9e05f076d38b9ddb4ecec306e7e13e41999e321f1f51f7481611af261ca88175fb5c98e533bedee719db7b49d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-osx-x64.tar.gz", - "hash": "c967e0d27dec8cfb2aa2217d7add786e756dc7ff3d5bd36e9479dc815e0d5f115de953e7c74e8606916b569fa2615f37d6c1fc43dab0bb5059e29ab065819fa3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-arm64.exe", - "hash": "9e6d2f5059665b5773da542d3468da8beb77d5df401ad84d298caa8f66220f57db7ce27d26873a6faed4acb5ac0c6fc6207e0f4a20c1fbca46d5be4cff12fb18" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-arm64.zip", - "hash": "82eafc254ae2e21ace82886c2f831397c8b680c28d25834ad0ec0494a5881d3c0ed64f4892756ae7b1509a794048c8f4907431cdce251afaf1e3b9ac2018f7a9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.exe", - "hash": "c86591883a75ac6cf4eab0043e5dc70014c16f23bb6f9aedce74480f59c9afb1e410008440ea2bd6ae5e4c3a4ca337a0a58c8e429bb5b814395b7cdd78cf551d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.zip", - "hash": "f76c48cc6b9a614b75ba323fd489b9750bb7f2baafe63bedd5f0798feb90bc928e8d4f61f4502b51702f1a1b0ce8824809ec72059f7dbc933ff1b27aab8c2fa4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x86.exe", - "hash": "b0f15c8241f6a184b1de9d8ffa6df0978d28bdba0ffb7b24fc2d6d0d47d7663f56141999a9dbda2630570d253f1f9d64933b92f7f7fcf1b5376bb8c9f123bbad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.5.21302.13/dotnet-sdk-6.0.100-preview.5.21302.13-win-x86.zip", - "hash": "229f165357abf44ad322295e31f620af191a071736e472084acaf4e8f48ac7b11334213b677b34e09a0e2f7670e9f2ba8f3254e9a42588efad37d15e73398ad1" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.5.21301.17", - "version-display": "6.0.0-preview.5", - "version-aspnetcoremodule": [ - "16.0.21152.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-arm.tar.gz", - "hash": "f421f31c829b6f8440acb0b2d5b6ced1aad40ebec9690cee517616268d8399799662567afae4749ac91755176c45a85653cbdda6b73336b17ccd15c0190e63d2" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-arm64.tar.gz", - "hash": "877809d707c83f6275a610548e134ca614b3b63075c49728af2060ba49bfd20699b44ea22680ac55c5975486c9df4f0da7bfe1f0110b34056aa8aa4295b1f485" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-musl-arm.tar.gz", - "hash": "6b9f8b85d492978f2ea2b9ab7e7d9e7a0a52a7d7cd78902b664920bb78baea29f57f0082416191c5cf6a460a2d3f8bbcbd87cbf8051ff6935ccbba69b0725ef8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-musl-arm64.tar.gz", - "hash": "634c40ab650394984b9f7320a2fe6bac72f1838b9a73bba87773e3a63834a3bb225862b4405fecfa454694163547dd3c4d073d79aaabed80bebff765140364a6" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-musl-x64.tar.gz", - "hash": "9e781624c19261096bbd75be5fec301c3662774cb984db704910e9b8e20ba5dabd046e3aeca66a59b3f334e49e51574b76a108514bf303070a38794f10420869" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-linux-x64.tar.gz", - "hash": "4f21c8ca94d0403b5023696d5862585fdaf2d8111a5416dc07dc150450bf89bc96e0f554e5213e66daac467166af8bfe68f2c4de2d5019ed755230b89337582d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-osx-arm64.tar.gz", - "hash": "0b3c44bac31def3481dc6d09df5b71e41f3593a9cab1b530e58b498240b8246c84da572de2a5dc569b5896d631b2f8820675b554bca470d987cb204e691e1d69" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-osx-x64.tar.gz", - "hash": "de58d39253f1512f60b62f98684331026942b4e7fb7c0af9ac3386ff3d854f017c9331d7344763ce104f5f80e7759689f89fb867210010734e20d87bb0343f9e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-win-arm64.zip", - "hash": "659c3b5df4bb53fa3735ba0560135e4efcd2699ae6c9e487af773d5df20f7605dc08142bd254a23aac1f237e7281e0b43717d50108f1c70ec76421144c505231" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-win-x64.exe", - "hash": "b2eeb4231596ceff65f862c13296d359441d9b619b77c6c0e9e814ad8cb67e14780b5c24259268125f48ba95f06fd0a41871f8fd5e3b3a2ca3770b509bf3f94a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-win-x64.zip", - "hash": "2812184e80ecc1bb46702c29eaea0d57d801c256be5b7687bce90c2682629527de5799d17c58545176c68a2baee0d7cfedf88dff89a9fcd8ccd66968a65184e3" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-win-x86.exe", - "hash": "97bc47a77e7aa098233bc08ae41b82820d5f72c4688c837c657da8138de8676439a2b8e3357e01fe1dd5f8947f0e8cbeb319a617cc12b473a175af145b75ab38" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/aspnetcore-runtime-6.0.0-preview.5.21301.17-win-x86.zip", - "hash": "7adafb4e8f67a56c78ea86bebf540932dc9ad5092536ecdab585658ab646e68e01bc3deef00c4fce391070017ba3b21008f7e4daa7e0dbb986f5de998dc98007" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.5.21301.17/dotnet-hosting-6.0.0-preview.5.21301.17-win.exe", - "hash": "327cb3eaeb09144e939c351431efa6da16c6a4d50a8b539f9f167d1d20722dfd1f32b4079c302933e7a24406d16401dd5fdb3528590df61623a224fce4db0571", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.5.21301.4", - "version-display": "6.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.5.21301.4/windowsdesktop-runtime-6.0.0-preview.5.21301.4-win-arm64.exe", - "hash": "b0db34b03c869e07d51f63c2233b1d9f3447aa2e03b7a3084d020ad918196462fdc646f9848d681a1fa87fa98fb029999bbf234349dc4064b6000d51d5dcb901" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.5.21301.4/windowsdesktop-runtime-6.0.0-preview.5.21301.4-win-x64.exe", - "hash": "ee6b99e968265ced5119c34412a89868511ae1b40274ec965862c30230f1568233e16bef0bb26c6a69662b4365add31c78c3078f6037aabb771992a4c18306f4" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.5.21301.4/windowsdesktop-runtime-6.0.0-preview.5.21301.4-win-x86.exe", - "hash": "9bbb48116e7cde220f7f4163c7ec48b47ba7405baef0554139a5dad9008bcb10e073a071397150649b8667227c3de2d3b7fe6d66a295ba1dc60ee8bda32dd257" - } - ] - } - }, - { - "release-date": "2021-05-25", - "release-version": "6.0.0-preview.4", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.4.md", - "runtime": { - "version": "6.0.0-preview.4.21253.7", - "version-display": "6.0.0-preview.4", - "vs-version": "16.11", - "vs-mac-version": "8.10", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-arm.tar.gz", - "hash": "9006314540937845adb3e8746fda48037bbbfb28cd76eeb66655d1d1a92014d979256cb78b08f5f85fe8b5b8952a10b3c152be99b7dda3b2bfe1ecec5935126d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-arm64.tar.gz", - "hash": "69b97e6e2a98acf0dc81ceeed4bb4ff098edcdad7ce459068c1ba4393f3e6db7d6f4df75c7e41da65ac984daa9ade8a14b8277175ac695737a2a03406598c541" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-musl-arm.tar.gz", - "hash": "2cb28f12114248fd6e068d80f249dc322d5c1d889d4cda663528224face978916c2e820fe7eddaf5239da146f804cab62efb2309f186815a26e894523ab396ce" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-musl-arm64.tar.gz", - "hash": "711f9d17219b71dabcad305f3cb5f5a9c25891908ae9410ca8af3d3afba932473daca2a221fdf7338ec08875770f7d166a0836c287bc5b7c1bd856a0347d975d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-musl-x64.tar.gz", - "hash": "5e837bafe7a5027e0b7abf9f68724d39dd4aa7f04ef3e04de3304848ffb7f50fa3b975ca08163a7b1e84fc1945061516ed617b224539ff159c31674ad12702e0" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-linux-x64.tar.gz", - "hash": "baa7a1f8ea64ff93850b4e9ef44ba3af2e7ea8dd72354e70a73147e630fca97fb8e7f4f7ef963b0f7067baaf26c29e002a330663d32ee2cfe3bd2a0049841f6b" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-osx-arm64.pkg", - "hash": "4a7220ebaace274e0befb11115f33cff4391306b1f3b654fbf4a470ae05eee8e887866bdd063b18ed660a66ac35dd0fab2e9b68453df3ac50b582ff543d8cf79" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-osx-arm64.tar.gz", - "hash": "35d0aebdec8452b3507b4b4780f44d6daeaf7e2ebff880dbc9e10a470d33167e05bdc3e48dcf60090b2c58fe26945a1ff25c3b0ddde05d2fde25b62974c93d9d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-osx-x64.pkg", - "hash": "e86ed9c9844000f105f135add6b0ce72694f5a80e408000aa4272f17eb8d601b7248de8071cf8039091657c321d893b8b3d6bfa1bda9c51f0e71efc8635ce097" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-osx-x64.tar.gz", - "hash": "bfa3e8693436d082d231c3e975c9897c169d7285e7963a84c5804af512026faa2366da620c3ff832dea662b935573ae391121c5a5bad7c43ccd9f54194748600" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-arm64.exe", - "hash": "8ee0d2af80630c882b18166522f074847fc4864634022c8f8b240e38985fa0afcc9de7348aa3e19a6386e92ab7b54234dd917716f14a0ba0a09fa780337caecc" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-arm64.zip", - "hash": "aa7b52e90d6b7baed3400f4feb0d961ce1f0a2a60bf892d2a7311741fbd4e1f81b9526456555c866e73a2a1cd2f541cc84a5be6be8a8be5d0c937eb40d110265" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-x64.exe", - "hash": "e3bfccb01aaf94bf7f2f9ddd4b4dc304f96cb948da3e6cd2fa2ae45bde7f5880b0cbc5110a1f08f7998e94c8f6adc5274f958abe77af0f283881ad07539bf38a" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-x64.zip", - "hash": "ff573c192f196f641d6616addb7d629c22c6aa666b4abbf0c3bd5fa4d6758a74175dd08dec9edbc166a8cf90b1f9888ed791609f03972d12cce99bfaf058f1b6" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-x86.exe", - "hash": "11605f52a760c4cd7d788eda34d32b98397e12ff65f9be89f0a3d94c65cf7f62e3a12e1024b0e30451526e87f2f9f606d05a897c6ac990d15ab805a1a4d2ec9d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.4.21253.7/dotnet-runtime-6.0.0-preview.4.21253.7-win-x86.zip", - "hash": "ec10d0f77b150f592ca6ed9a9fc182ff164f2f17c185d09a89d90ff1e8de0da1306f0d7952fd7337d41bad391ed25c07f2ee4e63aab62160849fbcdbafa5984c" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.4.21255.9", - "version-display": "6.0.100-preview.4", - "runtime-version": "6.0.0-preview.4.21253.7", - "vs-version": "16.11", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-arm.tar.gz", - "hash": "5207f2842ec70fc6b428e20d25fe9b11202c593db8095b04d8f67a1ab2f445675229faa6eca9f07746d98a70f2cb891b5c6f65a1fd559ee1b8201be98d34e481" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-arm64.tar.gz", - "hash": "40dbb1cf48f7f27ba95e36b5638ce5529cdba8bbfb03b2ad84e03924067f17ecc1de12132a66bb07f6b432d247bfb80e86cda7f7832d34565b880acc65940321" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-arm.tar.gz", - "hash": "4f677ceeb3f6dd2d92c6865d6864619519dd44284f52fe5ad7534b2d5894e5342152a835b2dbf16dbcc954b49e5dc72037eef2fb0c7a4af94a89f4fa6a0c6db9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-arm64.tar.gz", - "hash": "f2046f3fb7513da68c628faf119830e9618e19858b0b608fb38df91ee060b642243e89221f622fe4c7c09a745bc997611d4deed5ed9d1a2a2de08c864df67467" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-x64.tar.gz", - "hash": "101db50031fffb064d6ed86c496762c0cb19c0fb32e5650d1965f005b256e5401c6e7665506eaadf972eee61962d4a1e8c2f55ed033b82fea6f458ad59230338" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-x64.tar.gz", - "hash": "9b4554f9c223ff70083618da7c12a70686d39f7b413583c6a7449bfbb5e871ef281b3f692eefca53864ea57217685bf4d7f80383015b2462666a0a26376e0f97" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-x64.zip", - "hash": "b59425c30ae09bc3b2de92963ab246251b03aeb612da8b2c28a792ee7813b599db97f484878231bda221eb4f2480256a5bf7d95191a3180a75b7ca966971c0c9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-arm64.pkg", - "hash": "7f61261f7c1a2b5efdd293802f184d2b7ee06ed2431bf6f92ddfa32822ab093dd73fb8e20b672253d043476ca1952d71f4b7ee06e02d26d06401e80584a727d5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-arm64.tar.gz", - "hash": "a8c3d8890bf3915b4a6d540fb03e64b21a5e18760865d30176676e0f640dda438cac2937b38954af07554587ef11c3c1a13373a8a0017c3b225bc0b2f45964aa" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-x64.pkg", - "hash": "197265412cfb47d4e4ba0bda847011bccf6942615cc64ca5e7aae6576d98c7278a85a0d9dae3893fdc96ef2d9ac7c5cc13753cf5a4786eee6d186d79235ca549" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-x64.tar.gz", - "hash": "c87060a6e8c9218269087f92b28e399ad478ef0dee4bdcc06d1cdd7469d7f21488a13aac8b6b63af2fd10fff37c29c6c5235fa4d1ff8792f7591416c0dafc16d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-arm64.exe", - "hash": "f18407c55f119b9dde08bf0d4506d251a93cdf16734679e7655c027d5402eb9fbb43a0f723c9914e574785d1f30cfb89bab58e6c74c530360c9294d811f84a3d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-arm64.zip", - "hash": "65badae3775a05291f267b668b1f62cddefe45a69e435c15dafa9a24a50e7c5ba1e83d1aa7724608adbc15a1099331e5a6bfaac01da769aaa475e07b1a505d55" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x64.exe", - "hash": "75bf0d167fa68f46ee4e83dcf39b811b543f722796a676524e3f527faeeb6c7b2e9695b116d85669b1090d11a34c13d7c7f275976bb51bb9926d9ba7d57ae509" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x64.zip", - "hash": "adfe0681f86ecfd586eedb54c39c1f1af02153e649787640bd97444e4f177c7e08e280448f38937e48a1eeade2063ec0d2c3eeb2d1d093ccd45b4e203ed33ad6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x86.exe", - "hash": "2c7967a33839f4e5ffe28d79b95f7c9426989673e44077810f38b58e99cea51d6976247624f4dbbb550051b9d2c4ec6cd07bdc3186d16bb1e04306478f647791" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x86.zip", - "hash": "ff44290f288fdf951878a1625b23acbf60088496436fb16f98ab4e6abcd00dd6282343ccc917f0d02e1abe014106420083e00a20645da260ebc41d0e94efbfd7" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.4.21255.9", - "version-display": "6.0.100-preview.4", - "runtime-version": "6.0.0-preview.4.21253.7", - "vs-version": "16.11", - "vs-mac-version": "8.10", - "vs-support": "Visual Studio 2019 (v16.11 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.10)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-arm.tar.gz", - "hash": "5207f2842ec70fc6b428e20d25fe9b11202c593db8095b04d8f67a1ab2f445675229faa6eca9f07746d98a70f2cb891b5c6f65a1fd559ee1b8201be98d34e481" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-arm64.tar.gz", - "hash": "40dbb1cf48f7f27ba95e36b5638ce5529cdba8bbfb03b2ad84e03924067f17ecc1de12132a66bb07f6b432d247bfb80e86cda7f7832d34565b880acc65940321" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-arm.tar.gz", - "hash": "4f677ceeb3f6dd2d92c6865d6864619519dd44284f52fe5ad7534b2d5894e5342152a835b2dbf16dbcc954b49e5dc72037eef2fb0c7a4af94a89f4fa6a0c6db9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-arm64.tar.gz", - "hash": "f2046f3fb7513da68c628faf119830e9618e19858b0b608fb38df91ee060b642243e89221f622fe4c7c09a745bc997611d4deed5ed9d1a2a2de08c864df67467" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-musl-x64.tar.gz", - "hash": "101db50031fffb064d6ed86c496762c0cb19c0fb32e5650d1965f005b256e5401c6e7665506eaadf972eee61962d4a1e8c2f55ed033b82fea6f458ad59230338" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-x64.tar.gz", - "hash": "9b4554f9c223ff70083618da7c12a70686d39f7b413583c6a7449bfbb5e871ef281b3f692eefca53864ea57217685bf4d7f80383015b2462666a0a26376e0f97" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-linux-x64.zip", - "hash": "b59425c30ae09bc3b2de92963ab246251b03aeb612da8b2c28a792ee7813b599db97f484878231bda221eb4f2480256a5bf7d95191a3180a75b7ca966971c0c9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-arm64.pkg", - "hash": "7f61261f7c1a2b5efdd293802f184d2b7ee06ed2431bf6f92ddfa32822ab093dd73fb8e20b672253d043476ca1952d71f4b7ee06e02d26d06401e80584a727d5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-arm64.tar.gz", - "hash": "a8c3d8890bf3915b4a6d540fb03e64b21a5e18760865d30176676e0f640dda438cac2937b38954af07554587ef11c3c1a13373a8a0017c3b225bc0b2f45964aa" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-x64.pkg", - "hash": "197265412cfb47d4e4ba0bda847011bccf6942615cc64ca5e7aae6576d98c7278a85a0d9dae3893fdc96ef2d9ac7c5cc13753cf5a4786eee6d186d79235ca549" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-osx-x64.tar.gz", - "hash": "c87060a6e8c9218269087f92b28e399ad478ef0dee4bdcc06d1cdd7469d7f21488a13aac8b6b63af2fd10fff37c29c6c5235fa4d1ff8792f7591416c0dafc16d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-arm64.exe", - "hash": "f18407c55f119b9dde08bf0d4506d251a93cdf16734679e7655c027d5402eb9fbb43a0f723c9914e574785d1f30cfb89bab58e6c74c530360c9294d811f84a3d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-arm64.zip", - "hash": "65badae3775a05291f267b668b1f62cddefe45a69e435c15dafa9a24a50e7c5ba1e83d1aa7724608adbc15a1099331e5a6bfaac01da769aaa475e07b1a505d55" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x64.exe", - "hash": "75bf0d167fa68f46ee4e83dcf39b811b543f722796a676524e3f527faeeb6c7b2e9695b116d85669b1090d11a34c13d7c7f275976bb51bb9926d9ba7d57ae509" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x64.zip", - "hash": "adfe0681f86ecfd586eedb54c39c1f1af02153e649787640bd97444e4f177c7e08e280448f38937e48a1eeade2063ec0d2c3eeb2d1d093ccd45b4e203ed33ad6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x86.exe", - "hash": "2c7967a33839f4e5ffe28d79b95f7c9426989673e44077810f38b58e99cea51d6976247624f4dbbb550051b9d2c4ec6cd07bdc3186d16bb1e04306478f647791" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.4.21255.9/dotnet-sdk-6.0.100-preview.4.21255.9-win-x86.zip", - "hash": "ff44290f288fdf951878a1625b23acbf60088496436fb16f98ab4e6abcd00dd6282343ccc917f0d02e1abe014106420083e00a20645da260ebc41d0e94efbfd7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.4.21253.5", - "version-display": "6.0.0-preview.4", - "version-aspnetcoremodule": [ - "16.0.21124.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-arm.tar.gz", - "hash": "6d4741f71ae38e5864f54c7cbb42dcef85727e631771a7789ecc7307e1c74fd90d9dcc543329de7b51786472c77c60d9d39368faa5e9431708c56ae2ec16a20c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-arm64.tar.gz", - "hash": "ab0aa51b272ebcaeb61e1a24e8385b8e4b7ad807576ebdf2ceb76077e517156f6a4f7303cc54198965f98647b99fdb62b6a6f6465e7ed183662561f918664b0a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-musl-arm.tar.gz", - "hash": "e829ccc67d4c00a790d4d898b1d0541020fbc1f00dce4c311191c4684cfd6788746cd171512348f265c80b768b877ba912cf0709efbad9ee4aa7cf6442576eae" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-musl-arm64.tar.gz", - "hash": "9ea8cf9b8e2b81dc25b01ad55ea97de9e68d721c2643283b83009601a0f4c4bcc98b18bbf21474638380ee9abede795ce266b5c0b5f1e3dd0c265ae131d7858d" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-musl-x64.tar.gz", - "hash": "861d46655f58d911a63410cda1641852bc578fc4565462a690629ee835074f9f52e0c9922180b4df79aab4283c9ba474db626629d57627ca2a05b75edba9d247" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-linux-x64.tar.gz", - "hash": "249db1382db95b9e60e4068c253c5381b2b37f30cf815471b623584b690a09ae5f04ef4085e02d2a2950041682188997b1f8e39bad6d5ecc05fb239576ffc1f7" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-osx-arm64.tar.gz", - "hash": "c984f4759877fd79e95e5ad3880245ed713123eb362f1a9d744687ed9d499a92b8f5582cafca51f3b30705f27fa6cadebecea6c66ef4c3b413f29d2f82d63da0" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-osx-x64.tar.gz", - "hash": "40b115bb2a9880bca046310be7aaa426ee53190b8f891896cd0266127291a74a01e1e3df564ab4af2e8feb18109de53b45120012f2e069298dd868b98551843d" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-win-arm64.zip", - "hash": "321d3560e5cb484ca9e5730c4f5365ad5a294fb19f0a91ac5819c5734eca3ee74cf1a8cd2c61654f291505afbd265df6f17612a5ce2255fb431ee7173b81b538" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-win-x64.exe", - "hash": "1b579b1ddcaa75d767591d7fa8fdd1b4136ecf7efe5d4e289f8951e5bf709da9ee92d981beafb4ff0ab10df6729f436c0526c5063df06c322b895091c9f456a7" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-win-x64.zip", - "hash": "f5d70b5d1c067d8463e83351d77b4102c80d2a7b0290daa9edf9b5d3c5efbaa7a9da7c06356991f25f0720d2adf9f6f4ce4b093e9a9657e9212399136e34ea82" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-win-x86.exe", - "hash": "a443276aec2061472a467d5c6b0d8cab589944613afb686e8e42091a4220512e9c84d93f352e9fecc3c3b0bc02a31804ac3077c6e9ef4813b8f357513a6d78b2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/aspnetcore-runtime-6.0.0-preview.4.21253.5-win-x86.zip", - "hash": "ed92e4f2675ce12f4ffbc786a3d499aeb0369337ecb99234357ce1fa10562bd4df8a845aa78a331dabece8d7dd3e4f3cdbd5af24151a7a18772e1ea198c54b59" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.4.21253.5/dotnet-hosting-6.0.0-preview.4.21253.5-win.exe", - "hash": "9840ab644475390cfe4d26c3fba075317df592a425f1788542f25cd551f2b963412c6ecb7635c6800d060399ccffc77171006dc688b9ea3aa98c5a27ad266eee", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.4.21254.5", - "version-display": "6.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.4.21254.5/windowsdesktop-runtime-6.0.0-preview.4.21254.5-win-arm64.exe", - "hash": "b95442cf1df95291e800928cafd3429c16f69186c56da8b91fc60fcf42e9c3e9f541533b9b1ec8612d840c6dfcc4e3f920d3ae699d2dd386ebf5b10841acb090" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.4.21254.5/windowsdesktop-runtime-6.0.0-preview.4.21254.5-win-x64.exe", - "hash": "db43650ef0a7646745067b1773477aca34d4858390e3ecfd463a108bd97ab3b31601e2434e030439e11d4512274d9cd03c937c5505399723a6c8185a863bf403" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.4.21254.5/windowsdesktop-runtime-6.0.0-preview.4.21254.5-win-x86.exe", - "hash": "b5b8e51dfe3242617b9b2971fb3ba76d58642573892a3e906d0340125e45c89c617d996930a86cf4d1583c7b5cf1972f6b00e8d31ae37844fd62f0b8c27a3f3a" - } - ] - } - }, - { - "release-date": "2021-04-08", - "release-version": "6.0.0-preview.3", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.3.md", - "runtime": { - "version": "6.0.0-preview.3.21201.4", - "version-display": "6.0.0-preview.3", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-arm.tar.gz", - "hash": "02ede5efac794b181719642771156d5b9759f52d90fe7c05edc5e5ec6f9ee22fa03ebebce29f4aef0c74399d468429ac335cae2f636c87566f33d8c04be2604e", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-arm64.tar.gz", - "hash": "8a5f4d26d8b98adb6402e6e1fff21ee1cfdca42dfc5a596d59c79cabd154d1756db5269e6f6e0671911bdeaebbb1047a449298abbac049686741ae70802ce31c", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-musl-arm.tar.gz", - "hash": "0f02c0ef041c47de6add3e8690d88bd787f24a6b62054899765eee73e25b75bcc185146bcfce6b8502aac29b6f0897935718260f6553b5dc9e7bd781c3fa58bc", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-musl-arm64.tar.gz", - "hash": "635fa684a4dfffc0f4eaf1e6d383170e7ae17c3646df6e23d1b9d4e8cd790588059b0a54ee0bb46f04ef30de12605bbd9a42dab0d2315c514a4f4966fe9e56ae", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-musl-x64.tar.gz", - "hash": "02ef46d6d2812319734be36213d5a9276a79bc483f86e2312b26df94d7af3ad7b7bb7f512c92a022cbb64742743c945f601035bd6ce02ea77a3baedddcf1f740", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-linux-x64.tar.gz", - "hash": "8a6623d4ab32b24ce7cc507582309f38735419e93992f7a0180494c09cf1ec7d597fa1fcc23c90efedf6be1b1a47d36e9061c998d2713e40bbd94b61649f7ff9", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-linux-x64.tar.gz" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-osx-arm64.pkg", - "hash": "505003d4d65229b14d26b378a2c1467a9eb81cb03a90094d65c6abba622be9d5f2947e50138803dffb852945c4d76742cb32e3154cd91ddbec4a71f8a27aa2be", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-osx-arm64.pkg" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-osx-arm64.tar.gz", - "hash": "35b669f31f1df65af4427f843e2bcb771d2122240bfce3a229d36b00f91cf8f003934931ed38cc696b9ce2b5c1f4479f4f59a9815954caaf66750f1d33d8351b", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-osx-arm64.tar.gz" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-osx-x64.pkg", - "hash": "cff3680e5ade20b4d4165e5b8ac194869debaaeff3a3f4d5489856c2d348846beb8141d31bc6eba83eec25e36949a5b66c30cdadc962e35c6f4415a5a4575e75", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-osx-x64.pkg" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-osx-x64.tar.gz", - "hash": "0a9c97231ca8cc488dd16e967e60b70e23f89c84208c09860d053f4664c06a29aa62809472ff7054361dc529aa68cee62cd01f74814c1fa29bcfcc5c6c26ce60", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-osx-x64.tar.gz" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-arm64.exe", - "hash": "3aa64a0dafa5fe31ce21f7471b1d47f8241bd89f932ef97a31516deb3a16f22345582d31bcc71fc0cfb68a5a2462fa4b21fd45231d2f01a9a4f210e503a38abf", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-arm64.exe" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-arm64.zip", - "hash": "5062a2d53d49d7a9dc50dddac06305f23c36a568beeda3b5676beda550fe20ce4f28b6ad582a15bc7da46f4ea6e6449227317fc6e0fe122621d05af12d8193f8", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-arm64.zip" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-x64.exe", - "hash": "524732b3f796cbfae5bdbe395ad25a7090b0b2d74a72b45349aa05ab3c555f59f6f96b74df27b4f7d240a9ce57d8f1f76373fa61c3ada1daad371f8abbb07cc9", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-x64.exe" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-x64.zip", - "hash": "c6eaafce3eb7dc97fe3104d31c36b6c6d9c8b34eb61f7d286c7e2c1a640f1cbd150fa5ff2db19664baa2701048803011e582c9e9524246384bfdd386676fdade", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-x64.zip" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-x86.exe", - "hash": "7d9d20a133513fba6b29f452bc4525e92f83b338bb8fd907e7a8c2be7986a0c678edc7ed50f8db4fd39827779d50788b5ae2d3bc8fc26289f34042704dedec99", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-x86.exe" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.3.21201.4/dotnet-runtime-6.0.0-preview.3.21201.4-win-x86.zip", - "hash": "a5f83c068a2a88758157b94862f6daa3627fc668a742227fb9e3a3a4865ab415cdcb2792978f701f6d57893d0772fd15d8df9e8c99d6999141bd257422a4f8d5", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/dotnet-runtime-win-x86.zip" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.3.21202.5", - "version-display": "6.0.100-preview.3", - "runtime-version": "6.0.0-preview.3.21201.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.10 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-arm.tar.gz", - "hash": "feff4ca8600c48482a4a4cf2863d16e36c4a33e46b1b56567e8acf7599d7ea71feb2bb1715a43e989c26148ea2c5024353114e687c290632fa12f18d184a5ca9", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-arm64.tar.gz", - "hash": "ee658e35f7917c5681d1f71ad3f82f4f2975d66a9b747ec5b5d58629b75c22fb6f31532b5423ad75b2e92ef333179948b52dd5507eadd9f3431e5638d98268d9", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-arm.tar.gz", - "hash": "c8ca2541bef18298ea5744bbc2c5a9271d0f34e593956bda1337a22d4d16d9644349e804d793886681bab5774f2983142c7dc9e723a236c53f34c9c7181ac3ab", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-arm64.tar.gz", - "hash": "1ec6f1c367f43bdce124db5de864639a2d8287e8029da8994e4069fe53b4eef93c7a688178375da09b7eee721aade4996fd5b760f4e7e1cd41faface14844ea0", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-x64.tar.gz", - "hash": "1713b4d2e237122d11e54bdaa6cc14dd64a485212493adaf6ccb09b821cef1893c6685b1c6ec32523f2e9f7ca743b051f52133552a1c7dc34d5539b27b05628c", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-x64.tar.gz", - "hash": "f776177c1ca2b672cf05f9ec32f20ef35a039dd8d31beaa139d1e47d71cca4ccf0f2a61bbf006a781e693977ee91cc9e08e12134ffb4c7a03a8e56c163b8661d", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-x64.zip", - "hash": "e0c3947609b2fbe713b705cba1e1cd7ae5c42121af5ac0cada0046e7ac2debad4aa6cd9853d4f26f2a29c8796edbee9e379c9d518a56486e3591dd8a7604cf66", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-x64.zip" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-arm64.pkg", - "hash": "dbe60ac71ed79d65a55eedaeef329c521ee8644e91f78846354c7731c8e0dfe94ae651ee585751c78a9a5488d8c8f842014469cbec124a992093c3307a91c062", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-arm64.pkg" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-arm64.tar.gz", - "hash": "427d71b95f678b4b1f5bcc19d5cc1da6180fe276582709ea55e62602924e883493cfe48fecc951091c1eda7ddbcac214fcde6dc3b20bf83942ce20f09182e8c2", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-x64.pkg", - "hash": "588c25d8ce2dc28c3f915dcbc6c34879db7e985b16a331bca9aa68aa67f38b1a3de8a1f7399845c9eb94ca1171fd7ca2b77d40a312298429372f14d5542fd6b5", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-x64.pkg" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-x64.tar.gz", - "hash": "65fa25483d9f2d4d389d5e70f6544cbf635ee18a73b00f60ab6bd5fdeba5206b99ed9bb1882af4df3987f8de2ffa1461d7b9d68ed48c9fc1f9f82f7d188234a6", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-x64.tar.gz" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-arm64.exe", - "hash": "16351b1bf36bd29c0335b1d40623102ab813a4e117ff1395bec64a15ecb67f6ffcd44c990c51f7b5ad17b4b94c98ef0d84a94287d3899be68ff80907c63201a3", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-arm64.exe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-arm64.zip", - "hash": "c0eb8327a8147232130314248f5c181c00022832af491c2fb2518fe8c998b23651f47fcd54fc5311a5c04f5dc631ceb9f874a8dd2025d0dafc43d7c7b7c912c2", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-arm64.zip" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x64.exe", - "hash": "0178ad09b49d2c404d6bacfb796777188483954b412659ea39ef90b44d3d365bd8edaead89b0eea197f75a62a4d30644d014efd5b5ef39867323b9c6a6cf2896", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x64.exe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x64.zip", - "hash": "38fc6d76ef0d2331fcc32319be17edf4887443ad7504131041a12026340f7418227b85aa597d7ecb6c4a57cfd928004c6511455cedc6dcee42284793f66146cf", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x64.zip" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x86.exe", - "hash": "c7c095035615de287fa365cd17865da3232f73726e7fa0005447f2c609266f404e60141bff931a0ec0604d36531de6d90d08cd16b2e31009953358329abedc60", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x86.exe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x86.zip", - "hash": "deae2138d5706c47963215711dbb037f07e135a75bd52d2447d4e39d2b08b177064b09518f99298a1fb6e82b4d8cc3e1ee410cf108ec4681c5917aa83a619a44", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x86.zip" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.3.21202.5", - "version-display": "6.0.100-preview.3", - "runtime-version": "6.0.0-preview.3.21201.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2019 (v16.10 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "6.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-arm.tar.gz", - "hash": "feff4ca8600c48482a4a4cf2863d16e36c4a33e46b1b56567e8acf7599d7ea71feb2bb1715a43e989c26148ea2c5024353114e687c290632fa12f18d184a5ca9", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-arm64.tar.gz", - "hash": "ee658e35f7917c5681d1f71ad3f82f4f2975d66a9b747ec5b5d58629b75c22fb6f31532b5423ad75b2e92ef333179948b52dd5507eadd9f3431e5638d98268d9", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-arm.tar.gz", - "hash": "c8ca2541bef18298ea5744bbc2c5a9271d0f34e593956bda1337a22d4d16d9644349e804d793886681bab5774f2983142c7dc9e723a236c53f34c9c7181ac3ab", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-arm.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-arm64.tar.gz", - "hash": "1ec6f1c367f43bdce124db5de864639a2d8287e8029da8994e4069fe53b4eef93c7a688178375da09b7eee721aade4996fd5b760f4e7e1cd41faface14844ea0", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-musl-x64.tar.gz", - "hash": "1713b4d2e237122d11e54bdaa6cc14dd64a485212493adaf6ccb09b821cef1893c6685b1c6ec32523f2e9f7ca743b051f52133552a1c7dc34d5539b27b05628c", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-musl-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-x64.tar.gz", - "hash": "f776177c1ca2b672cf05f9ec32f20ef35a039dd8d31beaa139d1e47d71cca4ccf0f2a61bbf006a781e693977ee91cc9e08e12134ffb4c7a03a8e56c163b8661d", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-x64.tar.gz" - }, - { - "name": "dotnet-sdk-linux-x64.zip", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-linux-x64.zip", - "hash": "e0c3947609b2fbe713b705cba1e1cd7ae5c42121af5ac0cada0046e7ac2debad4aa6cd9853d4f26f2a29c8796edbee9e379c9d518a56486e3591dd8a7604cf66", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-linux-x64.zip" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-arm64.pkg", - "hash": "dbe60ac71ed79d65a55eedaeef329c521ee8644e91f78846354c7731c8e0dfe94ae651ee585751c78a9a5488d8c8f842014469cbec124a992093c3307a91c062", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-arm64.pkg" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-arm64.tar.gz", - "hash": "427d71b95f678b4b1f5bcc19d5cc1da6180fe276582709ea55e62602924e883493cfe48fecc951091c1eda7ddbcac214fcde6dc3b20bf83942ce20f09182e8c2", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-arm64.tar.gz" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-x64.pkg", - "hash": "588c25d8ce2dc28c3f915dcbc6c34879db7e985b16a331bca9aa68aa67f38b1a3de8a1f7399845c9eb94ca1171fd7ca2b77d40a312298429372f14d5542fd6b5", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-x64.pkg" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-osx-x64.tar.gz", - "hash": "65fa25483d9f2d4d389d5e70f6544cbf635ee18a73b00f60ab6bd5fdeba5206b99ed9bb1882af4df3987f8de2ffa1461d7b9d68ed48c9fc1f9f82f7d188234a6", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-osx-x64.tar.gz" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-arm64.exe", - "hash": "16351b1bf36bd29c0335b1d40623102ab813a4e117ff1395bec64a15ecb67f6ffcd44c990c51f7b5ad17b4b94c98ef0d84a94287d3899be68ff80907c63201a3", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-arm64.exe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-arm64.zip", - "hash": "c0eb8327a8147232130314248f5c181c00022832af491c2fb2518fe8c998b23651f47fcd54fc5311a5c04f5dc631ceb9f874a8dd2025d0dafc43d7c7b7c912c2", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-arm64.zip" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x64.exe", - "hash": "0178ad09b49d2c404d6bacfb796777188483954b412659ea39ef90b44d3d365bd8edaead89b0eea197f75a62a4d30644d014efd5b5ef39867323b9c6a6cf2896", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x64.exe" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x64.zip", - "hash": "38fc6d76ef0d2331fcc32319be17edf4887443ad7504131041a12026340f7418227b85aa597d7ecb6c4a57cfd928004c6511455cedc6dcee42284793f66146cf", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x64.zip" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x86.exe", - "hash": "c7c095035615de287fa365cd17865da3232f73726e7fa0005447f2c609266f404e60141bff931a0ec0604d36531de6d90d08cd16b2e31009953358329abedc60", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x86.exe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.3.21202.5/dotnet-sdk-6.0.100-preview.3.21202.5-win-x86.zip", - "hash": "deae2138d5706c47963215711dbb037f07e135a75bd52d2447d4e39d2b08b177064b09518f99298a1fb6e82b4d8cc3e1ee410cf108ec4681c5917aa83a619a44", - "akams": "https://aka.ms/dotnet/6.0.1xx-preview3/preview/dotnet-sdk-win-x86.zip" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.3.21201.13", - "version-display": "6.0.0-preview.3", - "version-aspnetcoremodule": [ - "16.0.21092.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-arm.tar.gz", - "hash": "8514f9455e38c8640f650534742f77b892f0cf6ab4968df702acd9f44afda2a5ae98557d2c4482316c3268ec4bf1f78dcb40e4c729afad77030f45bcad3cffda", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-arm64.tar.gz", - "hash": "9006cd8a03d03cdbaa2ab9ac76e370fcec9afa77cc6a333eb08468a2fc456fbd36da14b9992102d948f8e698f3370dde6d1568a99912898a19b42d30193bb5f1", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-musl-arm.tar.gz", - "hash": "afd79e40125db4fc6907b4900060f76590762555d89c4baefb9fd87cd4e522db5144e59d777c7c9ecc51c9478b8f61cb921a8f17b48e36940f1e4cf7f1b24e09", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-musl-arm.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-musl-arm64.tar.gz", - "hash": "09211c57972a5b2751cf6ba8947d62088974e73fdd1db4e52674dd460dc743ed58180e89434563170b99d735eec0fb88ac4c641076cbfe618c5d83a7708d9925", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-musl-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-musl-x64.tar.gz", - "hash": "80d451713218d1d0ce89d5d0e5205d82811e0a58aac299403cb7fd305f5f70acbe3b21854d2ff85d7666a48a083571c7ea661c7499f8900cac6571732876f831", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-musl-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-linux-x64.tar.gz", - "hash": "05abefd3c1c8f0ffb911e270cf949be144af660e5755af3b1801db4d41beb7234b889ecf1fbb3aeb9f3b51324b4b225c4adc8537fd2f16d61829bd91713f8f1f", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-linux-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-osx-arm64.tar.gz", - "hash": "80d4650094d90e83a098547d7af30605518f7172f17c16e203a8dfbc846914cc4a2a7e730ca61b9fa6813e161ded1beb28dac8091c003916b7dabafd4cacad87", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-osx-arm64.tar.gz" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-osx-x64.tar.gz", - "hash": "c1623bb443169f4ec163063eab9241c79a58c87fcddbe1224e11313719a79b8f6a5301ecc5134ea8c9f59ba8ef1146c0c81ce9f4aeeb81b83e6d1abc4accb547", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-osx-x64.tar.gz" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-win-arm64.zip", - "hash": "73b599b8358704ab2446bff93d203ae464637f647f8c17393ac6b4c426802920c8fe1d18a8fbb9cca9711c4fabdb1e38f60122b57cd05393f1c2e14ccf6dbe91", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-win-arm64.zip" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-win-x64.exe", - "hash": "364a21be8f459451ac2e91c9262e361ab49b7612e638ecd413cf8b75542a03d2615e98d079af6ffab614498d498c15f35ff382898f307ce3cbdf336c24b0c802", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-win-x64.exe" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-win-x64.zip", - "hash": "845dd47a19169916a5bfc509f900cdd5309abf99f608a8a9cd6122e7393aec394c811ea7425de53e614e302304500fd98bedaae52c72551ba7d9c055d4610043", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-win-x64.zip" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-win-x86.exe", - "hash": "6640e9d519a1528a05d28c9107ba331883c0bbb278a76079b8309cc3f3528ce5134191f34f2dd0a772b6bc5fe422cac437beba91a6d5c6fa0629b8364809aea3", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-win-x86.exe" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/aspnetcore-runtime-6.0.0-preview.3.21201.13-win-x86.zip", - "hash": "52be1d195dde2bb174f2362739ce83d3030453e7cdad94e2f1ce6a067b3cf6ec1f0e867527ee90df49b049a62256c6d12f9859b60646f2ecc03e20709a1e2efd", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/aspnetcore-runtime-win-x86.zip" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.3.21201.13/dotnet-hosting-6.0.0-preview.3.21201.13-win.exe", - "hash": "f612d7e12fb405fddaf9b6102fd823de82e753ddff9a7821a2bbf7b94fe3acd74775ba6a0f5a8efb94ded6d7ec8b471172a70b95ae930febcd2f6629bb035c83", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.3.21201.3", - "version-display": "6.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.3.21201.3/windowsdesktop-runtime-6.0.0-preview.3.21201.3-win-arm64.exe", - "hash": "77e8053751825ce89535d7b65087ab5266fb6014d3736c6970fb2de22902837423ebaa42335d5564883dea949b0f87a842b7f78fe670070c01f487384c2cf1f2", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/windowsdesktop-runtime-win-arm64.exe" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.3.21201.3/windowsdesktop-runtime-6.0.0-preview.3.21201.3-win-x64.exe", - "hash": "10b59ea607d43b7b112ba7179848f8052c754bcee4803673b1415599ee33aca929609bab9d597c0f3a30afa1db54ed9f40cd96ce278994cf1edb96663ba5fa2f", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/windowsdesktop-runtime-win-x64.exe" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.3.21201.3/windowsdesktop-runtime-6.0.0-preview.3.21201.3-win-x86.exe", - "hash": "4d209ff7ec09b9186d3cd9a8c4c39308175b2c66585ddbb5b43452683473b231a57c6b74dc63434fb8d12790505ebc2171889c479516583a1b23d047db9dc52c", - "akams": "https://aka.ms/dotnet/6.0-preview3/preview/windowsdesktop-runtime-win-x86.exe" - } - ] - } - }, - { - "release-date": "2021-03-11", - "release-version": "6.0.0-preview.2", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.2.md", - "runtime": { - "version": "6.0.0-preview.2.21154.6", - "version-display": "6.0.0-preview.2", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz", - "hash": "212a01b3910e58b23911b41b70902b77f3c110521657fd0e00ddb3ce99da3a62139bab29e2a8c679ade07a1a478c8b983bd06e985600739bee273424ef2c0906" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz", - "hash": "e24196fda89b2c2576e8260adcae966cc5d6831f78bbfaa3d420e7e335cde7559204d0a7c130a7e21909cde21fea421be8251f877f73b649c5c2c4513e11dfc9" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz", - "hash": "2f41731749ecdf2255f734749631534e9afc1317e97da41588eae94a5dcb45b2a5e97b57c0abfd0dddc2fb7bc9632377bf56977825567310815eb8c23cd930d7" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz", - "hash": "a562ee9bb11f9b572478bf8d773734bdcc25e1a82f818c5f5eff402066d2844f1d99b458d8b6611c60222c8f3b5236fc3b6eb70ef0939a29368c2cf12696aec9" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz", - "hash": "88ba8c4fe252fb76e0c40a4dcd2fe3e9c2960f445dd97a8044be9900f3641f18b2687ec10a36545a141a1e6820bb61278d2047cacd93365954a124c92463b17b" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.pkg", - "hash": "7710903e7b1c7423bf863b95a78a3c62f51b9dff13c9055cfc4f7ec93c6fe7a4b7597d0cd89a2579ee3c449cdf99d0e1d7c2e68a364d52e62a1814e9a538c3f6" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz", - "hash": "759af37378d4db3ce6961872baaac333851d3152df0990507716a31abc3f8c115a709994ab037adeb45814d54c7e7ce1ba27d49684a4485c38533627a0042df9" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.pkg", - "hash": "f84c1c77d9079cf75ab2dd30b4bbe1b55946eef890909e75ee51327ecc69cd90281c116d0092e5eeb646e2da73478a903bb023db31ea8d998fe3b7c2ab0007f2" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz", - "hash": "4a6d4577a35d08eec28c0f33f62be94202ce831d263380c4c30c5cd8490eab88a9947d21bee58744e0380a26fd0a9247eb730fb2dd243513c68f97bfa45b55d0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.exe", - "hash": "9b6be99ae6e839e711faa96324b5e8c7b66b5f2d90cb06be233b73e1bd67fc8b259ef62274336f90b490f16782f08ee15fde1e98fee539bff396b59448075bbd" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-arm64.zip", - "hash": "c315b97bf30a419e71fc2242997fc051d46efd935d70f09aa2d3d61075e6cdb8fcda93d1138e3d4c3a316df276dbae3e9c805045acc404aea0342c4dc7a05781" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.exe", - "hash": "1d53a7a0affdf1b074db6347af4c62757b9d4906e55d3ab2d735fc565daa151cd0911b7d9e43cd5601133485360e429f11a163a7c9c2e130610b698e270005f9" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-x64.zip", - "hash": "353bb6e108abf76ff4621db570a853effdb1969b73c59643b7b78cc60e43bc5ff3572e789032aa384a5cb668d31173b75476702fb23caad1ae438578ea1f27ee" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.exe", - "hash": "ceb3b2817937f8977ae38c18c6bb635c70cc52d3b9ce4871d3cff1c7a4f7ae907674923b1061c1c06bf0e4f0e3ab7a09b9047a117e12db04073a102a5867fa1d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.2.21154.6/dotnet-runtime-6.0.0-preview.2.21154.6-win-x86.zip", - "hash": "2640b109e0c64010f9e50edb2c8583d8ea81a704d02f6e0044336367bd9aee94c1c3cb094c0f107f6e56f23446cf227ce162095b29df03cb70101aa9e5b0d52c" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.2.21155.3", - "version-display": "6.0.100-preview.2", - "runtime-version": "6.0.0-preview.2.21154.6", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm.tar.gz", - "hash": "82adee2db3b57388bd0d48e5eaab64e5e6bece462d49cc0161c8b3b7559ecbc764d48ad112c7893f86858610e21342c7ca50ee1e090a4ddfd09483c24f6e5c63" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm64.tar.gz", - "hash": "91796b6d611b3a8c1e85d8f2fd07f8889d15f4bcab7307cd1ca24c51cc1f352e3bb77f0e6219ddf92b210030feeffe18ebd1ab97b4256202e287e7e7a5236df0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-arm64.tar.gz", - "hash": "9b4fb5eab781a7ac06e8e1c4d5e5484d714d890762787ed7a81778ebdfa9fd9db6c2c6eb0432b663a4d4b9a435b2b7ec945415b47d6e3a1a6e5bb99e2d1dfc0d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-x64.tar.gz", - "hash": "116ca2b5d7aede990bfe9d15918909857d15c9a64fa39faa20374fced4c82110a03484ca8c49ae17fefe4540b3c6c9dee6c13127400c1c93636800b07fa1d9f6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz", - "hash": "90d9b6070f7732dcf75f5a09a4f10f9b23c835a3bb144e0c3f1fa451cadd3d49c9781973b180f70a4d2798358a7c00f3c0b9b3bf35326fe4c94e470e84ac8c35" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.pkg", - "hash": "b76cf55453269c34b19797aa86f84a176ae3c87de58f11edb1e57831f76c672f5d0fe64a61a98b97bf3b2081e7975136a1d0f4c5f6d14f2b3d98febfb6c9bbaf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.tar.gz", - "hash": "7e38c4a5d586458aad5b81378ac1245368d95a403047878bec49103d96ba3b24b51f991f4d01b7b36220c77cbe041da7708763f7011553eb3948624932a719f4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.pkg", - "hash": "bb063b1f5c07f8ba082073d2404704a9ff3e6d2f5aab50ff59e6f26863f0242b3287ccd94df0fee18c152f9841af8f05fb9ce615f026b524647b704e22772689" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.tar.gz", - "hash": "f86476980aed8a9520dfff22f54f9800195df611cddd08283e4d6475720eb1423d6e34356e1c21be30882f04348ca645b6992a56279df8fff845751178ac6dba" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.exe", - "hash": "d6a5034fbe8ca8321968345389cdd5d9a7e79204773a8e01b141eb24da5fb269aa00bcd932d624266d6a206079c809700d52b4a87d564824e5cf2a62312906d9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.zip", - "hash": "af54e25b4d4c7f2e84ed35c7c25b4ea1aac9af0f59060f4dd29ab5e1b7a8bebb3080375d27b119750b356e74c4692e541036819a9cb4c9c4cf1cb7d49f2405e1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.exe", - "hash": "c49e168b4acdc17d15cc8c021d51b4300a1c19eb05ac0b4a879370199471afd09c0a51557e11a53b8b42c50be6710c6135a82662662f65dde1956f67304508d8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip", - "hash": "a56debdba83e7477c069aff43bf1fc7f552b68879ed6a36e4f3903dd121ab70a762acc2120b7cd95d5d45b8f762ae71dfa2fd8b3b6165673ac2e7251682a1f6b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.exe", - "hash": "fb71c70aa4a3faf59b861e915313dce548e94a49969c029b651c941ed900deee4fe3ff8399e402bb6b7f61a65f089078973a9916c7f1c52f2b0c8a547c120275" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.zip", - "hash": "4b9b4db78152c648fcf316396f7af833b8a6b948dd005ced011dbf7ad0c55bc23835b148ce2da6949545c3003e726d4503fcc6dde9110541f6efd8973a82e1d2" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.2.21155.3", - "version-display": "6.0.100-preview.2", - "runtime-version": "6.0.0-preview.2.21154.6", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9 latest preview)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm.tar.gz", - "hash": "82adee2db3b57388bd0d48e5eaab64e5e6bece462d49cc0161c8b3b7559ecbc764d48ad112c7893f86858610e21342c7ca50ee1e090a4ddfd09483c24f6e5c63" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-arm64.tar.gz", - "hash": "91796b6d611b3a8c1e85d8f2fd07f8889d15f4bcab7307cd1ca24c51cc1f352e3bb77f0e6219ddf92b210030feeffe18ebd1ab97b4256202e287e7e7a5236df0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-arm64.tar.gz", - "hash": "9b4fb5eab781a7ac06e8e1c4d5e5484d714d890762787ed7a81778ebdfa9fd9db6c2c6eb0432b663a4d4b9a435b2b7ec945415b47d6e3a1a6e5bb99e2d1dfc0d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-musl-x64.tar.gz", - "hash": "116ca2b5d7aede990bfe9d15918909857d15c9a64fa39faa20374fced4c82110a03484ca8c49ae17fefe4540b3c6c9dee6c13127400c1c93636800b07fa1d9f6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz", - "hash": "90d9b6070f7732dcf75f5a09a4f10f9b23c835a3bb144e0c3f1fa451cadd3d49c9781973b180f70a4d2798358a7c00f3c0b9b3bf35326fe4c94e470e84ac8c35" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.pkg", - "hash": "b76cf55453269c34b19797aa86f84a176ae3c87de58f11edb1e57831f76c672f5d0fe64a61a98b97bf3b2081e7975136a1d0f4c5f6d14f2b3d98febfb6c9bbaf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-arm64.tar.gz", - "hash": "7e38c4a5d586458aad5b81378ac1245368d95a403047878bec49103d96ba3b24b51f991f4d01b7b36220c77cbe041da7708763f7011553eb3948624932a719f4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.pkg", - "hash": "bb063b1f5c07f8ba082073d2404704a9ff3e6d2f5aab50ff59e6f26863f0242b3287ccd94df0fee18c152f9841af8f05fb9ce615f026b524647b704e22772689" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-osx-x64.tar.gz", - "hash": "f86476980aed8a9520dfff22f54f9800195df611cddd08283e4d6475720eb1423d6e34356e1c21be30882f04348ca645b6992a56279df8fff845751178ac6dba" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.exe", - "hash": "d6a5034fbe8ca8321968345389cdd5d9a7e79204773a8e01b141eb24da5fb269aa00bcd932d624266d6a206079c809700d52b4a87d564824e5cf2a62312906d9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-arm64.zip", - "hash": "af54e25b4d4c7f2e84ed35c7c25b4ea1aac9af0f59060f4dd29ab5e1b7a8bebb3080375d27b119750b356e74c4692e541036819a9cb4c9c4cf1cb7d49f2405e1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.exe", - "hash": "c49e168b4acdc17d15cc8c021d51b4300a1c19eb05ac0b4a879370199471afd09c0a51557e11a53b8b42c50be6710c6135a82662662f65dde1956f67304508d8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip", - "hash": "a56debdba83e7477c069aff43bf1fc7f552b68879ed6a36e4f3903dd121ab70a762acc2120b7cd95d5d45b8f762ae71dfa2fd8b3b6165673ac2e7251682a1f6b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.exe", - "hash": "fb71c70aa4a3faf59b861e915313dce548e94a49969c029b651c941ed900deee4fe3ff8399e402bb6b7f61a65f089078973a9916c7f1c52f2b0c8a547c120275" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.2.21155.3/dotnet-sdk-6.0.100-preview.2.21155.3-win-x86.zip", - "hash": "4b9b4db78152c648fcf316396f7af833b8a6b948dd005ced011dbf7ad0c55bc23835b148ce2da6949545c3003e726d4503fcc6dde9110541f6efd8973a82e1d2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.2.21154.6", - "version-display": "6.0.0-preview.2", - "version-aspnetcoremodule": [ - "16.0.21063.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm.tar.gz", - "hash": "eb2b0a3c725a3b0f9265b992385a39efe15ba1eba0060388a84497b464faea5fe8b51ce0ff49cf6058e5539a86587d6b68d41a0a18ba7e3d20c6a4d9585dc13d" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-arm64.tar.gz", - "hash": "0400434b2d77e74fa4b347e65ae88905d3715fd76ecf6562a2ec7ddd7a54a00b92bb39c272a383dddd134d82b340cbd4658bc4661a53059e1e5227cd61c154b0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-arm64.tar.gz", - "hash": "32d64a450c17e859fedfe27478279a039982773c2a2d8dffecaadace89d84df555a894a25bd7b2466d67e288b65d85dd2391b24c5f994e5df9e5f6e01f9fb6ea" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-musl-x64.tar.gz", - "hash": "12ea6d2188fa5e9ea9248600b84cbb37836e3c26edacfff291b00c8eddf5db730b5d01a003f7a1049610d99a76f6e690db04e7b7877679db93e19b2941ae238a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-linux-x64.tar.gz", - "hash": "703d6893bc73aba1a33e12b636820ab43948603114e01bbcc6a92d17439bd3d532525c17dc1d39f925b552b139b1ae9b9cbf086a57292db511eadc3e47db00ae" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-arm64.tar.gz", - "hash": "4ac574f16754593d896a85145640b1ee1817c607d1273bef6c1ab3abcedf024511d1aee35e24605cc56ca098585db473d17131ccc3e6d69c05376708fedc519f" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-osx-x64.tar.gz", - "hash": "cee32d184037f858b26b4acb1e7d12179185bf771d2ca30c6e5db2768377194d40b2558166332b6d5b340c89fbd4e86e5d079185dd048942e8d34f540a7d89a4" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-arm64.zip", - "hash": "a793b45b71c55adecaae5c683e6cb3758beb303eb763cfff2c8af9657bfa2d8a4aa6391d69f48e2aeb4748a4b225742f0ce66a18656c4ac5c6e81618b63f91fc" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.exe", - "hash": "35c4dbc50ef35cfd54671670eeade78b411102904852c0f6c3d0452cfa9b9ff3e920538523e2fd47c990f87d1fcfd2f1ad9ef89de705aebf4c2c901f9ec512fd" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x64.zip", - "hash": "ceb0ff56966c13dedae34c216598b68369d1a0f93f0815e31dec544560dfdcd0dd8bb3ab60c9aa48739a72cf6b1a71bbe058edc3adbdadb6261e6e06f5c665e0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.exe", - "hash": "5054ca4f7caa3b24951f7ed806ff30519f184c87eba47de2256737a6ab3d31faf52b14954e5ae4224bb8ff742a44c4631645e3d11f7708950d9e87b30e2cf6a3" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/aspnetcore-runtime-6.0.0-preview.2.21154.6-win-x86.zip", - "hash": "9f059ea6d2100d43440af035c1fed75c8bd557678c9aad39c04f69cd9ae646c263ffbc5d5a7b51b767abc9095a6e99e2bb80aa3171e1506987767af724f32c65" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.2.21154.6/dotnet-hosting-6.0.0-preview.2.21154.6-win.exe", - "hash": "48afc2174599b0517d7cccf22841ad64b85e28d1c56ebb9415b6fa51e8d4636a3bc78ac32fb1f70bce1746e30327475034ee991b1a7d2279a398ad056ada6083", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.2.21154.2", - "version-display": "6.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.2.21154.2/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-arm64.exe", - "hash": "0053197d93189df2f2903bbc439f54aaee0f7778756035d3ada637b682d923790f8a25981dff0d57c93d5ba935b819055a0f2be7ecd302647b1f58ea60f20233" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.2.21154.2/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x64.exe", - "hash": "25d562ffd51e1285d48c2ea1dae953e2ea28854da39224aa1ce529fd9585a109dbe14fd9ee1ad724327a8d13563134fe9a1a5da885f4d7302d24f7deb2a2cfa1" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.2.21154.2/windowsdesktop-runtime-6.0.0-preview.2.21154.2-win-x86.exe", - "hash": "1aed70644dd68899eebbbc57efec5c9a5a11633f1a9d5e42f5e6c676ffb71d68d3d31fcfc5c07de13247348963ba62a84cdab6b4fff80f5d704eb9596ab2d3d7" - } - ] - } - }, - { - "release-date": "2021-02-17", - "release-version": "6.0.0-preview.1", - "security": false, - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.1.md", - "runtime": { - "version": "6.0.0-preview.1.21102.12", - "version-display": "6.0.0-preview.1", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-linux-arm.tar.gz", - "hash": "42d9046cef8beeec7774e81cb160fff99d700a78f2e1d26b8a471dec4e727414e65197994ce200785b22d5f073e6402afdb92e62fc86ea38fc8814a1de52f6eb" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-linux-arm64.tar.gz", - "hash": "4844ab4ce5750d45b552c2bca3a507dae0202f8be7d990506a66940158666897077c0d045b7a7e136a772da3a18b2cf81c932b5874747268aece6846fdc44bb8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-linux-musl-arm64.tar.gz", - "hash": "d0e0fac6b159714070d7cb9ac9f184538a8805257b1a362613c28e63998b4439d5e42789c07330747a70704ef2cc5044eca4b269de4ee3f53de68b1af8cc3735" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-linux-musl-x64.tar.gz", - "hash": "06475f29a4bfc8af012a6560f26cfe9c32469263b7c690d73975a2a1790965b139c227dd72961488f774088c45a3ebc8955b13ed1ec070cec7dbda4b51ea4171" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-linux-x64.tar.gz", - "hash": "64114ea881981ed061eb22c97ae8cf5a85209b0a439d6640984e1b423bc934259bcd136484c26f038f19222a9068a5cd687229a8b9b0d0b55efacb0275da082d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-osx-x64.pkg", - "hash": "0c3771b56f9fa6b09063fb797e4c264cd7b3723d7cfda6aae5f3a8dfe19bc513acc393761a6b2fdf4dd0a35427fa40392e30969a0eb3076a7f4a1891fcff01c6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-osx-x64.tar.gz", - "hash": "767d1c264ada1dd5f73c403d663bdfeaaafefaf0545d6af1895d1c926dd32385601981fe949340cee5fa8c34698f12c9553b0aaf492d12b0d4288a6e5ea6da08" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-arm64.exe", - "hash": "97bb0f7b613a4a3abcc4d76d046d5696f84a105c8395105d39bc7b12150bd047900abe2d769d2fffd07d3b9c1b21295135abaf570c86f678a500315d174f7c6f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-arm64.zip", - "hash": "8d141409f6439b227e1165caa91450908e4d18132080d76da588a90c88d0c198196d1a2ba4dcb7b5ec5997bcab80a108f92184dde39e52b73b64b568daee7dfe" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-x64.exe", - "hash": "bf94dc2a8e03280298327f7c5eb353f4f1a2854bdcd9b7fa44a30078a09a324b190a7af02d3f10167bb73272dbdf28a12df37b94368bec63c5fc93ffd2557c87" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-x64.zip", - "hash": "e183555b560fa23c86a6060136f8dc9bba0b79d54f673bf155c4843eed2c0a72ee57a06a0a588c70438c066c8093f46d83a077db6891dc21eaa182c8f83d405d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-x86.exe", - "hash": "0d0f1491b6c51a45422567894765e2e2117addab42e3b7b747dd5530ae8955c10239e304d2cf4065293fc38574c9c8eb92e50f8ee5ed6356a6892abfec7553ea" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/6.0.0-preview.1.21102.12/dotnet-runtime-6.0.0-preview.1.21102.12-win-x86.zip", - "hash": "689730a9cd4f1917fd025cf8fc7f1981fc766e96144aced5097e9e8919b1b70644892ac1f25514ced6b0ba84e4fe719cf8b8f475095701c92406cbbbb3edfd28" - } - ] - }, - "sdk": { - "version": "6.0.100-preview.1.21103.13", - "version-display": "6.0.100-preview.1", - "runtime-version": "6.0.0-preview.1.21102.12", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9 Preview 4)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-arm.tar.gz", - "hash": "05a5a0f9b3738042eedbce37105ceb95480ca8175d85ec7300c32949ee205a66b5e12583fff9f72d9161af56923842d388e6791f18aa7109a8c823461dd5d8d5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-arm64.tar.gz", - "hash": "fe79c1554bea30039390e6c9efe00623338fdeb1f471d8c74b41d43d38230d383e215859905f4c057bfd1ba027f7f157c4d5d215f961d3663aed60dcbe870add" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-musl-x64.tar.gz", - "hash": "4b8002f608e5354651b9d82fa8442bca68be730dfdb54d026763635185457a23e5e071421bb04de8f8254fe36cc2134b430aaacb363911fd93276b7c34ad935c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-x64.tar.gz", - "hash": "86f591c70c73732030210e8e7ce39b7b4e4a680098862e340a4a8726bcb3f981f0748baec0fce8c5c4a8615670a72ab92bfad8d0dc0a305401bbc5864116996a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-osx-x64.pkg", - "hash": "0e429d21e9c12f79fa8875670574d123389a4928d3c18d7fcd18fff50cdabb3faa8a2617011a9045b472b2192bcc4c5d5656cf57659357b395bd6fd21e88dd3c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-osx-x64.tar.gz", - "hash": "f4c930c867399fbcffe5c345c54e0595c712419b910df7263b35fc4711307bd5cc3a7878d6e06caf4904d915f371b4ab53d8c763d02d1bbbbee586fb16c137ca" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-arm64.exe", - "hash": "cebded348d80d50e60924a2791e683e0751c00eb87ac94388b8f68320936889c92238e56b91b837ec0c87fffe86787d1a0aa412d95c011d8b682f52d72636727" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-arm64.zip", - "hash": "66b6d3e4d7c3ccfcb99ec01f7b97601d8a20e5c9de2640b327099c5cde4e6e637f4ccd3d4ac94137684719a056bd05ed946ec628bd457288ca7d59ea24bbc376" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x64.exe", - "hash": "e1800fbe29c667669f0d052dfd8a0d46b6e8b81e4929c2dabe2f2e853146edfa159dab348fe6cf9ab52176e1d99009f2f4281c8a548538fbf25a4d5c6fe5dbc6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x64.zip", - "hash": "49f4c9385aabf2f16a2744459c3428d49f1fcbf45095a9f03d866a75d28b460f1a44fbdf5e45709bb0e79d9bf44224390366e0a23ae4b5959c242525b3bab8aa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x86.exe", - "hash": "b55e77ea2b8da0c3fda54a5b3efe3c599c556627ee3826bf5b4a09272be3f7dee302f7322328affb081950706f96dccd4fb110a473f35e55306e452ded502af3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x86.zip", - "hash": "f3b64f77760d3ccc907da6dc84a6a3e54a770b2b641fb35b4f87e2145657a47894418fcba8a02ef361ac535c4508f6477af5356c12b233953e95d65c724eca23" - } - ] - }, - "sdks": [ - { - "version": "6.0.100-preview.1.21103.13", - "version-display": "6.0.100-preview.1", - "runtime-version": "6.0.0-preview.1.21102.12", - "vs-version": "16.9", - "vs-mac-version": "8.9", - "vs-support": "Visual Studio 2019 (v16.9 Preview 4)", - "vs-mac-support": "Visual Studio 2019 for Mac (v8.9)", - "csharp-version": "9.0", - "fsharp-version": "5.0", - "vb-version": "16.0", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-arm.tar.gz", - "hash": "05a5a0f9b3738042eedbce37105ceb95480ca8175d85ec7300c32949ee205a66b5e12583fff9f72d9161af56923842d388e6791f18aa7109a8c823461dd5d8d5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-arm64.tar.gz", - "hash": "fe79c1554bea30039390e6c9efe00623338fdeb1f471d8c74b41d43d38230d383e215859905f4c057bfd1ba027f7f157c4d5d215f961d3663aed60dcbe870add" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-musl-x64.tar.gz", - "hash": "4b8002f608e5354651b9d82fa8442bca68be730dfdb54d026763635185457a23e5e071421bb04de8f8254fe36cc2134b430aaacb363911fd93276b7c34ad935c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-linux-x64.tar.gz", - "hash": "86f591c70c73732030210e8e7ce39b7b4e4a680098862e340a4a8726bcb3f981f0748baec0fce8c5c4a8615670a72ab92bfad8d0dc0a305401bbc5864116996a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-osx-x64.pkg", - "hash": "0e429d21e9c12f79fa8875670574d123389a4928d3c18d7fcd18fff50cdabb3faa8a2617011a9045b472b2192bcc4c5d5656cf57659357b395bd6fd21e88dd3c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-osx-x64.tar.gz", - "hash": "f4c930c867399fbcffe5c345c54e0595c712419b910df7263b35fc4711307bd5cc3a7878d6e06caf4904d915f371b4ab53d8c763d02d1bbbbee586fb16c137ca" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-arm64.exe", - "hash": "cebded348d80d50e60924a2791e683e0751c00eb87ac94388b8f68320936889c92238e56b91b837ec0c87fffe86787d1a0aa412d95c011d8b682f52d72636727" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-arm64.zip", - "hash": "66b6d3e4d7c3ccfcb99ec01f7b97601d8a20e5c9de2640b327099c5cde4e6e637f4ccd3d4ac94137684719a056bd05ed946ec628bd457288ca7d59ea24bbc376" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x64.exe", - "hash": "e1800fbe29c667669f0d052dfd8a0d46b6e8b81e4929c2dabe2f2e853146edfa159dab348fe6cf9ab52176e1d99009f2f4281c8a548538fbf25a4d5c6fe5dbc6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x64.zip", - "hash": "49f4c9385aabf2f16a2744459c3428d49f1fcbf45095a9f03d866a75d28b460f1a44fbdf5e45709bb0e79d9bf44224390366e0a23ae4b5959c242525b3bab8aa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x86.exe", - "hash": "b55e77ea2b8da0c3fda54a5b3efe3c599c556627ee3826bf5b4a09272be3f7dee302f7322328affb081950706f96dccd4fb110a473f35e55306e452ded502af3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.100-preview.1.21103.13/dotnet-sdk-6.0.100-preview.1.21103.13-win-x86.zip", - "hash": "f3b64f77760d3ccc907da6dc84a6a3e54a770b2b641fb35b4f87e2145657a47894418fcba8a02ef361ac535c4508f6477af5356c12b233953e95d65c724eca23" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "6.0.0-preview.1.21103.6", - "version-display": "6.0.0-preview.1", - "version-aspnetcoremodule": [ - "16.0.21034.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-linux-arm.tar.gz", - "hash": "05cd6808b256c24e16c91513da712e4dd9cb3189dbd6928cd5959c4805fd5f6fb4b5e6a4cf7156e0af81ca151eac22df185af09567de2cbda4bfc4b4ec3f86b6" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-linux-arm64.tar.gz", - "hash": "152b93a2b9ef2a481280ce3549b5fea1fe88b86c9c41f2c09499681ec6f485c978a68d484e25e00776bfc2cbc285e968dd4f0b0a9ddb83f57faea2dd3a71faa0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-linux-musl-arm64.tar.gz", - "hash": "75ffdc561476085ccb60472e9d74edd850973b762d0bce490bf3a011c8fc526c90cc04106a89d456735f43335387698c05e472113fa8f40c7741287b77b0f46a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-linux-musl-x64.tar.gz", - "hash": "b0bc62fbd4c0509e634828089637eb2c0fc326ebfc58913d09ccf7b47b09ad9133e77d2602ee478ac0c1fcad3c89affc48e374675f10457c4b4f6ccef2e2aec8" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-linux-x64.tar.gz", - "hash": "77b4b2c20c96cd8b4ec152c133f8c0501ab6f38bc3a949461bd0af1246bc2084d687f0c639dbbdf858948c496eaf86749e1ae45eb30ab8d31adca9abac5a7346" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-osx-x64.tar.gz", - "hash": "9683bd26914c2312ab6f72dba742cadf364498e86def8633c7c57a6640d0140dd2cb05674b64f032f4d90a7f0a4856e66da793f5c99466d441367234ea7f3074" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-win-arm64.zip", - "hash": "dd0865c43d5248500a2e88b091bcb29d9f2b182f138660b144b12d0de23d803ba1e32b89fb86351d24bc190227e1447e4566ec849da845ef50ceeccab24ee60d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-win-x64.exe", - "hash": "78a7cbde432e4ce7726363f04c7efb0da3cf31c8095ea68a2a68d7c6a8d6e8a0d3e20e772b285d02704808c7a37ebaac9b9d4c23ae23f102031c92b9b8448299" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-win-x64.zip", - "hash": "4fe16b63fc0276b4afc718bd33c1a3a8d101bfb29ecb7d89aa22e8c11e948529ead6fa3bca3dde95e69c8c2c205273fe117e02ca5131691ea243431f2af49d5e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-win-x86.exe", - "hash": "048737341356cc2b9ccf62fe990d20d101e454390e80e361692912fc0208e4cae1af11376e4a9f412ef5db69ffcf6f525ed687cc7eef40bb86d214c2dbd79de5" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/aspnetcore-runtime-6.0.0-preview.1.21103.6-win-x86.zip", - "hash": "67e4d94f6645510bbf78bfd5ac9d17ff512f335a2207ef1d16a72e9ec7e6b9fd8b27e14b1a34bd6f095478f641051d20cb6429524c338bf084167aa75dcb2810" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/6.0.0-preview.1.21103.6/dotnet-hosting-6.0.0-preview.1.21103.6-win.exe", - "hash": "46e3b98a2aff2125dd23e968bb66e117934208a176ef86067fea5c7f1e7ed9e8a9b8913933067fda02af7f787a5307d4fde18b2f33417e92982c762f5e910925", - "akams": "https://aka.ms/dotnetcore-6-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "6.0.0-preview.1.21103.5", - "version-display": "6.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.1.21103.5/windowsdesktop-runtime-6.0.0-preview.1.21103.5-win-x64.exe", - "hash": "681d0388e06087a5ef077eab2a756a0ad4ca14270778b1fad8607119e37985f85d305fa57300d2a66006b3a9c97321bbfb6ab73a9717d0eae80af92b62f99838" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/6.0.0-preview.1.21103.5/windowsdesktop-runtime-6.0.0-preview.1.21103.5-win-x86.exe", - "hash": "dab5ea83d60c04531a47a39977d5ec9f44b936eb5014caefd10dabd8443d89ab79bf2b19e48d0260f2fc94a07d24baacb841fd556250b9c5e4e8891a78ee93f3" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/7.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/7.0.releases.json deleted file mode 100644 index 36aabf09a1..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/7.0.releases.json +++ /dev/null @@ -1,17138 +0,0 @@ -{ - "channel-version": "7.0", - "latest-release": "7.0.20", - "latest-release-date": "2024-05-28", - "latest-runtime": "7.0.20", - "latest-sdk": "7.0.410", - "support-phase": "eol", - "release-type": "sts", - "eol-date": "2024-05-14", - "lifecycle-policy": "https://aka.ms/dotnetcoresupport", - "releases": [ - { - "release-date": "2024-05-28", - "release-version": "7.0.20", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-20672", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-20672" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.20/7.0.20.md", - "runtime": { - "version": "7.0.20", - "version-display": "7.0.20", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-arm.tar.gz", - "hash": "a24aa7afe478e62af4e76c40e63e5e5e8324ab01d9ad9cff3183245cdeb70861ffc118c9abda9f2f2fed423735ca27aac15bec8cc5fc352f05bd5b726265849a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-arm64.tar.gz", - "hash": "c245125ee2708252119a1544556e1aa9e00aa18b2303de69877da10c6c17e3f25024b749ca93b53be76ee0e8e4a75d403f7019b8bc2e50ed1278f656cb2f7e06" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-musl-arm.tar.gz", - "hash": "25ccc373d1c4c0eb741e048c6fd48366310b36ac6f068c50f6bc01342a000464144e8457e7e1b6ccf6d99544d4914022efcb824e75636517bbf61c94852cdd74" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-musl-arm64.tar.gz", - "hash": "552ca73467f8043d351c20d71df95ba963b32e8c75706df6f5d3fce525f3efdf1314df296c44fbedad5575782e37633998a79b2c23f7f7420f814ee2488f30a2" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-musl-x64.tar.gz", - "hash": "31b9da08d633cd0028eb08c36ee2c5c3cb1be6d3c5e010c85ae291496fe5e818b5be59f5d47aff86ed939c260f762e57ff06934a4d0954376935b1adc799f1bf" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-linux-x64.tar.gz", - "hash": "87855297338555a7b577d7e314e5dbf2c2350f8c867a489cd1e535634bad5c123a1871464d37fc9421837ff5d426c2eadecbe0f60bbf3fd32bc2461f47790a40" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-osx-arm64.pkg", - "hash": "6871264ebda8756e440ed3ae03ed01c19107fe27b377cb0ce9d91e139a01ca939554cbcf358e2e54527ba72f0080f2521fcf8b34cea6a24f6f46d2f4ccdde3ad" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-osx-arm64.tar.gz", - "hash": "af1cb62e29c69648ebe334e651c2703cd5e87fa0bb28c670bacb3b3dd1608aeae35ae53402c5eb4ed8bf34abd831a08ccb5ef84e5ec70617d9f8d9969fe7b8fa" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-osx-x64.pkg", - "hash": "3ebec794c77ec7c03ecd6b50a305062ae634bb9f662f7a17edbab65348188e58a8f25f12fcf0f1786681ef170288a5dc6e1fe8e500ae240e6cf9b148cd89fa5a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-osx-x64.tar.gz", - "hash": "acdcde92f2f2e43584ee59be447f778f4a152c308975c7bdc5c2372b5bbd3092eb9d2233aec3b82756ba1e352a0877ffc17e4c8cfb20a9de91ca6db54d79b591" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-arm64.exe", - "hash": "ae75b098abd1ddd2a253846d6ea6db4eed5db813c245983e0f829869f460bfac412ee538236be910814abfcb7be1fd51c72bd30a387aaa320d329bd8a00694d1" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-arm64.zip", - "hash": "9caa7979861e7820f644b2a7bf80db53641e03d39f1b1fdb1c1d306dbdc75b476c869a3298cb14f7e419300cd5bf9a11d8aa11c2ce4f0ac9ad69327a18840bfc" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-x64.exe", - "hash": "89a537a0ff92520cc543b4ee0a702063266aeb5d4d302e276fa9c8898ebf39bdc7bec134aa206bab8ef0ead395c79ab2e173abb8b506431f3cef641d8b7ecf11" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-x64.zip", - "hash": "4943862d33d3c483396adae24c932d254b218aaaa4638e47b22bdd1d61eea248f90f5a768a0842b8c743db8b96039506941af6384411e8c891aeefdebd7db4fd" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-x86.exe", - "hash": "b8d5e8dfd844bbdd9cf83c512f015d06bd326e17fb9d250ef8d02a8f4adb6bbfa1ec6ab1a49c7a72ec608cad90da4f1f8e6b1d1129b9d53bb2036ee5c6cfaead" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.20/dotnet-runtime-7.0.20-win-x86.zip", - "hash": "f4cf05a03b7e568f974202379f662becd8756b8d6755277c19247130d03ce7b5062a6414904bdc52256aa2373501dfc62f3615aea0f92b5e192bb8e11009fdf9" - } - ] - }, - "sdk": { - "version": "7.0.410", - "version-display": "7.0.410", - "runtime-version": "7.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-arm.tar.gz", - "hash": "95b639a1475d9b7637d41a14c0cab3993b3a2b4be63dbf251ffef840461c51d9d5ecd78ef09c857fe28399155f7a40449e08c7a33ce08850c4e18efaabab45ac" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-arm64.tar.gz", - "hash": "2db6a3b9a532d2f59a2b459e634206913a9585c821f3f578a421e3bae346a92dd9b85b76ebde343ca3057275f7ec4d0bca71cbb7f2badb6dcdb516244e84da46" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-arm.tar.gz", - "hash": "c7b19cdf213126456fe7f20171ffbf5cc41772305b47d8d06c64612a509e8913126405ca8ea5b64f93ff4d2cfea29fa128671d40ef23ad669d8b47282238dfc1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-arm64.tar.gz", - "hash": "3beeb4f3d5360cc9bc1739b69028f582b66a6a384c9668ff12a0fdb9c29f92dc757b7b17b3dfcc81e5503f9adaccd7b9ea5490f8e1629cdd98e1b45929b692dd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-x64.tar.gz", - "hash": "6345ba8139af42d7a8330b5a5e17c71b3e068066561006c68bfe2bfb5c1abd2892f0d903fb7aebc2a536d847bc1277780cd651fa531330c16fa302a076cb5415" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-x64.tar.gz", - "hash": "20b8e02979328e4c4a14493f7791ed419aabd0175233db80cd60e2c004b829b3e8301281ea86b27ba818372473accf5a6d553e5354c54917c8e84d25f5855caa" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-arm64.pkg", - "hash": "d4b21344a686f02624afd43f0bbe8e541d9087a2062805fefec345ce1a0c0158e026d972f93bf672d83b4e5141e6bf3f4f97e1263829531acb439546afa830fc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-arm64.tar.gz", - "hash": "c0ef1914f2b298504433bca9cdab02dcf324421ece39657b66523f13b7a7166e726783673a602fb462f3db5c53f59a89381b918e7658d49a57763b43cf75cedc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-x64.pkg", - "hash": "1ffdd35bf5cbadc5c9b54d410139ba56721203feb3aac820deff4d541855c33f7af6d9900d8848e9e97a708ac3db38391c1c13de2cc44a4270c1796f6c907315" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-x64.tar.gz", - "hash": "782e15c19ce20aa8333566f23c2d3cdb8e89c7626de6330ddf670c4426e30cc854e44ff3341578622aecf210fa66ddcb63a7d2ad629ed92cb5582ab670f953d2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-arm64.exe", - "hash": "4cf7ff978d7d5a7079497c716dfb13eedaaceb661704a37c6a484aa1821d590cc5c4585e7c363507b5bf9e9d34e1a7cddc00eef250c071fd1cc9ce10411f96a4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-arm64.zip", - "hash": "ed7622ee612b02bc2e857aded7a01545ecb9b1a6dd647cfc91972882acaa2472b0fe87432a31b9f6d80f8d556097e0f3b6834e4b803a2a58c18c59b1ada2a14c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x64.exe", - "hash": "382189831b7ee6ca469a6d6d72d42bf072142a745512d4a125243467e5a1670b0e240a068e98ef6e0863f60bd84669610ba03ec0f0bd36a2b66f64c7e3e70070" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x64.zip", - "hash": "bfaf5a3da6c8cdc7e82c7ad86ed1282ed050b689e02a65c32c57aa64292283bca710b2f1fe1bab62ab7b9bfe126fbab27fa4d2c59f9f96f4b32698b06b46dde7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x86.exe", - "hash": "215cbe2078ab063b06dd74403c832b3247de694b66c56e5f7333c160c1d103d5cef94b897f73fd4c5a9380be245b7eb0ca8143b3d184693cc407cd24b6f7acbd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x86.zip", - "hash": "99649796ced7e9b6f202c41cf854034f92dd6af8df018c58efe1b44d34a4273e77153b00b32cc1073893b2064e8d4dd49679fe9f0709aac8d60588039a2fd4df" - } - ] - }, - "sdks": [ - { - "version": "7.0.410", - "version-display": "7.0.410", - "runtime-version": "7.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-arm.tar.gz", - "hash": "95b639a1475d9b7637d41a14c0cab3993b3a2b4be63dbf251ffef840461c51d9d5ecd78ef09c857fe28399155f7a40449e08c7a33ce08850c4e18efaabab45ac" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-arm64.tar.gz", - "hash": "2db6a3b9a532d2f59a2b459e634206913a9585c821f3f578a421e3bae346a92dd9b85b76ebde343ca3057275f7ec4d0bca71cbb7f2badb6dcdb516244e84da46" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-arm.tar.gz", - "hash": "c7b19cdf213126456fe7f20171ffbf5cc41772305b47d8d06c64612a509e8913126405ca8ea5b64f93ff4d2cfea29fa128671d40ef23ad669d8b47282238dfc1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-arm64.tar.gz", - "hash": "3beeb4f3d5360cc9bc1739b69028f582b66a6a384c9668ff12a0fdb9c29f92dc757b7b17b3dfcc81e5503f9adaccd7b9ea5490f8e1629cdd98e1b45929b692dd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-musl-x64.tar.gz", - "hash": "6345ba8139af42d7a8330b5a5e17c71b3e068066561006c68bfe2bfb5c1abd2892f0d903fb7aebc2a536d847bc1277780cd651fa531330c16fa302a076cb5415" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-linux-x64.tar.gz", - "hash": "20b8e02979328e4c4a14493f7791ed419aabd0175233db80cd60e2c004b829b3e8301281ea86b27ba818372473accf5a6d553e5354c54917c8e84d25f5855caa" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-arm64.pkg", - "hash": "d4b21344a686f02624afd43f0bbe8e541d9087a2062805fefec345ce1a0c0158e026d972f93bf672d83b4e5141e6bf3f4f97e1263829531acb439546afa830fc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-arm64.tar.gz", - "hash": "c0ef1914f2b298504433bca9cdab02dcf324421ece39657b66523f13b7a7166e726783673a602fb462f3db5c53f59a89381b918e7658d49a57763b43cf75cedc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-x64.pkg", - "hash": "1ffdd35bf5cbadc5c9b54d410139ba56721203feb3aac820deff4d541855c33f7af6d9900d8848e9e97a708ac3db38391c1c13de2cc44a4270c1796f6c907315" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-osx-x64.tar.gz", - "hash": "782e15c19ce20aa8333566f23c2d3cdb8e89c7626de6330ddf670c4426e30cc854e44ff3341578622aecf210fa66ddcb63a7d2ad629ed92cb5582ab670f953d2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-arm64.exe", - "hash": "4cf7ff978d7d5a7079497c716dfb13eedaaceb661704a37c6a484aa1821d590cc5c4585e7c363507b5bf9e9d34e1a7cddc00eef250c071fd1cc9ce10411f96a4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-arm64.zip", - "hash": "ed7622ee612b02bc2e857aded7a01545ecb9b1a6dd647cfc91972882acaa2472b0fe87432a31b9f6d80f8d556097e0f3b6834e4b803a2a58c18c59b1ada2a14c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x64.exe", - "hash": "382189831b7ee6ca469a6d6d72d42bf072142a745512d4a125243467e5a1670b0e240a068e98ef6e0863f60bd84669610ba03ec0f0bd36a2b66f64c7e3e70070" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x64.zip", - "hash": "bfaf5a3da6c8cdc7e82c7ad86ed1282ed050b689e02a65c32c57aa64292283bca710b2f1fe1bab62ab7b9bfe126fbab27fa4d2c59f9f96f4b32698b06b46dde7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x86.exe", - "hash": "215cbe2078ab063b06dd74403c832b3247de694b66c56e5f7333c160c1d103d5cef94b897f73fd4c5a9380be245b7eb0ca8143b3d184693cc407cd24b6f7acbd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.410/dotnet-sdk-7.0.410-win-x86.zip", - "hash": "99649796ced7e9b6f202c41cf854034f92dd6af8df018c58efe1b44d34a4273e77153b00b32cc1073893b2064e8d4dd49679fe9f0709aac8d60588039a2fd4df" - } - ] - }, - { - "version": "7.0.317", - "version-display": "7.0.317", - "runtime-version": "7.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-arm.tar.gz", - "hash": "4b50c74d15871ab45cf7fd016fa051f0383f0095f91b4ef2710502818e2f9f69023b4d00d584ef77d8187ae8e95a8d2923b3d03ebe2a3ff70a9109ed12f748ff" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-arm64.tar.gz", - "hash": "22badcdb2cba0f1bedb1fcbdc99269a66a01a232193e00b42823806cee5d46194b8dd008a53e17455072a410f77bd351676f351670be96c13572d8e30cfad180" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-musl-arm.tar.gz", - "hash": "7caa1137ca472471ab959deceb7e3e2828a08db5fb0e1c6b973f2470a1cb6c8bfad332ccac31f66e11982e473aff82809b35fa5c036417827ae837137be34f39" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-musl-arm64.tar.gz", - "hash": "ed44b5d4ccb379f4286922e226d182e5eb9bc12f4cedb6002f06e5794b795d3ebf19a8e5a8e990c457df7f9eba9947bc1c7210af6a8dff2c6722d64c9e61f040" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-musl-x64.tar.gz", - "hash": "5a7d5f217010b3541fa9d0bdb43d769496855b9e114384cf6788ed4771b835466ab1878c5379c891493b54b87c1470778f50931c5a6c899af61348193bb963d4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-linux-x64.tar.gz", - "hash": "906ecbfa31b10ae5e2a8ba713d113ccd83e3a9b9e4d3e322482692891542959e76c51db5dd3825fb4a2cf1e951737006a99be7290f309d6822567d3a533a7a9e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-osx-arm64.pkg", - "hash": "7f77209eff77a85639e8429a9a48b4ff8cf619ca8fe5aae53566bb92ecb450f1fc1ffa7cdeae43344580fa0e5913817bae9baec00697dec6288d5f3d57c666c7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-osx-arm64.tar.gz", - "hash": "b5f367e1e20d728d7167c81e4146358e760f136b9ee0fc410d813c14366e38b09a069031aa8ca6d8df438435b6ab4e2e989be309e097169459365d4befaf9f5a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-osx-x64.pkg", - "hash": "617f473eae7f058a01d5a7925c206802d516a65158557b4f0b0173e0768fe2837c554946b0c517dbdf09101678ebee981b02b6423939713543d0010f94b7b1ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-osx-x64.tar.gz", - "hash": "d3dbd0fe7cbc62388f150adba5d818abee3986863d757ce63088f4feabf801052c08a608acd5036f97191435fe99224acb12c7365be7f77def28553a231ac3c9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-arm64.exe", - "hash": "2f3feffd4ea16079486d3850638837ffa9cf7a27953e2a8fbebd7718baa1c02596ac497ab10b0e496b45b9c879a7388730538f2b3af1ad88b6e53772ab7ef9b7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-arm64.zip", - "hash": "cf1f6357cdce36c5f3f0bb1f8b1972adda2988741e8fdbda17a84fb8ae9ae2d60921cfbc06ca03907aa1bd1a9633607debeb58ea910838c23261177e18a07b7f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-x64.exe", - "hash": "807c3b54e3d0cb92a741ee1ed1a711ca19080c40ff416c79af3fcf8d501957aacdf350bc48dd279a1324f1898934c5135b8c849d1b674f45d4e03a26029fa8c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-x64.zip", - "hash": "f283e2f840ddf176b168861d81884c06a2989d5e10a78a3c8d937f3c71479ce2d3ed9f0e7c4adcbd03cbccefbcd0d3ecf63ad96ce2bfcad528bce8eb0ed4235f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-x86.exe", - "hash": "de1c4b2086c28f0755fef326e6d4e8b2a8e5dcacee946e4597540930ba5c3b9329f9866111875642393fe481d3ebbe36e3dc489dfdaa9f60d75d848c3531ce69" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.317/dotnet-sdk-7.0.317-win-x86.zip", - "hash": "4e901cd5e2319215e60b05b023132fa86abcc8fc25e51408760fa18988c109722c6fa489b80eda98aea5d0bc1ccf7731e30eaf176ed936544803015d49ee89e8" - } - ] - }, - { - "version": "7.0.120", - "version-display": "7.0.120", - "runtime-version": "7.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-arm.tar.gz", - "hash": "7a9648de3c31f8d1257d98982f4ae2bd3bac32440bcfcb8040275285990934aee8719012a2ca3f5646546e566d2963f63bf89d19b568addc4d324ce974ea4bc7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-arm64.tar.gz", - "hash": "f530f794afe3c3b9bd87b8ed509a1a13b1c8fe6f2bc6e6cce3e8cd6b56327c0ff27fc138122c2dad68770cc5015737e007ef5706599c189ef0cc7521cbf0b654" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-musl-arm.tar.gz", - "hash": "1cda266f88a950f4544fdfccf1ecc26816b75c29f4866bfd98589290942d982a74ce17f2f507c6280b0f337b743a9ad01e53a3c1001c7477bdd4add53bb0615f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-musl-arm64.tar.gz", - "hash": "5d3124c3daf1ed1cef0c838e753637af1e52030b36630bbfa7dba176a7eca24fe9e5c4df9eff2170fa96cf63e0055df42f0950b3b5900deb282590e4b612f3fb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-musl-x64.tar.gz", - "hash": "c508ab5310d743f57ea78611ffe354268fe883e7c673ee808daaa6dde30ba454d5d70f8191c49eb52ae4a80c062ed6490ba1d6b752fcc541b0eb7835f4eee87f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-linux-x64.tar.gz", - "hash": "cb9faba83ab276c935ef35b31f016ca4617f0d967c5b4bf1e993c2159992fb59d1dd25dce09928915b9ff586ead7acf92ec1dd96937c93317a99ca0c92b616c9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-osx-arm64.pkg", - "hash": "4d7559c3840979911c80b4e1cab70acf380d1d0ad84d749c46db3ace274c68887d91cc338b906f272b5677d61d983457f124779f291bdb9ac097bcbb09ec3dd6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-osx-arm64.tar.gz", - "hash": "dc06801d8de34df698f93e3aa872d57131dd3e33ac4f7cddbc96223911e0ff32fdcea78332da7be0013362c90cd24db2d86c1e275297be6dd162948f2bd38cbc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-osx-x64.pkg", - "hash": "8877da5423c635845166d436c121e0598dbaa43e7a8948dcd35e64aa8e040bce2463c8cd43cf07a83e49f28d3da625a8f4031c465a7ee3c27d8fc15575688c7b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-osx-x64.tar.gz", - "hash": "94deb9988509fcbfffc357114d0f5645fc6b6f6156664040cd5643a191bef10ae2fba4168aa689ff7da1a1b6fa779eb4e53a77a7847beceb7f0ba451d2c20d57" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-arm64.exe", - "hash": "c0243da4539e74ffe20effd2150a84233b6b7d86a2df04ebf0df25b7069bfa0aaa42553488d2798ac6b1efb912d9058186230ea0199769ed13f31d6c48c728d2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-arm64.zip", - "hash": "8b6f4513ffc701c1b300585d15de4b03fdff7c9575f04c545b878c7e608f8f03def9d112e4cc0ff6131ca6e323d64979c88e90e4374559bed8b7505a221c7c63" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-x64.exe", - "hash": "3b6359d4457e4027402fa809571903c1f1e79be903c865d69fee5c8b64f2afcc1f375f4c71669caa1683a6e3128d352aa881d10e89b99321b93ae0e958a36a34" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-x64.zip", - "hash": "ef0e18f0aac6875b2602d45028e3006d2a25e9335c3f58ecaade72039e1d2f1be3c1c51178e44a14e8e7792e04ecb07a21ee884394600ca7f2214024675103ba" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-x86.exe", - "hash": "7ef7ca2e9e3e0277f84d1080352adacf5c8eab28dcf1e4b1b01a9713683a6875d1410ced0779ee4be569f901aa77933fa5035339e260752088792d1da4e36c98" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.120/dotnet-sdk-7.0.120-win-x86.zip", - "hash": "41b3d3904af8d4e941a9700d14cd6bcf79ac31b698528c7db8220b0e64af973286ed3e2141d2101ae2f89e09df67e76640567bf110dd7956a8569987bdbe81e4" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.20", - "version-display": "7.0.20", - "version-aspnetcoremodule": [ - "17.0.24141.20" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-arm.tar.gz", - "hash": "e82bb0f1d52d91fea6bed419a18561282ed0e9de36e564e641e296c917f7f65fc7555ccc046fed675ad67b4e7c50a70f0f48e8559ff4f2a9bbad2bc62dcf6ab3" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-arm64.tar.gz", - "hash": "dfb1c1bef4d826defd3d995599a5c03e1bf1a64c65d98b675d6c05dbb7380d98233953e68d53fc5ebec60ad4ef75417073fb1fb3256a0176bb964f0e01161f6c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-musl-arm.tar.gz", - "hash": "ca84e0eff052d45b7fa9afd8a68f1d56264155b507881105d206969922057bf332895a3c3a2a1702648e46712f022574d93ae187c8fd2610f8392909568abf56" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-musl-arm64.tar.gz", - "hash": "65406e1714a3117daa342b3fd0dbcd5c3214315611eacbbd8580827f69a07a9480530320ba40692a3d6dbff832d929a1420079f1db30ca3fd67a6fd035149d04" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-musl-x64.tar.gz", - "hash": "a80f31193af70d556e8d026d39d79863c8389b065fe0778e7b4360f7d1f6d36503ba52736c40e74a716c3c30500b185816ed60d79b06ae295754b67374a1fa45" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-linux-x64.tar.gz", - "hash": "62ed9743972043a72e48d5aa2f7fdf3483cf684a32b051315004d1c778e9712bf66e5e7a97a5a53993fa8e92daf5bacaf2cdb3eae44bb9a9e25532b9a80f4f70" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-osx-arm64.tar.gz", - "hash": "7de161ea45faef7693d78ca44b585ab73fc183232d3f8d229fde3d05d696818d8d6402ac7ac86ce239a0a6cdae8fc2eafbb445e99443d0c7a4aab3781df35be6" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-osx-x64.tar.gz", - "hash": "00677819450d14d9adc2b65f25b9a069bc2b43f72e4db651e77fe0e48320be8eb7c555277281de968e75d0fb19bef960d4dcb27161b8c57bce076ee18bb5ca98" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-win-arm64.zip", - "hash": "fff2405932a66d81cb3dc6208c507ace12ec388d41d6329c002222e97d1ecffb07967523bed88700d06b740eabf234085a38dc2522f266373b0652b3d8ab4e62" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-win-x64.exe", - "hash": "bc87577dc88703b7768a3319d494167bae74beae93b6204d4cf873814ea0f279dc188340913957d0677df640ff91641f63d626ec7c2cdf97be955ac390ce765a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-win-x64.zip", - "hash": "f1fbf553a0a2ac4771ba1b616d415bc370f32b7c42061881f6945f2ea8d4eac665c6f209378cdf221fc14ae03ed23ffaf0f34c07eedcc47617c272933490d261" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-win-x86.exe", - "hash": "ecc332a553a36823bb0929854e0dc1aeab3b7a4c6784ea0f7a5062b81028e148882e5f9d6c07232780b06d8d27dc633f509e89a95160ff6dc1454ac36162b4ee" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/aspnetcore-runtime-7.0.20-win-x86.zip", - "hash": "ec509837ffaa6918d6a1f8de0b041a5b75e38b6589daccf8dff7b7728c71fe2aecefc893868af7d242c97d0dd0b4ee20a69ffd980d2849e1af726831948af00a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.20/dotnet-hosting-7.0.20-win.exe", - "hash": "b33cee3dff17cf1db7202083cbc9efef4692ed44dd2f374c6cbe4f8a034ec5471f9039eec4b6f12cfea0428fcbc501c482b89fc942908a92f87f0ba9928e08a0", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.20", - "version-display": "7.0.20", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-arm64.exe", - "hash": "b11f73901c5268b1f68850e8afaf889778f18b6052b818d3d1eac6ff84f2671e24c6c7b4dc28dcba7bbe652acf08990cc4a1655c766ee659e75c9aef5b3ff795" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-arm64.zip", - "hash": "11635d0a225974d3797008eb22c4356e05a3cd701d384e583e30ff13be368cef6173ca068b0beddc77e0b572e993ad48df2706f89e6f9cc8b31944b6f7d3ce8d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-x64.exe", - "hash": "a0ed41e1672a25a9ee2cf3ca081e90f037b889100dbf8312e277447a801a4f3b7af464fa05fb796a24f89cd119102e8d0a382f4711e4e6263e5503642231da88" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-x64.zip", - "hash": "c073ecc14d92a35d0da9c599291912243798253cd07c82941bcf3d8942db1d6b8bdc99182f29c3e3b66a5b942219a729087f82e4fdb9a1e04ec9edb9945a934b" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-x86.exe", - "hash": "cfdf8369b3ac1c8fcba3274cb716c9faaa1df489ec3d3fd77419e78a0d740588546269ab7d77e09b3d4fe3817c55ca63c909d259ab7fe8b33da351453b58a05b" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.20/windowsdesktop-runtime-7.0.20-win-x86.zip", - "hash": "387c7c678fe8adc62f7152baf8616bf1a2f690e11dd319920f5c0e1c0997f8d6c32562c9b61feebe058a0608cce38fb46f7245577594fd94e2d8305874474f42" - } - ] - } - }, - { - "release-date": "2024-05-14", - "release-version": "7.0.19", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-30045", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-30045" - }, - { - "cve-id": "CVE-2024-30046", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-30046" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.19/7.0.19.md", - "runtime": { - "version": "7.0.19", - "version-display": "7.0.19", - "vs-version": "17.4.19, 17.6.15, 17.8.10, 17.9.7", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-arm.tar.gz", - "hash": "cb99b6e971077ca5a3c580c04e152026fc2c7430cbb30cc4bd074fa98dcbe1ade684a8267360c0d74e1d72c67622d6106ecb42ff6b1b226f39ff9c2d2f6f0a94" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-arm64.tar.gz", - "hash": "fde0a0190c77cd361722d2ce449b207b6a26c7f6462dcc9a2debfa1b0e670f7df0b538758ea5eb865f156df17a98722ed7e8f7a2bfceb0a486d1b06a2d436240" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-musl-arm.tar.gz", - "hash": "88506b6b86faee0d0cac11651232bdfd12e928d830ea157f6cea4095462368c22782307ffd8c4e805369d2251cc2a884c4ae5a9608c812af58b6e3351a13e4aa" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-musl-arm64.tar.gz", - "hash": "9f8e19a755393f6ed812c4f5b3d10123ec0f4a25bf469a84dba32b96d24ca4845c59293bd47d0dcd730e270d2b5f889a5e4247f30341ead0673b22a0e1a11add" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-musl-x64.tar.gz", - "hash": "a6234e5742bdc2fc2a83c327bfc3c8362caba99102dea373eb50619a6bb4292e8bcc304c1778ec59d60b7924b8bafcc0d74edad1cae71422f7390a97751580dd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-linux-x64.tar.gz", - "hash": "4e556c1437a58d2325e3eeb5a5c4b718599dff206af957a80490ef2945b1a2f5114d25b808b4c9ea233cc4eb2e5ce40932bb249e198319e97f3b5cc443612e6f" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-osx-arm64.pkg", - "hash": "ceb4a4185aab4af6a262562ec0d68ed8b87b440cc3fcc06f8230be487a872a254bdbd96403ac11928501c32c2b6b17dc772496b9db94d682ee41189b03d884da" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-osx-arm64.tar.gz", - "hash": "394f0f068b1dcd8f116c41391baccb46fd1112578281b0d11edd6dc194b767850c8a2bb9e2bc041b1e872872afb130fa10f7c98fbac988dd80c0d788a0f23e7f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-osx-x64.pkg", - "hash": "a9800f2aaf630774cb14d5f88ac6f7989177b8fa8ca1653774f2757d334fbd25f4613b0fffe303235a0ca7bcc3cb45354eda411c50d0328e1530b8fcba88b33d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-osx-x64.tar.gz", - "hash": "005828f1138cfce1f04741a478595186a1098185747ed0872099d7541d2bed16416f36d1214f6289f6ed1d3543e119733e4bba6dddf42db43150bc7bf2e980df" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-arm64.exe", - "hash": "5e8fff0877fdc832e75f3124c43d1c85510abb2eaad467a00b0f0bd367026c6d35322174d9097d70fb7d534b23e0e17a0c6cb61f6bf0a8716d8d7641c1048df6" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-arm64.zip", - "hash": "15cbc2d7518fc2098c9e5c84e49b53fa1a0936ed0314131724a3b4b7edf063dc94ee70345c9ca9595d695b11f92deee38f0c6902c239084d95b7701c273f99fd" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-x64.exe", - "hash": "a627b093b960a64ab4beb0855ed131d6af1dcc79b97b5d3dbf22d634996d3f46c5dc95a0d4a1e0258d8ea91fefd1359e97beda896947a7d03d0d2bb40b9e122e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-x64.zip", - "hash": "b8b2668f95a625705332c3591c864da80dca7cd5625978abf827e2968e516ed40a04d15b380f77638d5e2c83bfaff83e15cf7cc41b56d25c087ab5b08e43d1ed" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-x86.exe", - "hash": "5ebf57a3f3312cbb147886c8bb4a486a3111ebf00673bf76e56f8e60de8b763ef6075ad81bca262714ffa9767ec361aadc6d37b6a5d0044aea6590344e06c592" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.19/dotnet-runtime-7.0.19-win-x86.zip", - "hash": "90c53358481a3b8f44042cbfad6b1426f4939cbd24bcd0cedadb1ce5ba966fa09a71d4905c3aba112aaf6d0dab82c27edcad9d133ee1b58f42f5738649faf926" - } - ] - }, - "sdk": { - "version": "7.0.409", - "version-display": "7.0.409", - "runtime-version": "7.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-arm.tar.gz", - "hash": "454c8c1bd83e4569a38c22ce4f1e9414e8ba217c95829a2619e2d474389d105b43ea395c8bf26b3eb19a590a0e66e2d6ab93ae4a56ab8068709b2b5ac2199905" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-arm64.tar.gz", - "hash": "ebf98115e3ef9a5388394443b8cec8aa104c2468fbcb6c964661115665645326abb0bce42786a98eef4ebffe42dedd36de8608e15538d191e934dc83fcd8b2f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-arm.tar.gz", - "hash": "38ae7e0fcf36b2901073f17c2d0964213fcf9d481adc58384bfa82ee9c27690ce6703b1bfe440b55221389d3a4adbf521c50d993e2d00522b7aba106bf4da2b4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-arm64.tar.gz", - "hash": "d6b366d981852597ffc8310c7724ee4c5ee94010ac9e9d35f52bf1b7457934cc052d05206300fb9cb5d5b5db924f7b8a713a015568baab83baebb9d02634f2b8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-x64.tar.gz", - "hash": "dfa0449b87ff9bb139e2b0a9c9a6a45f5300c57ed8fcee1a2beb4ef65f95a047abd43e29e2e999fef89ffae0142ac508c17bc9723e0eeaa31ee189b1883c3972" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-x64.tar.gz", - "hash": "0b67d04621d7c2a1856fdb0cf6e081090b4e1df1075d2f881fb33655422f2f59f63f8324559dc207510485f77781cc20c7a407e3c04dc0b53246987164427671" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-arm64.pkg", - "hash": "c32c8f551c7b36f91b10d7bc221563dc0e2f6baa7c6c8637e5260871812656f4b1b8ae455913e43597b1a9e0b582b3612389b1c55d62ac74e4b614468fe68060" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-arm64.tar.gz", - "hash": "bf234cc2c6e90abb891cbefc3eed35e63fae07d312f01193d8890dce03edbaa3fe5a095cc695bb03ef35fcfd1c2e45e7b9d54c3b483761d7b1653a019c55b53f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-x64.pkg", - "hash": "a92bfeff2eb5136bc2d1103239ec1e44b258b5f97ed460f9000885255de4601c1f775c2629ab59bdeae9a231d605324b72bc793518530d2023e8e05512465f8b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-x64.tar.gz", - "hash": "70efa550d6d78e17db0368e8500ddfd9a6343707e009247d00062613e8052463d3d83779af619128233e78a29f5b5a5f71f0eaba740c3c3f74be0c76145c892b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-arm64.exe", - "hash": "3fcd7cec12617a82654f0837edfe04fd8741425af37f67a34fc72842298ab9d7f5c448a5e0e1d1c0656c3ee37fc2ecc6e46f4020c703713d45fd8a694160eae9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-arm64.zip", - "hash": "9149c5f0f04c580d241362eb99e1a5c10f807d40d33ac680168366c324197a52c7e74eb28318e407bfbcdd7149c9b56c2316a267ad83eccf4f0087a2d7302859" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x64.exe", - "hash": "fe742795fd48cba801f21b2d6cde618be9cd7414b117f712135301c93868b6da76a393b0e7d22a8d69c159113d2489bdcd55d2d9613a38d239e46e7f00de13e8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x64.zip", - "hash": "fc70f39afa566349200dca003aab4dd388df40cd898ec3d6c960fced1e9e219f50dbe9e6538893fdf4024d04b37a1d2c8aeebc695151e78f8852c91f572ef416" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x86.exe", - "hash": "11e7625c75ef2daca88cbb640b2905ffc0e61e2ad0a07511d00f6ae29e8cf152c9431f8700dba6dd9bba2015b4e4d0551b0b2815cbe7d835676037b02c48567a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x86.zip", - "hash": "7e65822039546c1329a6626141c89caf294268bd264775ce67ae429b73acf45ce55e35ce2d51721648c6507dd4dd8ed4235f60ae0577569d06bb86587e34b33f" - } - ] - }, - "sdks": [ - { - "version": "7.0.409", - "version-display": "7.0.409", - "runtime-version": "7.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-arm.tar.gz", - "hash": "454c8c1bd83e4569a38c22ce4f1e9414e8ba217c95829a2619e2d474389d105b43ea395c8bf26b3eb19a590a0e66e2d6ab93ae4a56ab8068709b2b5ac2199905" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-arm64.tar.gz", - "hash": "ebf98115e3ef9a5388394443b8cec8aa104c2468fbcb6c964661115665645326abb0bce42786a98eef4ebffe42dedd36de8608e15538d191e934dc83fcd8b2f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-arm.tar.gz", - "hash": "38ae7e0fcf36b2901073f17c2d0964213fcf9d481adc58384bfa82ee9c27690ce6703b1bfe440b55221389d3a4adbf521c50d993e2d00522b7aba106bf4da2b4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-arm64.tar.gz", - "hash": "d6b366d981852597ffc8310c7724ee4c5ee94010ac9e9d35f52bf1b7457934cc052d05206300fb9cb5d5b5db924f7b8a713a015568baab83baebb9d02634f2b8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-musl-x64.tar.gz", - "hash": "dfa0449b87ff9bb139e2b0a9c9a6a45f5300c57ed8fcee1a2beb4ef65f95a047abd43e29e2e999fef89ffae0142ac508c17bc9723e0eeaa31ee189b1883c3972" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-linux-x64.tar.gz", - "hash": "0b67d04621d7c2a1856fdb0cf6e081090b4e1df1075d2f881fb33655422f2f59f63f8324559dc207510485f77781cc20c7a407e3c04dc0b53246987164427671" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-arm64.pkg", - "hash": "c32c8f551c7b36f91b10d7bc221563dc0e2f6baa7c6c8637e5260871812656f4b1b8ae455913e43597b1a9e0b582b3612389b1c55d62ac74e4b614468fe68060" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-arm64.tar.gz", - "hash": "bf234cc2c6e90abb891cbefc3eed35e63fae07d312f01193d8890dce03edbaa3fe5a095cc695bb03ef35fcfd1c2e45e7b9d54c3b483761d7b1653a019c55b53f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-x64.pkg", - "hash": "a92bfeff2eb5136bc2d1103239ec1e44b258b5f97ed460f9000885255de4601c1f775c2629ab59bdeae9a231d605324b72bc793518530d2023e8e05512465f8b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-osx-x64.tar.gz", - "hash": "70efa550d6d78e17db0368e8500ddfd9a6343707e009247d00062613e8052463d3d83779af619128233e78a29f5b5a5f71f0eaba740c3c3f74be0c76145c892b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-arm64.exe", - "hash": "3fcd7cec12617a82654f0837edfe04fd8741425af37f67a34fc72842298ab9d7f5c448a5e0e1d1c0656c3ee37fc2ecc6e46f4020c703713d45fd8a694160eae9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-arm64.zip", - "hash": "9149c5f0f04c580d241362eb99e1a5c10f807d40d33ac680168366c324197a52c7e74eb28318e407bfbcdd7149c9b56c2316a267ad83eccf4f0087a2d7302859" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x64.exe", - "hash": "fe742795fd48cba801f21b2d6cde618be9cd7414b117f712135301c93868b6da76a393b0e7d22a8d69c159113d2489bdcd55d2d9613a38d239e46e7f00de13e8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x64.zip", - "hash": "fc70f39afa566349200dca003aab4dd388df40cd898ec3d6c960fced1e9e219f50dbe9e6538893fdf4024d04b37a1d2c8aeebc695151e78f8852c91f572ef416" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x86.exe", - "hash": "11e7625c75ef2daca88cbb640b2905ffc0e61e2ad0a07511d00f6ae29e8cf152c9431f8700dba6dd9bba2015b4e4d0551b0b2815cbe7d835676037b02c48567a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.409/dotnet-sdk-7.0.409-win-x86.zip", - "hash": "7e65822039546c1329a6626141c89caf294268bd264775ce67ae429b73acf45ce55e35ce2d51721648c6507dd4dd8ed4235f60ae0577569d06bb86587e34b33f" - } - ] - }, - { - "version": "7.0.316", - "version-display": "7.0.316", - "runtime-version": "7.0.19", - "vs-version": "17.6.15", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-arm.tar.gz", - "hash": "309f86a7967375de0cf7b173c259ac62a65913e0762177fbced41e2af3c0d2f9abec61222d4cf9bcdb3c79eaf6616c6989c78d4be6ba8bfabb7aa25193c13f1a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-arm64.tar.gz", - "hash": "c6c7d57f6ddcb26fae6cef846745bb151296d0f359526161a0e700d9b54ccaef6a24acf2485f2abae1b7305608bfe9204ab89842a712f2913caa092efb756833" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-musl-arm.tar.gz", - "hash": "81349ad4f80ddb9a5226065bce69f56deb0b69d5fa9cf930c78619ecca72b9fa4c9917d5b6bd4bf350206f826f3440b054961223de67903687bb1089e62381e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-musl-arm64.tar.gz", - "hash": "f7bf16b5cba3d8f0c25b9571a553205465d61697ce87634930dc4cdb716be12c20cdfaebce098e551ac11c5dfab31389878d4fbb0af5ff6f48351b0b23fd5212" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-musl-x64.tar.gz", - "hash": "5bfd25a133a12f9bc81f8b6bbe93a2f82bfc63a421c997a04e480638788237bd1a87a9997ff5fc0c44e18f44129ff5681f8490ee6637b8b120d89df109f3657c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-linux-x64.tar.gz", - "hash": "1489f33f3314b93ac7b9411e4c884fb630622336bee6765b7f193aecda8798cfa201ae0b32d82ec401d5839601d79d6a854832502b08f6eea860fc47fc1da6f2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-osx-arm64.pkg", - "hash": "e730411e4bed1bada847751986d12110e945654069e9c97f1dd0591ec4ddef1aa20d3b3193052d608161ddf4aead666f99b0ba39b4faa2dc3264f3f1a6f9ebd8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-osx-arm64.tar.gz", - "hash": "7f59874fb1638f6f09a5538483ed1b39e482a90bc11555b07cac8fc8ea941dbd9419f57fec252810bb324b89d8647b6bf32d1bd4e6b720c568929d82297d260a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-osx-x64.pkg", - "hash": "1a58c3c560d41c858160ba81c86cd92b2e793b41243df7386994a277281f688d5b98abcc9f7ea8450488826fb37feb45f381ce5e11dd94563c9aca71af5204ef" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-osx-x64.tar.gz", - "hash": "52a96edba93029283d555c13abd1c1b016870bcdbf10db4caaea6f4b18c46aff3b49355f8bf7b8b2548287c1bc31dbe38c6b7a27e40c1129c2eb010c697c002c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-arm64.exe", - "hash": "8614d6252f7ac6c9115933111c14a1447c6dd78f2507a978f05e69a359dce2c476cea781f79b91d0c4db9800fbece6bfd96c544c8f939c07929952b49179a3d2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-arm64.zip", - "hash": "73968b9d8eb4219eef39f7d2225d2bf68ca1dc4bb261f4348117088516a891f6e90561306ec98314a9d5e07e4558e19fb0130e62fbcbea5e0b061701dda0a9c5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-x64.exe", - "hash": "0ca295453bb59d61bdebd1f950b2785c55609e14e934b8118a50756431df167d5efc0ea3fbc9818548289e91da0036223e7e5d1e194eda750e870d344170dd09" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-x64.zip", - "hash": "ebdf263140174457f400c53f239e2820e0fea6c756d297148e372d6778f638ce9631443080703dedf79d83145c20fdef5c8846f2122afeb9018fc3781f40fc2d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-x86.exe", - "hash": "da3e5831ad74677cd3e31074bcea3a150a2875f800c51df5a8a8a3a951dde31c8a6aeae0b476b25b220cd475e55decd882ccbb078b154c033156d2295435c9a4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.316/dotnet-sdk-7.0.316-win-x86.zip", - "hash": "16ca576e1e736831cd7811da7c572263dc653c1dc2faa838f67bf110081d0c4360d4661b113dd1d21fc7affa26be34f4fd4629d3e9a9bfa050453174a1fa08fd" - } - ] - }, - { - "version": "7.0.119", - "version-display": "7.0.119", - "runtime-version": "7.0.19", - "vs-version": "17.4.19", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-arm.tar.gz", - "hash": "174df9357b0a08c6a7d13e1862965ddb4c65f3143025b766a62f1e3eb8da1207ec08f3db1ea01c11f857eea605e991d5060cc9453fc8498e41494231919f571c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-arm64.tar.gz", - "hash": "187b1422f0ce4eb59c3f894cacb074abe285ad0346ce6cd95a240506167932f08c90ef2529492a8fe6a9abf8bd7cf3dd4c7258cc5972ee4fa630d75f03b42ccd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-musl-arm.tar.gz", - "hash": "08dad0d08c987967a7c5ea3b1d552c25b541921c978ef845d159b94415786aa5ff3f58abd1745212fe479044157d2a7fa7b43070bf04163fde7e814250055f3a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-musl-arm64.tar.gz", - "hash": "373fb4bf6336af3e0daeda8f10f3b0c00ef06de7e72c4f33ffdc8a7a1295bec49eab95f172fc165ef7da2d48fd5886259a9b084adc80abe19133ac41a211d435" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-musl-x64.tar.gz", - "hash": "117accf61cc7ba2ef1e282f721af4a39650da8df0df4517c284fa2080c78854577282d72664bc9e7081d1812acf8b767245060e385b7255b61631ddabdec68a9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-linux-x64.tar.gz", - "hash": "6be08bbbb9d961879b63943413b70e0ceff413e68af59c5c5f01120b02c605e83145a5a9f3417563f9b39159cc5ee149219e99e48ebc92ca2b25c2c0554dd5d6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-osx-arm64.pkg", - "hash": "9eb832a2e7799b1db88d4e293e6f5c4514b2639ecf0788b8b17bf7707c8f778bdd78964f1870826d5170de5e7232d17789fb74f487ae036370acca5dd22c8e17" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-osx-arm64.tar.gz", - "hash": "c411bae746be15f270513412a38e8fde5a72795f876f26b7e5452eaecd3b4fb0e979f9391e0f5f652c692a4516741f2165d77afd5ef264bb24b8bda9cc1e4bf4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-osx-x64.pkg", - "hash": "ca4ed7de5f0e710144556a2a4e4c85a668880ce3d6b53e0d6420801cbcda58446ce0b8094d8d9b8ffeaa827746fcd96ad5da0a6a6869466b1ad6cee7ad01acd4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-osx-x64.tar.gz", - "hash": "dd70345a9093abfd0a839394e425c7b9907afc5884828127ee503ead5395338c1f1b013a481eabff6f1ea1e9e57ce76ef0875d5feb1540f3b05539e9afd129ff" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-arm64.exe", - "hash": "7cf8cc33aa41a005420fca136203f0cbc58d93610792d1b8e278a966062299e8fcf74d8e2e9cb7dcb6fa9a7b9632013539dcdf7aa1ef1a7f3cebfcc783dd5ff9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-arm64.zip", - "hash": "a692e0c35fbd8e90ef2809d6b1ddd392c91ca6221852d0a25d89234e1ca94bb5d9290d70a9f2da60ac29601f628d10ca8a4d3dbe01ca982c606faeb7396cbbf6" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-x64.exe", - "hash": "1927e0541c82212d3b57cde41df53f360045953953fa6d851a69d9e1fb570829da4f1179f262079e2ebd43f531afa687a0f699d2c61e57e0f7b3d4d6dfd607a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-x64.zip", - "hash": "c944fb5c27cbca981c2887adb3856483f15cca6507806f4d5d17e1a9a1991a1138ad685f849aa6edf511c348ce30b7894bcbcb9d01550521ac1fed7ba31f079e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-x86.exe", - "hash": "964d0ec02d36936422b8a803cf3ea3223bd277700a07d5417ea82f87d89e9cf4c8dcbee9b5083ad1d7216890dda823f59919509d77394b5b14117ad410afba0f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.119/dotnet-sdk-7.0.119-win-x86.zip", - "hash": "5d2dd8b325dbb9eccd1f40bb08ea1eb1466fa4f237647eadb80e7465e6ad815b2f934a3675453852faf07b3cafbc974bb51c53c18d42f0f21463f4940d5a51ff" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.19", - "version-display": "7.0.19", - "version-aspnetcoremodule": [ - "17.0.24114.19" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-arm.tar.gz", - "hash": "a9f8fef6515beeb45d1f5ea9408ef2ba12f1be7f1020632691e3c0fd68b94bb802ee55153e6e3578049f6393132709d6c2f11d0ca9c174780a9bad44cf770c4f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-arm64.tar.gz", - "hash": "c71e6a756bdac7f68289fb6c67fcb8c347586e421cbf4345fb510686ff5948e25898759dc7ab30904ac07a7d595508e59d66b5b6dc88d30b54c141c82bd590cf" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-musl-arm.tar.gz", - "hash": "f4fc9e3454f19078d3dc8e02e4e630ec73f196f071c9a3eef48efec905f4ebea8c96d67410fab1d769f5e169938e4fd6056b05d03f720dd494d6d3ad3a29799c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-musl-arm64.tar.gz", - "hash": "b7680432ed7347cd8c6d66c9491401c1386f4b0af395d22130460ef13215c3a80181a001d7445e8e19d0ea702bd4d6f0907c3caf7ec8614f69cacb7dd3e99eb8" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-musl-x64.tar.gz", - "hash": "4d469585d06256cf207b077961e920ea3a654e32fb984b72c3a11203874c84b9a4da0f20ddd3e3df40509a372482b20d69d81c72539bfff02345635c896b7efe" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-linux-x64.tar.gz", - "hash": "569fcc25f0c32df3b28c4569bbeabb6c20afc8865088f14a405d3847bbfd159cf291d2dc4810140b8f436f06c95ebb09214ac837b5ade6bd8121e9c0204eb217" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-osx-arm64.tar.gz", - "hash": "10fdc9868efdd8cf25dbe10843ea17075747cc1bee52e495af7e1858ff556dac2802bfcc85fd474527f142672b45e7a1c5b63a927529036923671f6cb9092431" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-osx-x64.tar.gz", - "hash": "5f16d0cea6b637ad9835dabf23b37f47d8fe92fbd4cfb1ac046fb607beb380255759f14f3e80f9a49c3545afc47000c770394d4dacc5b7444ab0b6d87a5336b5" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-win-arm64.zip", - "hash": "a48ca8958cbcd874f7ba9ba3c161e59727d3de91e310897322fa4806f9b0d294c82e817aaffab4420024d0802f7788c354bdbf9de45bc91dada48d6e1d19cccc" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-win-x64.exe", - "hash": "08fece331c61d8fe13b525a6129109f0c77fc586161509bd9f8208084206de3275f4b1fee0b8c28d6e087972c2d5c03225268f21720bf15f740cb33e9a02fc16" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-win-x64.zip", - "hash": "1dc52c048df6962db66a574fe11f040e9536e7527c4fcd01814afa84f856481c1341f4e09547648e44bc5d34299129181be15215930b40a8eb321a0e483fa64c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-win-x86.exe", - "hash": "d1f84d6e8f3009a0fe46e1efaa4e7f9e0048e2c64ce7df0ef1aa6a1782bbadf611cf3dcd23a7ea060a02ca314a1d0e6914c82f13cf92bba26fcf22ac808b3c1e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/aspnetcore-runtime-7.0.19-win-x86.zip", - "hash": "82af8dfe51a5b88059d99eb8ce8b7806f2791350eecd0cab78b773fc35aa9aa706059c826d0ae78e025755649c4806b320017353193143b96273eff4bce27634" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.19/dotnet-hosting-7.0.19-win.exe", - "hash": "e6b86e66911a18d5544db6817a4f5766b59c174181d00da0a95c16ce49a8ceaf1eab43094920e7a329b248a9a1e3e5514b019e19a3e39f2726e11da1213022dd", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.19", - "version-display": "7.0.19", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-arm64.exe", - "hash": "aed3c87cf5f42b7a63ba1c2274962b57236b866529afc581896ec8d2ad97acaa5fdfafb483478cffa6617e5f7e390941708a10108339a1978ed00def11b86344" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-arm64.zip", - "hash": "e9117e8c611eea9b966a18f1ccdfafccc5429598e32a970531fa799c4000c57563414849fab311c20cfe610950c73af6ff79c24cff0a86cd6d1f8b079fcefcd9" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-x64.exe", - "hash": "a5bf3d8a0552d780d4b5dcef7b4b8158cedd4c3d724353343912861c1195d21706ec52b718216d0a4f9cd65cc385afb6864115f9217cd72379fec22dd37be3cd" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-x64.zip", - "hash": "46683cd7f7539171b82dc98ba8a357856d50383fb9e15ae657098d9645a70fbd73c9bd242d1f1197ef7530eddd01da305df23692e64aab55bf3be2ac8c2435ce" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-x86.exe", - "hash": "bae6f65513a65b661bd762094a729a5683306d0f1bda1a8071309baa632abfd9902d9c1436d20f703a94aa8c0e3133f42fae619866be1785a01cd997390cbe41" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.19/windowsdesktop-runtime-7.0.19-win-x86.zip", - "hash": "9915b8a5bc4a8bbaa4fe42c2baa075cfbcdcf8b71d5398bf047bc4695263da4274421f31822d919451d90937fd6eb6b9ef5c2f1c22ebe93d6880ea21c8e71db6" - } - ] - } - }, - { - "release-date": "2024-04-09", - "release-version": "7.0.18", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21409", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21409" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.18/7.0.18.md", - "runtime": { - "version": "7.0.18", - "version-display": "7.0.18", - "vs-version": "17.4.18, 17.6.14, 17.8.9, 17.9.6", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-arm.tar.gz", - "hash": "8c9c52a9c12a7081e12072f1e3516771cd22f595c4dc78fd08ae3e55e5e4ae3b49f0c966b56e499783fad9b496638070cc22b27ed7b2b531793e611156861308" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-arm64.tar.gz", - "hash": "7cf7d3b0b12cec234227529c66f2a2ecab49e63af2c766d7539b6591f709342da4f2b846726630ab6104a19cd94c1eed5ec66e1a773e3477b344941bc1ee5f41" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-musl-arm.tar.gz", - "hash": "807d0472f05612b5b36b6d08978173cd434856d1fa8ddbf326146628c2cd55170c7490df713dc76cd5441679c95c71f9884ad8cc46e9219217843458b36c9bb2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-musl-arm64.tar.gz", - "hash": "0bb9e0bf5f29bd3c7e2e756f5504807f416d345b42ddf501fbef3150a485795d5db84724e1e08b14482a3822934a028bb5fd59defaf2e5eda97aac6fb84490bd" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-musl-x64.tar.gz", - "hash": "778908f17f518360fd4f883b0ff52285955d09b42eb50fd75944910f56ad027fb86e2d587ff1c2d77a0465373a1019d6eaad2d2103eeb5a774776fcd5171b6b1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-linux-x64.tar.gz", - "hash": "9d2aaf11e798d8dbfa74a93cfc53c6bb631cfb041b5dc55c208f980f61808e872dfa9880c7d9d4b42aad934e5350c9e8f327664909054fa0109636158701b4b8" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-osx-arm64.pkg", - "hash": "ef82d5f6fe865f424c6778117e8bd5a02818c34ddc519f3c1be3a0fe8450b4d7da1f2e1fdf679cea470a521f982bca658575b33ba4f3686fea6d6736ade74557" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-osx-arm64.tar.gz", - "hash": "f9a5f09afd9c7cead985cda7db03fa6bd6b684aecedb2b8bfe3bb2569704c233501b1f9888e2e26f273d5ab124b0b9fecf3edf8c7d0b0908f5a499323c67515f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-osx-x64.pkg", - "hash": "db52b7a08fdd799f2a5222625f61188952c2ce1a5d7c23a39a5598959f9ea5961749076078121434be108c87ac2e7beb42e01fe875197ff9b10d972eb7c72d74" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-osx-x64.tar.gz", - "hash": "ba790572b8b37a33766dcdfae319c5021568e49be3d9a55c688655b1b4174faf6cf20b3077fefaf57fa2b12261b682a685345db77034412dc883cfa05b8e8ca9" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-arm64.exe", - "hash": "f0b4cd7fcbe046d32f63e2c90a969e25323532e22eccb734168f92f24a767cacb9276e2c3167c4f1a0c67666f361f43fa15faacd47714f504e16243d3d5bd781" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-arm64.zip", - "hash": "8b8960592ad08e0c0b497196c95d5d9d6de341d68c3a2c166571d110de43186d1d10e69509f3dbc895336bdd7c238d218906b0b0db85b24c281b1ef05db575aa" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-x64.exe", - "hash": "f7356a39748af2f257ceea29cc4266e99ce02f14a789f14c70842b0f8c18c5336654fa5ed6546913755a590f10ee1d9df630e1f44f2cd7bae39b2db4706f5d52" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-x64.zip", - "hash": "94152f9410b0ddbe5cc5693f24f7c226c112ee30bfe7af6eb6cbdef2cbf5e6e596de1306572a5941451f80b9050f2ffbe259da4608b82df45e1c126c3ec0de73" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-x86.exe", - "hash": "dc1aa013d145cc991aaee2cc605b714c1d0ef070222fd986c411a8d69dcf8b9e2e19dceda83fb34ba95fb7369b63000c7f84a071816f612eeab53bf85dae5b5d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.18/dotnet-runtime-7.0.18-win-x86.zip", - "hash": "be3923495305a44fbf99965b7a568d0a3f3ef1601abd182b9813632cdfb290a1255304ffcd61d0b12f69b4454426fc5873799f1bf73639334af5db673d9d4262" - } - ] - }, - "sdk": { - "version": "7.0.408", - "version-display": "7.0.408", - "runtime-version": "7.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-arm.tar.gz", - "hash": "530cf32f3dec297c6fcd2d3b41d6aea4d897982ce72a442cf40662a36342afaa6668fa84840cae54bed224ab781559af3b2d9d303149debda7fd75d3904da51f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-arm64.tar.gz", - "hash": "7c5e18f165c2d74345102244a617b475b68c208434512211af154b28896ebe5487caeff96b278e877af384e6e0deb476d38be16d275ad88af1ae177afef561ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-arm.tar.gz", - "hash": "bf37caba9ef5df4388d4ec3740301a9ad2a48561b1ab563efc2e0c3b66400ec863506cf17df2056e913742bd642db29b543274c7c61ca27d9aa001164109dc93" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-arm64.tar.gz", - "hash": "019def202fcc5c9ccecd8b1110835805dc987c3516ee86e8e43922d8e4deca9b3c92bf4f080ae15226d8aeb4e6af20a1208b94275db7bba8429650b016a05aec" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-x64.tar.gz", - "hash": "6247b717ff1153c91f787f47570baa2e7e3c56d71408c3d0b6119deaf9282feef7b0aa95050503ea55a1e081ccd9c4bae7c19d482cf4436331b6fbe3ddec91a2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-x64.tar.gz", - "hash": "89d39601a27cbbc74a5dbbfc6dda6661220e76b73f7387fec6558222aa144734b44db5788bcb888c7f49d4659c8b0ea60794f93ad1223c86ceafdddf6e6b70e2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-arm64.pkg", - "hash": "df42310c6bbc7ea5e07e83cde66ee31d88fd6e6c7e9f4ee34dd1b143d661033df3ae0c2e8c96ac51e5f02a0d8df4a1fe1fcbb248e5d81d1b5d32b2810f6c57b1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-arm64.tar.gz", - "hash": "ce1b9f7bc67c80b8774b7a8071438027f322c35c330be2667bf15a80a8826a32d9f8a7d2762ba7f3c7417b31f3ac288f336956f6e701d282e80f02c68b805177" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-x64.pkg", - "hash": "d98861796d4562e4d1c465637742136a628c8d7852bce6c705bbc724d3333bff6aae2c4f516dcdede23d785901cdb698247427f327d162df9c26e33fe652f188" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-x64.tar.gz", - "hash": "b183b1a84b345f8e41701f0f1cdcc68d0bcf286d3aad53bf04d860bc6260bde87a6797f6c55ef807609680c10b6efea6bcdf6732d3fa097ffaa99b505bbea7a9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-arm64.exe", - "hash": "23c1c50ead578bfff4422e575dfd941187d2c9b48be1dff12160ddb333ef4ce4f8629a5eac97ca2a22a5acaf1c4052304590e624215684b7deecd9795b8a9816" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-arm64.zip", - "hash": "e3b7273afaf89b69653ac7d6584fdc9be250dbd3d0246c9d2bd2a227e32a9cdfd03c73cb1a304c8ca99179b0da94b67b976cb92d40f151a05fa153d3a1537585" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x64.exe", - "hash": "02b89e494c0374fc5d8830428607da61a3a87b2b9ec08da4c7802e2f13121d6def8316ca8f308547b291f055a7f3aa885032f257788e25b3c87e54546f778f44" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x64.zip", - "hash": "ff6b6f65208a8ac983505b6cab1c6fd8d232e0f3138d8f90dd35bd799fc361ad9412770a0d0a6aff04eefcf02094acf0f7a63649a609a8da4090e69c9d93b72f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x86.exe", - "hash": "69b0e5d2a30f69c2e5284868ea43f6d253c33c078ad07a6054c3145fc5be825003e98528e48caa3b1c8d1bbe2d3bb5aac4fb52a04091901bb28649e938e8fa2c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x86.zip", - "hash": "6de2cb1187c8fb75c7cea70188eca1a8e0d729a8a24b1cea8bbd44c8d0cff25452ec2a2aff924047655d80c4508f50f2d2dfd7791e475b69a5bfa8301c4a72fe" - } - ] - }, - "sdks": [ - { - "version": "7.0.408", - "version-display": "7.0.408", - "runtime-version": "7.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-arm.tar.gz", - "hash": "530cf32f3dec297c6fcd2d3b41d6aea4d897982ce72a442cf40662a36342afaa6668fa84840cae54bed224ab781559af3b2d9d303149debda7fd75d3904da51f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-arm64.tar.gz", - "hash": "7c5e18f165c2d74345102244a617b475b68c208434512211af154b28896ebe5487caeff96b278e877af384e6e0deb476d38be16d275ad88af1ae177afef561ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-arm.tar.gz", - "hash": "bf37caba9ef5df4388d4ec3740301a9ad2a48561b1ab563efc2e0c3b66400ec863506cf17df2056e913742bd642db29b543274c7c61ca27d9aa001164109dc93" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-arm64.tar.gz", - "hash": "019def202fcc5c9ccecd8b1110835805dc987c3516ee86e8e43922d8e4deca9b3c92bf4f080ae15226d8aeb4e6af20a1208b94275db7bba8429650b016a05aec" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-musl-x64.tar.gz", - "hash": "6247b717ff1153c91f787f47570baa2e7e3c56d71408c3d0b6119deaf9282feef7b0aa95050503ea55a1e081ccd9c4bae7c19d482cf4436331b6fbe3ddec91a2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-linux-x64.tar.gz", - "hash": "89d39601a27cbbc74a5dbbfc6dda6661220e76b73f7387fec6558222aa144734b44db5788bcb888c7f49d4659c8b0ea60794f93ad1223c86ceafdddf6e6b70e2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-arm64.pkg", - "hash": "df42310c6bbc7ea5e07e83cde66ee31d88fd6e6c7e9f4ee34dd1b143d661033df3ae0c2e8c96ac51e5f02a0d8df4a1fe1fcbb248e5d81d1b5d32b2810f6c57b1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-arm64.tar.gz", - "hash": "ce1b9f7bc67c80b8774b7a8071438027f322c35c330be2667bf15a80a8826a32d9f8a7d2762ba7f3c7417b31f3ac288f336956f6e701d282e80f02c68b805177" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-x64.pkg", - "hash": "d98861796d4562e4d1c465637742136a628c8d7852bce6c705bbc724d3333bff6aae2c4f516dcdede23d785901cdb698247427f327d162df9c26e33fe652f188" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-osx-x64.tar.gz", - "hash": "b183b1a84b345f8e41701f0f1cdcc68d0bcf286d3aad53bf04d860bc6260bde87a6797f6c55ef807609680c10b6efea6bcdf6732d3fa097ffaa99b505bbea7a9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-arm64.exe", - "hash": "23c1c50ead578bfff4422e575dfd941187d2c9b48be1dff12160ddb333ef4ce4f8629a5eac97ca2a22a5acaf1c4052304590e624215684b7deecd9795b8a9816" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-arm64.zip", - "hash": "e3b7273afaf89b69653ac7d6584fdc9be250dbd3d0246c9d2bd2a227e32a9cdfd03c73cb1a304c8ca99179b0da94b67b976cb92d40f151a05fa153d3a1537585" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x64.exe", - "hash": "02b89e494c0374fc5d8830428607da61a3a87b2b9ec08da4c7802e2f13121d6def8316ca8f308547b291f055a7f3aa885032f257788e25b3c87e54546f778f44" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x64.zip", - "hash": "ff6b6f65208a8ac983505b6cab1c6fd8d232e0f3138d8f90dd35bd799fc361ad9412770a0d0a6aff04eefcf02094acf0f7a63649a609a8da4090e69c9d93b72f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x86.exe", - "hash": "69b0e5d2a30f69c2e5284868ea43f6d253c33c078ad07a6054c3145fc5be825003e98528e48caa3b1c8d1bbe2d3bb5aac4fb52a04091901bb28649e938e8fa2c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.408/dotnet-sdk-7.0.408-win-x86.zip", - "hash": "6de2cb1187c8fb75c7cea70188eca1a8e0d729a8a24b1cea8bbd44c8d0cff25452ec2a2aff924047655d80c4508f50f2d2dfd7791e475b69a5bfa8301c4a72fe" - } - ] - }, - { - "version": "7.0.315", - "version-display": "7.0.315", - "runtime-version": "7.0.18", - "vs-version": "17.6.14", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-arm.tar.gz", - "hash": "467eecef0962e24c6ec123a41d1bf765c4877ca7eb07b4a444bff159e1680ab145646a317290f1cd15e10ae0a4112b58fdd2d582b0b1c0d2258e5c901263eff1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-arm64.tar.gz", - "hash": "a480e012760980121af4eda39dbd0640e824de13f10e916a95e77b7fb591a3c516d40da45fe56dc07cfcbdf24074f4579145d00d45c84ef299ca9ee779c43903" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-musl-arm.tar.gz", - "hash": "767ea1c2f821bcb1bb09e42eb0ddc922573215d4bc0ca19733e8c644aeb5e0985e2453ac99cc99395cdb78a983149ca6868e60005bdf3960c1011939fa40ccf3" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-musl-arm64.tar.gz", - "hash": "9b739df0fddd12da7f24c9a1aa667aec7a4478c43624332b507b729f6d058841f70f6822a721651a2746b7366a8c211882794b1994141d7df8bf72a23eac20fe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-musl-x64.tar.gz", - "hash": "3f9ac9c3568cc8e559f1feb2b475f84fb45cce69ca114f48a82d0b186a81f170090ad6709790d1faa6e0c08e2199e4623d9745439e36f2fde29946c5e61c80a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-linux-x64.tar.gz", - "hash": "ffbaca47ee2a3b601abd1e8ccc99981e55d5f904072d5dc76e0c817940bf1ac1b71f5e652f649112bcee7328bcf0408d203b2f7c91d58a6aaa58c8ff553e49f7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-osx-arm64.pkg", - "hash": "280dbe4db48295e8b25691840a0c63f550a74e78415d44918c73c99d674dfe8bdf61d92b098cac7ee5f1021a96b164f75ed9adfb8e98a714e36bfb99e3e93c23" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-osx-arm64.tar.gz", - "hash": "f146ca3f530a96fbd14fe550cded99d36b35dfef4536f2a9174985c933db42c9a6d44708cab83c93a701f6482e0cf868e7aee92385cec201b9d0b5d5f348d642" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-osx-x64.pkg", - "hash": "70af06b85c1e6231e5e9ccb233f5738755243f77994d7cae598c2f3040e97fbb4db38777fc1cb3378fde2ca93ee781228fbe372a88de8d68cb51355f02e06fd5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-osx-x64.tar.gz", - "hash": "7a7d3c32f71a89bf0d9e809b068252c2496109ae226acaef163f7221e4a8231a2faa2e81ba0a95e7aeef7780691cb59b993e999d45076a280da518941b9fd2ed" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-arm64.exe", - "hash": "4ece84effa6ad2335334ee42b881c85b57521a0358c6574292da299699ea8202c9cd3df7b26b8b2ef82a8c751a9e05f2a71e8821cfc0cbd6aab4198273fbb79c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-arm64.zip", - "hash": "00fdb4c6856ee65eb834682e7bb24572ae111f500aa2af0815ccb82443c0c697d4947f54d68b75655cf2d1e1722600542303e35e379d3e2258aa6e31f9d451cf" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-x64.exe", - "hash": "cc1c60d78ba8386d733900f09aff29a538fc5905515163c0f9ede052a5914cd9a7c54714a443e0665d263e61da07c111eb6b05158fe74ee65acec3c6cb453893" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-x64.zip", - "hash": "7fd844a3181b26d39de5d952f0dab5bbefa8b2ed1cd360a2fbea2e5d5730e530fe3bb5f381514dbc2025c312f4036bc5a5d61f3dcc440522d0c0ab2155017824" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-x86.exe", - "hash": "8434d0b7f241a0e9d69cba35628fae6216c0ed6470bac656cb93eedefd3b5440e0e7c12199846b3d8d76b525e289ecbf9dbfccbdaaa3b230d9606e3f9d382609" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.315/dotnet-sdk-7.0.315-win-x86.zip", - "hash": "3717a79d9784e35a756d0a69222d71e76d445a997ddb272e588ee832477305a5a1f22d5c7c95d6ef26a955b7799e1f9b5589e97ae5e7de0f0a27827c3335f02b" - } - ] - }, - { - "version": "7.0.118", - "version-display": "7.0.118", - "runtime-version": "7.0.18", - "vs-version": "17.4.18", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-arm.tar.gz", - "hash": "91c106ba4d57cfa73873b21fd38875db7ebf59503c5ddf953afd8d6cd4e990e478731dabcf34f9e64cad323c6e797aad53ea13948270566b4a79adef565e49c4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-arm64.tar.gz", - "hash": "8e5358e3824ec141ee8406e0a67b8d1bf6965a4f9e7487bdee4ff02344078e95bffe4c46c0f1ae975b1caf7164387d35763f1b81abd2e66593b77cc0470cc957" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-musl-arm.tar.gz", - "hash": "a98948e0fd562d426ae3e3e90893b317bc4f48c701199bfeb1bcffd002f450b1e196ea70896cc61247ef62573472d1a0fdf9de7c392ba2225e42c89ac3bcd87b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-musl-arm64.tar.gz", - "hash": "fb5fc85c9fa55e13486a6a8029e33984f7d7dc80cb9a59aa4d7d9a69807d8c64577b7e1b41c8a694676b0353b74f205d423c510a223108ae8b2851c0e691de51" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-musl-x64.tar.gz", - "hash": "11d9daf0b80c4c735210c54eebda72c86e383a1cfee1129755ac2b06bd813e386d6650bd0ee54e7f8052f770ad15e3954fee2eb21258690ad59917823b01efee" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-linux-x64.tar.gz", - "hash": "4f34257abcc013683c0747f5510cddf26013f5ea4cd068efd7591b0a6e809038395d57842f163489884046bcc54ac7ffb406fff91701c9e371920efe6396b710" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-osx-arm64.pkg", - "hash": "d0ca7a10cd2a6ccf7ea50b740547a91f4aeb7c468de1bd3c4a36442054141fcb04c8e11dcaee397c85f78088ec67a998b70152b5cfdd22b7af927795bb5b62b0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-osx-arm64.tar.gz", - "hash": "25b2fd5a26b870f5b0f407acb3b0cdabe9287d2f7b7c3db81f85e34cecb7a3211a72ee54d0e0adafbbee151387e1bfe51e3681b6a0a347509bddd14b589ba117" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-osx-x64.pkg", - "hash": "bab3269f72afde525e09ba7c816fcb4af366a6ba230282dab7989de8f2101d476dd90464ef5299b6e4b61136903534ce133058f123319cbb68ecacb31d50c536" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-osx-x64.tar.gz", - "hash": "48081b4b53f7dd79aa9e11e362ab53d50b7efdb48f18fa8f0828c5e179c79b36b192b9b514e9effb04688838bf87a4d4b3763539fac34dd2f2570e1b8882d7b9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-arm64.exe", - "hash": "244d1b6517f1fbe41d41bb8650927128574ad20dd11b37578a693921036b1260afea7a6c99b7e93ad8af200a228f9a366b96798d410487da5813dcb10836a287" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-arm64.zip", - "hash": "529a98d7de14ba220f5a8caa99e4a01638ea0e70cc14657d01ab4ec7e82a0b481330bffe8696a0794cda974a4899a3c16f391c1de171b53bbc1b687e5c1d1457" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-x64.exe", - "hash": "770d2c7309ceeffa1d485f44f8728a9e5aec34c8b77fb6da4e9a034a3d1d4309fc6c931fc023ddf87b69f464271c6ce26e9ae9bb08fb5673c66e8c6466927c62" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-x64.zip", - "hash": "24a76983e281c28e44581d13f0dfcc157036f92c9eb7929225c2b7307a98fa74fd42f5bc01d19b7bc93d1c999412c91f9a4035263e7f1589a65b782342bdca08" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-x86.exe", - "hash": "8100bb1a72e515a1d1ea355dc5e0ede56ca4283e6a8391b88a63f9171e23ab5502742677496daad4fb7f9f64e10503e32b5f792f49523e5b7a5794284fd972aa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.118/dotnet-sdk-7.0.118-win-x86.zip", - "hash": "900d4a457b7aa6faa4423c61e177cdfd077231ea7aedca3852e2a8aa0dc7b13f175c0ae26aef35307ef19c72bf73a2b20803ccb64153d2f0bb5d08ce81d94dab" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.18", - "version-display": "7.0.18", - "version-aspnetcoremodule": [ - "17.0.24080.18" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-arm.tar.gz", - "hash": "6091a5b215867193a4ac85e8d38d54ea4534ef720319e79d3d15efba1a3e9ecefbb51fcbf9d1f0b132d808e235ea812fbfedfa2a2dbfbf7e3d8c3e68a3fbf710" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-arm64.tar.gz", - "hash": "62bc42a8d094be8253be90acba02253c27afb1eb6b06976c3adea74f967f522bf7938eaed25c824d6e36a9fb71f7248ba315cc67577a3c7fb73b0d3d7a41ecac" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-musl-arm.tar.gz", - "hash": "d3a5e58e231c7b923db0b0400ffe97514f8267e327a6cc28a5f820d3baa4bf6a03cd31bb4b6c8408138fdeb9cb0388d018a3fdeda67e4a31af28cf16c874149f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-musl-arm64.tar.gz", - "hash": "0b34bb383e6bbc17489bdba0c006a866e56a532453a49b95e3d39c830924462f45c6b757ebb416a32e40180b852178c35ec1b64ad761f33b63a98ef60e01ceea" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-musl-x64.tar.gz", - "hash": "9a89712051d663933850543c6bd9ef6ba99d42df974f12d5c0e6d31744321b50e8f02e75b0ddde4c6456f03f1f61205ad25c29f02b33c5e97110516efa7730a9" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-linux-x64.tar.gz", - "hash": "d2c3af93b9b8280c4e519f052f443e0504ccf7a04b3eef60500b2e3a8874a60a3a545ca936f8433887bfa6388106c19283c5a6a2c78ffdc19889bde3edbefbda" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-osx-arm64.tar.gz", - "hash": "3c56c17545d530a35cc13bad410da1caea33bbcc7c3a857b4d68f48a64f02cbba516d83cd0a3fea9a8ab463dac8140a6c079fb63887c176bdb2a44552dc71852" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-osx-x64.tar.gz", - "hash": "50cecd47a75498ffd2862b3a470c0e05848853b163925c0fb27a7912fc39f77aa27b91d4e780d7ef90e6bce22510714132cbdc06cee0db7547c9d79258d29895" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-win-arm64.zip", - "hash": "02b60c0bae10345cb2b5107a1d975092b2335c7b59ce1eaecafa95c5e5e2128db8686f01c629d6cd636e77d1f912934c2bb60716b4cdff6012c48d89705e0aef" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-win-x64.exe", - "hash": "aa718e0af9fa4b35e6d2a444ef0d2ab622a6e7e1d2a505a5c7b50c7428b1bd1c4f5101728e401899e2805c1bfc958f49c29b5b8fb91312a6ae3f2ab559d92f01" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-win-x64.zip", - "hash": "27cdb80a0a28f4d0fb375a5b0fc5bd80e9e4425f6a92dc5c7fc68578c8b6eb1f9a86293e840b056d38914b1ad2a9b05b17f284e2cc459cd5ec81819b89aa0786" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-win-x86.exe", - "hash": "6323a5eacc718158e36e983690981def62a0a84c7e12ff52ba31042da17476269aba476956f5dcf9f36d6b979681055275093016f52537c7f785082d55dbe439" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/aspnetcore-runtime-7.0.18-win-x86.zip", - "hash": "82cb97a72f66f51f154ccec782a0f7a25deb9c3e738e2bf687dcebfeeae2e7b2922b459ff692c802b3af852685fce072bf46999dbf47ecf238d3b12d3f345259" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.18/dotnet-hosting-7.0.18-win.exe", - "hash": "4ab78fada15616101ba33a247666a8bad83dcc58dd06d5e35b83a66f8b143a08a2a8621cca7f66dcf5ba098e1b721f8ad41143f8729f0ab293086c1e5e91ddf0", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.18", - "version-display": "7.0.18", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-arm64.exe", - "hash": "489c8a4e4c0c173dcf6abcf928b7179ffa82a76e67c95575304056027d04afa251f86caf63b732230b125eee0961c861093efd3e52061f1537754daa8b331028" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-arm64.zip", - "hash": "f2155d65e68a08d5347b03879b23a7ae402efa878add566de80628f17370bf9df6d3487e6e685a36455dc75eede13e28dccb6d65ac7949c53d6ec38b90c92c13" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-x64.exe", - "hash": "cbdd6fbdc4a2cf1810f59d247bee4843c91c244bff896b9b4de299edf1544d6ab55125c7f13c0e006fe3cf518141748ec827d5539a1f47ade852a62b5cd050df" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-x64.zip", - "hash": "b9d43e31da4e6bf387b5ddb0eaf8eae2241c2060d99ff1a347bf0b74147ca7ec91d4233f5a6c6ebbc0b4fb43b34885e5490f109cf79c70e9eee93b48a89c2168" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-x86.exe", - "hash": "4574b97556eb5b7a72dbfbde348b9e093c4b2e7125d5e7d6d9f2c80c84f55edd3d7896b6d836ee4b9e5804dd33513a77aff66a255ba28ba2fef331755e356a22" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.18/windowsdesktop-runtime-7.0.18-win-x86.zip", - "hash": "779b267617265934568a820388586829400250be2fba0f0d52e82a21a84c969ffdbd3697589a9e2c97de61ecfc90d6c975d0e92ff43ef4301a36df3460d2b46f" - } - ] - } - }, - { - "release-date": "2024-03-12", - "release-version": "7.0.17", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-26190", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-26190" - }, - { - "cve-id": "CVE-2024-21392", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21392" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.17/7.0.17.md", - "runtime": { - "version": "7.0.17", - "version-display": "7.0.17", - "vs-version": "17.4.17, 17.6.13, 17.8.8, 17.9.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-arm.tar.gz", - "hash": "aa23cd2023604147ec418b69b8358e39c322ce9ac4388cbb1d2dbc4cfa6ea3b09b35440075c272748d9a6bc56c2fa491a35ade3302976cb1c171071675ab7745" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-arm64.tar.gz", - "hash": "f3a23da65f11bc43a4ea8722a872132a16d76982da1445b79fbfc8e5b2b38f904fdd22c986a0598d5565dbbf104b4e852ac2bebb7d79cefd20b9b5a1d40036f0" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-musl-arm.tar.gz", - "hash": "8f3bd4c79a1b2c9083cb0a454bab2abfd0209833edef9f5bc770a9bf4718370f16caed4759e0a5b6884a287eb9bdcd835fffd8c9ed39fff925e4a3661c217840" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-musl-arm64.tar.gz", - "hash": "e2cafec76472a62f3d48c03bd9e87ca355b73b4dc13bacd858f0175e6eb2da999419e66abcbed35775d37a8bb8ccbf8ddc87075605312d8833ecf77649f286aa" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-musl-x64.tar.gz", - "hash": "5f2038dc6666b850b6a2ef20fbd4c505d061123a656b771ae03d2158db67fd0b106bd8d1f9e49eab4efd8fb36db28cfb937614f785ef942441afdb3829bbbe8f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-linux-x64.tar.gz", - "hash": "bf65378d4e9b1f14559dbe4a0bf5fb7e66fdf9a7bef9d109deccb22fae8a5cac9b5af5df4b67321dbd5f34764d911ba580c62b0456da648a57e94f82be7e4abc" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-osx-arm64.pkg", - "hash": "ca5feae17dc43a95b0333dc45247116456b1ad0580a3d76af74ebbae53af527c6fb45d4e2e477f5b1a89f95ce584712f9003d2b3482cffe3ea64d1a7eaa025f0" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-osx-arm64.tar.gz", - "hash": "62655e34a84ddb54db19fc0b51955171fc07c987777dbfa8d8abc370957829e4c7baeb64f9596f2a2078c04bb1843b4ca0601e371124f0016084622e68930c47" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-osx-x64.pkg", - "hash": "b971bc5833bb79ffab659a3c692c151f5abd00a94c67440341ee7c6df3c6589ca6d9ab75c4b62b037a7c94e7e1d931b03f61a238d51e637a547409e2c042ad28" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-osx-x64.tar.gz", - "hash": "d9a79b44c9e97e170ca5ff036f36ad64b077abfe3e5913c458f7de0ba55f56e6512ba5ed70bb4d9a056d3674d0efc41ca66507e5f977e1e291f815592f96fd1c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-arm64.exe", - "hash": "674ab7b0b49eb6c5d2b31841f693820d9cd059a341ad1a730d5f4775423a51d0408886b1855b7ccbfc66a74f0c51308aef03f30c6fa42213c21d02ea42dd52ac" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-arm64.zip", - "hash": "c753d7e55f3da6038b6fc15090b41cc0cb073adbbff451d5b0662e163afc53624437b651ffc911f19d4f052e5715fa582de06c5c7139d3e1f0db92fcb8ece921" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-x64.exe", - "hash": "96322002bc60d15e0d5ff969586786e1b8f94a8d0db78b1591f196b8aaba1b745a23e99eed5b954e1214feab2d8991277215c9bd6e988f8f1bc201191d48237c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-x64.zip", - "hash": "3f331874ef2e4eeae0ee56bc15066eed20afd0ce9be536c86b8f09064eb7b87d5bb4227545ddc7ea9a3b0427bb02873ded1ca8be2a25c358348526282da64942" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-x86.exe", - "hash": "116d6ac8646728ebce9cda9b63cb4f23cbe19847d31a8efaac029f0ebb2fc9bf414d48b76637198db2af2ba9bfe64b720f2e21c6b4728d7d588b560188d59939" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.17/dotnet-runtime-7.0.17-win-x86.zip", - "hash": "cc2f04d10cb2467afc319fa55f9cb473824b0d78ef8050cd6621f4edd2cc46bf629eb074a560523e52316aae95840087f67ce8e37f4c61cddcdcff5b474fed99" - } - ] - }, - "sdk": { - "version": "7.0.407", - "version-display": "7.0.407", - "runtime-version": "7.0.17", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-arm.tar.gz", - "hash": "0b0fdeea39764d10f9df664e0a0bc8fe98dbd996239661acdbf28bf824edc6d2a0fbb46bb2870ba6454a432847b64d4aae1edf6e279f1f2e0a26ab437ed4f648" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-arm64.tar.gz", - "hash": "94c5832ee830035a1329f28c5bf12651537c61b013d9f1afae2ef495f62b93f615c0940754a815f03612125683c242e98e8a9d28912b2eff26f44d998ed6e680" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-arm.tar.gz", - "hash": "2c6245c9a4e2148c1c10fb31d2bff7dcfc7901966c620e690077a52eeefef15d6af53dcc998e28e34375f8258aa9397efbea1572b5c8be11723c9eaa11323e1b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-arm64.tar.gz", - "hash": "7a9a70159af4781fc3bbe42cdab17fc0f1895a4fd359d4785f72cc2cdb303f4710c5de67326a7b1fe644ee50171d155a814c3eb7933fe07c45a73ee19c2b631b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-x64.tar.gz", - "hash": "9ba7e0c0399093b6bfce7a5ce82bb31055f4197d6ac0ac368337ef4e6f1bc116af2619ea9d7980a31ac7fed4ce55262c7426340483eb6d695f7a67a864880bd0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-x64.tar.gz", - "hash": "82e659aee7d3ab6595bfc141f24eda13551f5c5bd9048aad53ebe3963b8e25836ca07eb3d1d39d6adae145db399aab44ed57db27d34119e836202eb3af93c9e3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-arm64.pkg", - "hash": "bbd9eeb1f0a3e398b0b02df8718cd7fde8053f07f56182f23c7866f247afa63bf42f69e3141d2820778dbdc8db0fca0ba2fc9d25dfaa65661ceb97d600590b87" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-arm64.tar.gz", - "hash": "84edf6d50264efff29f76acf714514140ed23a33a7e93eaf2c3dd7b81c9b6ae6a0c5d511d7d481ef1cf8a58202be68cfff90b7410f2f0d255c9811503370a79f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-x64.pkg", - "hash": "395a21076acb4b513fa85da489b47c2088ba7a87bdb24f6f75ce108f188a87eea75f0cca8752ed5b646d78350bf6da3effc48bbec929f13880d8ac02ba7b997f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-x64.tar.gz", - "hash": "6320463f19cd4448a361181b83f41f19f1e01dfce1d426be6f22cb42976ddbf83ba48c8dcf9440187dd4a4acfc65b7741d0757aad42263ca6a2df03d4a0db061" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-arm64.exe", - "hash": "6e97475ee4cfc9b7f55d7b7098f35a604f33c4c37a77a806fa364eb9e06810244547c4808dad4f10d8bdbf1edcab7a09974295a54cab45185e0e44025407166d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-arm64.zip", - "hash": "52f19589f928af3115f45f1f925dbd473fbc729ac1711da87cd9fa31d5c567cbdb5c02455acefa4121bd6c0ddf17ffec616f02eba156a461ef17f7881f600c80" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x64.exe", - "hash": "49d32f746fd4cd10e45838287f1fee794a21ef686af59b25d49ef3088c818c5bf709e56eb48609260e3312cabe8344f5e2b36fb52e99fe0368b4caf936804728" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x64.zip", - "hash": "81a101b175a0374c43fd3b58efeca40603f0963bc0016751e559ab864c9006ddd94fa484b68566fc75086a69ecb8a55bf8a83c6772d0952cce83f9a65824c335" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x86.exe", - "hash": "4ff2da9169504858efbc047f795c68efae671138e111f99a4377137e2176bb24095a3269a3617b52fae3980bba627bd34333bd569892d21f0f6d14b741c7ecbb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x86.zip", - "hash": "05a6c394e52efecfe9ff422e3ee4dcb49d6cb71040277bec0a505ead74e24a16b0f94b5db0dd330da5dcc8b44c61095a4ab26ec02773d56d0d8e763d9ef5aca4" - } - ] - }, - "sdks": [ - { - "version": "7.0.407", - "version-display": "7.0.407", - "runtime-version": "7.0.17", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-arm.tar.gz", - "hash": "0b0fdeea39764d10f9df664e0a0bc8fe98dbd996239661acdbf28bf824edc6d2a0fbb46bb2870ba6454a432847b64d4aae1edf6e279f1f2e0a26ab437ed4f648" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-arm64.tar.gz", - "hash": "94c5832ee830035a1329f28c5bf12651537c61b013d9f1afae2ef495f62b93f615c0940754a815f03612125683c242e98e8a9d28912b2eff26f44d998ed6e680" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-arm.tar.gz", - "hash": "2c6245c9a4e2148c1c10fb31d2bff7dcfc7901966c620e690077a52eeefef15d6af53dcc998e28e34375f8258aa9397efbea1572b5c8be11723c9eaa11323e1b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-arm64.tar.gz", - "hash": "7a9a70159af4781fc3bbe42cdab17fc0f1895a4fd359d4785f72cc2cdb303f4710c5de67326a7b1fe644ee50171d155a814c3eb7933fe07c45a73ee19c2b631b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-musl-x64.tar.gz", - "hash": "9ba7e0c0399093b6bfce7a5ce82bb31055f4197d6ac0ac368337ef4e6f1bc116af2619ea9d7980a31ac7fed4ce55262c7426340483eb6d695f7a67a864880bd0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-linux-x64.tar.gz", - "hash": "82e659aee7d3ab6595bfc141f24eda13551f5c5bd9048aad53ebe3963b8e25836ca07eb3d1d39d6adae145db399aab44ed57db27d34119e836202eb3af93c9e3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-arm64.pkg", - "hash": "bbd9eeb1f0a3e398b0b02df8718cd7fde8053f07f56182f23c7866f247afa63bf42f69e3141d2820778dbdc8db0fca0ba2fc9d25dfaa65661ceb97d600590b87" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-arm64.tar.gz", - "hash": "84edf6d50264efff29f76acf714514140ed23a33a7e93eaf2c3dd7b81c9b6ae6a0c5d511d7d481ef1cf8a58202be68cfff90b7410f2f0d255c9811503370a79f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-x64.pkg", - "hash": "395a21076acb4b513fa85da489b47c2088ba7a87bdb24f6f75ce108f188a87eea75f0cca8752ed5b646d78350bf6da3effc48bbec929f13880d8ac02ba7b997f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-osx-x64.tar.gz", - "hash": "6320463f19cd4448a361181b83f41f19f1e01dfce1d426be6f22cb42976ddbf83ba48c8dcf9440187dd4a4acfc65b7741d0757aad42263ca6a2df03d4a0db061" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-arm64.exe", - "hash": "6e97475ee4cfc9b7f55d7b7098f35a604f33c4c37a77a806fa364eb9e06810244547c4808dad4f10d8bdbf1edcab7a09974295a54cab45185e0e44025407166d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-arm64.zip", - "hash": "52f19589f928af3115f45f1f925dbd473fbc729ac1711da87cd9fa31d5c567cbdb5c02455acefa4121bd6c0ddf17ffec616f02eba156a461ef17f7881f600c80" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x64.exe", - "hash": "49d32f746fd4cd10e45838287f1fee794a21ef686af59b25d49ef3088c818c5bf709e56eb48609260e3312cabe8344f5e2b36fb52e99fe0368b4caf936804728" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x64.zip", - "hash": "81a101b175a0374c43fd3b58efeca40603f0963bc0016751e559ab864c9006ddd94fa484b68566fc75086a69ecb8a55bf8a83c6772d0952cce83f9a65824c335" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x86.exe", - "hash": "4ff2da9169504858efbc047f795c68efae671138e111f99a4377137e2176bb24095a3269a3617b52fae3980bba627bd34333bd569892d21f0f6d14b741c7ecbb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.407/dotnet-sdk-7.0.407-win-x86.zip", - "hash": "05a6c394e52efecfe9ff422e3ee4dcb49d6cb71040277bec0a505ead74e24a16b0f94b5db0dd330da5dcc8b44c61095a4ab26ec02773d56d0d8e763d9ef5aca4" - } - ] - }, - { - "version": "7.0.314", - "version-display": "7.0.314", - "runtime-version": "7.0.17", - "vs-version": "17.6.13", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-arm.tar.gz", - "hash": "448367cfd1dec29cb6e224722c3afa23c062e8cc2a62155a3f4391a9e613591ccb9facd59206e8402d151a4f059442fca6a7c5d6a4eaa3eebc4230a9fa41f817" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-arm64.tar.gz", - "hash": "497e833385d62b9f835648bf9a9b1fa214274f9c98c306485ae5634622d3908c2990e0bd09d2950b4be491b5984748cc2f8a6e71814a44ec7f9bb608363834e0" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-musl-arm.tar.gz", - "hash": "bd3f716deb8849e8ea48359dc6d1075f3856394e55d2f9dbe84ca7f6e087dfd0367af971d1a74b762f37baf726c48cc4d0f46e56256c784688d27e638ed56171" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-musl-arm64.tar.gz", - "hash": "b9d8cc4cf91ea2bcd9d13effb0aba95372e5ee0135d8d3b2fbbb2b485e6923404e4e97cf6a71a0413d482485444dfc95e02370e32dfb75b3e359247a19f356f9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-musl-x64.tar.gz", - "hash": "954b59208d1ed040425a3b58a43399955ed96032284bb35d44285e8da37fb22e363b82d46c5b278fcc43c604f68a5537b351579ea0ce69ae056ffff073f58cfa" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-linux-x64.tar.gz", - "hash": "0f5ae49aaa7fbc63bf7a48837af6299120088e88a272c24176aa70a61ae9654ce15db0a9a7bc36219ecf8eef214ee711354e87872134ec71c32b4e2b90d88da5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-osx-arm64.pkg", - "hash": "1a2b34a5d44079e3918aa07b2c14b8249ebd4829e780e696f6c4a4ccf9ee7bbbd956d43d5fc4c3cfc4aa9c9eca6163f32f533c615981c53e35d0a9a667e56e80" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-osx-arm64.tar.gz", - "hash": "3960968eb545bf8329ff5c0205dfe2a07ddf6985a62bb34916f09faee56a06f60aa3ebbf8bb0edd7309a1bc29ed19ecf92f63cc60dad44dff47abf6a4c678f25" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-osx-x64.pkg", - "hash": "27ea207a008b4696425d3b1cbe062007c932e6a2d232a45ca24acf58a42f5791834742ce8798d3d7f9dd9b7aa38d787e5c752a3e41ef838ae3150c542280fe80" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-osx-x64.tar.gz", - "hash": "8c3ede3c1b0e8aa379ff054a830fb7f5c4364c5639352671aa7c68fe9b486f1f29cef83c3e99d24859a4e4757bddac4a94e4d98507e4f63e3075ebd3683854ff" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-arm64.exe", - "hash": "4c1dd013ae736735b970ed8c5e6353fe909a2e9e69f8b209c629fb7dedf2d1cb4c84fb0f9bc98ab0eaddd26331668eb5235488cb97ae48ee3699da0cb71ece42" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-arm64.zip", - "hash": "dbe546cd1b01cc0cff77a1451a03cad231bb6223151236faf7b7cdd162214ae0ad8e759eeb993c7db1864aed8bd28e85d5c88a636a0365be6f3bc308da204fb1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-x64.exe", - "hash": "070cea47e1796f9382eae24875f98433f0da71252c439fff77522794b48d341fcdad7ad277aea57b2b99491fca5083761960fed70eb7c3912d7a95a8cdf43a0e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-x64.zip", - "hash": "f5ebd36a657f879088580ffc6ba4e82b4aa1dbb0651620cb7efdbab4f86cc065dbb37e0410461d559abefc9f6621bd756e24290524c8b0dc77cdee04be96aeb2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-x86.exe", - "hash": "5d74badcb4b1b57dc22681ee555f6648a5f9ff0421a911716f354a93a546769c9b466916576517460163beee7abc04a6128d6f87f5a752e3a7ea02396d9c573f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.314/dotnet-sdk-7.0.314-win-x86.zip", - "hash": "2d958bb1413ca9097c41498f33e3fd832b99dafa8ab0bc7c8a1f56c3f1a76e4c76b737aba62594aeda1a2634a923a740f6f891f4e3f79773599d2360a362f6bc" - } - ] - }, - { - "version": "7.0.117", - "version-display": "7.0.117", - "runtime-version": "7.0.17", - "vs-version": "17.4.17", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-arm.tar.gz", - "hash": "9986b7b87c4c84ba32b0618471dbe351e9780a4df3ec0478066a901fe937ba2d76813b87d59169371c8f45a8581f7a32addcf7a081f58ba01b753c853355bf5b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-arm64.tar.gz", - "hash": "2d9e071727d0da836cfef4f46bcb546567c68cf37196d58335b6245fa4152bbce835bae60eda3afc87d478becf65f2faeb88afb815e66cf3399b0f654e278bb4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-musl-arm.tar.gz", - "hash": "e12fc9e1085cf5288b3ebd53ab7f3f9bea337578e769c28c888b89286094327c4229ff435257ee33762f3eba03e5c84bf4a93a35cc3d875f7c4bee3d531f92e4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-musl-arm64.tar.gz", - "hash": "a47a8e7dedf19aee4cbca3c6462a28f58bb88fcd42551933e6695b2691bbcf59864d6324fad6b3b328d342bbe7464453e2f07b8ef49af1e02c9d55bf6fb514d2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-musl-x64.tar.gz", - "hash": "3e4fb1d855f73bf0234187dd53aec1a3468afa9e497504485721e977f8a70cd4ca38eb45d0d0b6f9fd254c9c9eb5f97c88f696db96e3079c47b56ec15b2d71d5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-linux-x64.tar.gz", - "hash": "9448f187d8912bdf036b996ea8890292697206e14d171c231f4bf3e5b6f1b317eb9468fcf76356fd2d9532693e36c1a3909f91cafbeb9f82911c836131a72e39" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-osx-arm64.pkg", - "hash": "9644b92df8e98ea37649dd7239cd8b7080371f9d74f88535cd075d18671b109c80b29de84c3b3308e45bca12711b551e4c58ab11508d8e8fda128beee6ed0fd0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-osx-arm64.tar.gz", - "hash": "fa4ab2acde6973f8b741f56f3706e36556522691cc903877d4519274fdaa3900659afa32c81b0771a755e14ccc4a53004cbeb036af8586a69e0c2690bf258085" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-osx-x64.pkg", - "hash": "e71f5366a4bbc97b5598399bfc08da6d5113fec1a65f96093bbd73dbd87c3e288fb4b49eba8c5f6d9f236d792cf9ed1a87978a7026068a7aa8c62841cca73ade" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-osx-x64.tar.gz", - "hash": "b394d3cd901db197346bbea28969148e2ae29c1bc506ca2f1b0cb50c30605ec8191261ec02387659d8da8a474736b0afe56e423680f31f14feed8606e4df4d6c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-arm64.exe", - "hash": "17bb9a82e54e0b38946665c1ea1a2b94696bdc81dcc6bc4c968f6782c6a3f2f8e305d6add60c3727a2d291905234e85a6fbc4f668fcc555cc677352f24ad9cee" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-arm64.zip", - "hash": "88301765c64390dfd9bdd6bb79e7e91c7029c8d98f29f029601319e91e6791918b7669ca925e16c20b4f9d6877e9770f870a2335028f1548f9bbb133474995eb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-x64.exe", - "hash": "d3eafa09f3f171ee9a07bff80ba1a4871951fe853401308d5b3a03b54aeabd882e45b214ff004d8a100325e9cdbdfbeb467f9bb84d558371ecf57480f712be33" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-x64.zip", - "hash": "542d4cd2f2de23921f50da89f5b05db4715f527f23dcdec39fed122dced82874fc00ed2c32a22a73a29f1b0a3caf6bb73cce9ca633abde1e47bb1cf31beb8381" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-x86.exe", - "hash": "8574205100a89d7cf2df880d5d866187c634f5fe54f3c313cc365a1dddcbbddbc82aa7e0cc065052b52470d2065507b1b338c09571fe9aca5c75d8173110775c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.117/dotnet-sdk-7.0.117-win-x86.zip", - "hash": "cdd8133e55a4472c0449db9e51f987608e6d82c39f34cfcf2df8c22144b5580483b170963c708393359b01adfa70372577ee16144a7129df9f2a0a571c39d29a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.17", - "version-display": "7.0.17", - "version-aspnetcoremodule": [ - "17.0.24047.17" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-arm.tar.gz", - "hash": "0eda8538107e592abf47b391a37f13c58d6ceaf7f293ae594094aa954400fe7b6ab4eb6d723eb447f22e2b0f05d1c470907842fb2bbf6b63f66502b6b3f1cfa7" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-arm64.tar.gz", - "hash": "a5b6c6a262334506675447d157d7b4e5683c77715b74f97c9b219166bf9226a20d5194ff1c5eb8e17b625a17f8fd114da4b44ad19888760956ff735facd1d41e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-musl-arm.tar.gz", - "hash": "9902567cb9914bdb8d3da41dc4f1d3a8a0986848e99a25b2320b513de6666b979f8495b880277e9ebf0ca1adc8257df020fad62e653d07f28972cf5c729a6a83" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-musl-arm64.tar.gz", - "hash": "07097cdd1cead0d87825895e0371477d5b9683611df10f66cda6816b82d0d293aba73966951d30aa364728035c86ee6950a559eaf7cc2661205d5140d9fdb6d0" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-musl-x64.tar.gz", - "hash": "ccf14827a8ddadc846edc328f2a8015d1e7ff146adf2636207af760c309c2c0f61eae1222740b6fdf387c68d498d885f77a1db92f9bd9fcdb81326a315e684ff" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-linux-x64.tar.gz", - "hash": "a0cc7f76f24d123fbe787ff3b554736000c3f6b4f7b919819fb3039f6df4a15d28713a0a169c9493012e14afc3a0299f3d800d93d6749a70b567833ef3f3aeed" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-osx-arm64.tar.gz", - "hash": "384f571ed3e8f623760c37eb4d39dfd50e977063683e2c22e9366dabcfbf509af44a12d14da758d119778261c6d95580fa9eb50d3bdc5a216f69ff33364b4f37" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-osx-x64.tar.gz", - "hash": "040172bdc6a5ad63dee2925261650f0f4d00c7bb0200b64677e18fdd3877b8b3ce52fb68ab42842bcc4de36c5eeb28622ea483d48c245b9407905ef776971a9c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-win-arm64.zip", - "hash": "ef34c17551496dfcc2c16bf05a6c41e715231e0e8ab425ba2f01ff7f3e38f0015e0a9bc68c8f242255f8cc6a3e9f55dce247b12da6aa840f6841843d50ebcb79" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-win-x64.exe", - "hash": "930c8d6a267dfe415cf1a5f81d436fce01010494b6ff10b642ba6bc5b8a150727c5af7ea6a76473986ceed85fa80b37e35a9a77ffa7285a37404b185901d0183" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-win-x64.zip", - "hash": "1815d14cd1a5c50a34a903344039c010b2101c694b0b2cb9000c5485da1890284b546203229306d3d05229e86079a7b4c7548dfb25bd543161ad964f6234f92a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-win-x86.exe", - "hash": "c7c17315260e0189599763450014ba36b919961b3e789107382e72d4cf8c7597a0a17a5b1505e2f37419771780dd836df344f215887c6d5768aee2c7e45d4865" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/aspnetcore-runtime-7.0.17-win-x86.zip", - "hash": "68159e72de5eaa3cd3d70b493ae1e37bd7ede2a02b50d52d9d0144b1492eb43355d01a6064db6364bf7f0eda5a9bbfff1c5169b6f103f0c5a73b9910f2e34319" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.17/dotnet-hosting-7.0.17-win.exe", - "hash": "c0911f29ddc1d8ed7ef6e1dd0f2cbaef2e1e5564c0e9ee5b1a107fb511e6dfea38743da6b8035d033569b6c5d0dcb66f50e84e395c57334044aa5cb5a8c36f77", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.17", - "version-display": "7.0.17", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-arm64.exe", - "hash": "2cda092f42a1346aabe40838e20eb4ab1864aae168573ad3c9a016efbc99afc41a681e3b7824d44fbad08985f7c12c10ba7ef462e93a28248d483c7b159d6b46" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-arm64.zip", - "hash": "23a4bd9d8b7bac406cdc4266dd180d0e58a005cdc7b122d414a7ef7d74b44533ac850f533440e68f53605f7293216fb1c952c4ef93a94203fded275c94468c00" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-x64.exe", - "hash": "c8cc217acdc36c951fe6abea638fc1f8967e3f4d1eb37e2a44eeb2056f15af7186b875942f34ea8b2785f0877b60ae275c02297988e069a6b5e89882debb1bbe" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-x64.zip", - "hash": "dd83911ce3ebb5a69e26b2d3a8b48caece1e53df73bf243bb95545f729cb95bf58a5571ad9513552a18952f7928231cee10ce75a26d0c9686e9c3a8c9e81c556" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-x86.exe", - "hash": "b6133567a387d778b806192ad0cfe9210595214a381d807c860b67dfa14b2593de039956bbbbbdfa53bf3d01aa60bcb2fa828971f45f59ebb1ca1eefbfddd638" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.17/windowsdesktop-runtime-7.0.17-win-x86.zip", - "hash": "c84d98b016018be7c63d2504be0114b9724a64f13fd5e349f15d81e1d647a57b77fe7d74f0d8df3c7bf5d26e65f69d5d6ef7f0edf2ed1c29d8049065081f6c24" - } - ] - } - }, - { - "release-date": "2024-02-13", - "release-version": "7.0.16", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21386", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21386" - }, - { - "cve-id": "CVE-2024-21404", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21404" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.16/7.0.16.md", - "runtime": { - "version": "7.0.16", - "version-display": "7.0.16", - "vs-version": "17.4.16, 17.6.12, 17.8.7, 17.9.0", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-arm.tar.gz", - "hash": "8bb5d16b5f4d80fcc55fc2f6620d0998e15c964d1a2f537ea9ae2d48316c1f9b915d49e885895916f47607a56e4ada817edc01c25991c28329744e75ed1f7772" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-arm64.tar.gz", - "hash": "4a38d656e22129605a5f156b61098f6eb598a88e1d6248577d064481e7f4632fecf9bb60580c266347b4ee60133a617a5528aa6fc789faee83e5cca5fba884c2" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-musl-arm.tar.gz", - "hash": "f453bc45a8cb67a8b7e536e8572d382840a0ebd2879ea84570379f88a811f3cb88f08f1404ff84b3bc683d3f0351c38686b8276dabaa0e5132bd4821949fda00" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-musl-arm64.tar.gz", - "hash": "594ec43ca1d38899eb04d5e29758ebeab1d478de7888e10639b30ad57d8921f3f78d7be1ad75d25143660176b63c64a89ab5b0770e03dd3db1aba89e0e6ac20b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-musl-x64.tar.gz", - "hash": "dc9e55fd4125446d4243390909216295d5c120edb2c24766b49f66ee5a96cfae9fa7a36ce72eee745d269a8c2d31f198442b6b891b6c72a75c1950c9c6e587be" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-linux-x64.tar.gz", - "hash": "e1eae1aae9088e8131317e217f4cd3059628cce847103775c61c2d641d19486168bede5fe3123668f81f35bdc5a41100cbb49126d55445e7f5c5c617e2ca3b49" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-osx-arm64.pkg", - "hash": "bc7e55303faff5141767d43a8365c35c83a69465ae435cb1aa7b5d742529f294909396b8eb1e0844f01cb52883d8aa08f85930d83790cc1d06b10c2190d2b319" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-osx-arm64.tar.gz", - "hash": "69e42aca2fcaf4f5f8787aed3e1db00c6c8a3b5ad83ce8425842222db6453d13cc623778d80fd39219ba6e553c8fe0326b3bfa3802de5ef19247cf1f07ee4a56" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-osx-x64.pkg", - "hash": "9d18be2294203f582c5e856355f53c7c53686921a375d7cdb9f9484cfc7172009cc2653dca5e737cb38a0db5837f9c43f0778b50afe87d0270f9311d2b8e8a6a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-osx-x64.tar.gz", - "hash": "0261d0f93dcb56a0dd7e506be16405c533964254924bbc8412465c6d12c45f07ca7cb61b1025f6d222fb881cdd7f19224a58699e19e21ebcd7f6df92e832a829" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-arm64.exe", - "hash": "2ac1f2b07648c5d757320b2d6dbef657dd5e928dce3326f5e863fdcc095980532ce7d7876584c7c2473aa3de57dc79953775858cae175a472ad8c45d936687eb" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-arm64.zip", - "hash": "4bc5193a01b0d1dfada27490ff14713ae37ce56ec3f1f3b2ec284a3f497da4c82631e290346b73be74ba666205789c77aa0ad6069bcf33a1707880ded46dccba" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-x64.exe", - "hash": "66c0e10f7a5c762c7ef101c34e5aeecaecabd4813308422b5f24a8996520f76ab7ffc790117e12e75587ce89930307f132bd556b1a8c1f8c67780659c62a102f" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-x64.zip", - "hash": "447477feeafdfa89127ae89de3b2cd18fd2731f14a1c5cb6be6c36ca78d9175086cf1187f602bc77f0910788705fd016ceeee1d56e38bf26b8b56eb2cb9369d5" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-x86.exe", - "hash": "3aeaae2b82fafbb7a9276210ff0ef2f4c757acc877c04ca6c6195d9c6debe41cf95c68f696f6079dfd446dff38069baf93b1d5cfb77cdda5cb82f2c6af8e10e4" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.16/dotnet-runtime-7.0.16-win-x86.zip", - "hash": "e863e8bdad6b3bca633a5652223c52f3ca80443e9b106bea9c37eba1b3d382e585cba71180093807a993ecd0b8f2633971c1134d3f68dcbf059175147c4a10c5" - } - ] - }, - "sdk": { - "version": "7.0.406", - "version-display": "7.0.406", - "runtime-version": "7.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-arm.tar.gz", - "hash": "3b7aa846f26701c1c8f3c4798b9b0563b31ac7ca2445cafef8c4b6ffd8b320452cf73c4856742312fc242dcd1bf552e6e6d57773881d23dee53f4ad1bb97bdd4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-arm64.tar.gz", - "hash": "7543ab3197653864aa72c2f711e0661a881d7c74ef861fb1e952b15b7f8efd909866e99ea0e43430768db223b79d4e0285f3114087b6e009b5d382b4adad13fc" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-arm.tar.gz", - "hash": "5655a76d14302ea600a31cedbb239e1736fa4b5e0b8d13388c6c340cf06fddbb13fecdec17872eb2cd7db41b0368bde1a59702667be81f933485d5f4b33beed6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-arm64.tar.gz", - "hash": "129dd90af4b9a07f183d8fe8f68f81eaa7980dbdcc110bbac45d8b65a19bc59d13a525aeba250542d2cb345fd6d7d34a62302d56a8c527b727620f76fecaf531" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-x64.tar.gz", - "hash": "16310636ec14771d48dbfda06886528c2e75dbc9af3c0ccfec1a1b4a0ca9990446a3322550da3f2a6df12d95e091c37876adc011c3b8720d1c8f57d5727568c3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-x64.tar.gz", - "hash": "5455ac21b1d8a37da326b99128a7d10983673259f4ccf89b7cdc6f67bb5f6d4f123caadb9532d523b2d9025315e3de684a63a09712e2dc6de1702f5ad1e9c410" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-arm64.pkg", - "hash": "b6bfc009b702adfabfb780847212fffad16da11f44e9bb69d7bea7000307888108d66a8d4e33788e02eb3ca6dd0c4e5465ed4e4c2923ec3dae3ee76324155e6f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-arm64.tar.gz", - "hash": "a186477633215784f7dd50f4f82f4a08323ee0929dc5ac99c9c76a23c74b31b4de7ea81eb4f0b6223f02ae40f5a74fe6533c7989a4a0de6669882ae0065c71e7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-x64.pkg", - "hash": "cdae89c8c7b548ff4f01d2c9e52a621ce462bc38c6fab2e132a1ab3547f11ae578080d43099009b6abe4e4e3c30bf46ca30ca450058dca1d12783114e8676121" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-x64.tar.gz", - "hash": "c21e57b566364607ed17bd8032a48fd7f6319646a07265333147fd0de0f7cf9c862958537d08c0c5837d22fae144b4295363c689daffb538ee956587d2f65461" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-arm64.exe", - "hash": "e697e18ac25eac9866c005c0cabeb70c033ccbe6715ee9c1c2aa5346a452a4b287480e5d62543ca23aa2246dd66b74eb2fe9afa7ae196d3e69aaf33429181189" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-arm64.zip", - "hash": "8d4f6c94479024015c28d2cd67078a0a546c4c6c38977db3943967f11c50e28faed236aeb54e754a3bc94dd0b4de290d5e0780dbb71ec0ae0c32d72603ac7608" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x64.exe", - "hash": "dd56ffc4c056cc1350e6ec41b11b1c56e93633ab6259adebe16aa6f55e897a3edb18298c516e09525e81441a5ae77bbf793b91572d593a0b30083418bb78498a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x64.zip", - "hash": "73c6b5b2a13c2cff634b6f201a2ae8c8f64ec97ecc7310a296284a85338da1fd165dca7af00884c7beb086091b68fd05ca6f96c01b26407e27a8613fd48b0274" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x86.exe", - "hash": "89e484ab346a42e051a8e1fb2681975a77b48eb1a92ed7169edad8eb455b125177b0044d1e17dcf93f2c09bdb41c8486a92ac280ddcd9b6047d3e0c989350313" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x86.zip", - "hash": "ff869d68f127b8294d14f4f83b1ef26021d6f5ca1d6269ccbdee2d4ee40f4d3d830745d089b69f9af20947b3cdfc7dfbee0b600bf9cace0f6175a557d9fd39d3" - } - ] - }, - "sdks": [ - { - "version": "7.0.406", - "version-display": "7.0.406", - "runtime-version": "7.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-arm.tar.gz", - "hash": "3b7aa846f26701c1c8f3c4798b9b0563b31ac7ca2445cafef8c4b6ffd8b320452cf73c4856742312fc242dcd1bf552e6e6d57773881d23dee53f4ad1bb97bdd4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-arm64.tar.gz", - "hash": "7543ab3197653864aa72c2f711e0661a881d7c74ef861fb1e952b15b7f8efd909866e99ea0e43430768db223b79d4e0285f3114087b6e009b5d382b4adad13fc" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-arm.tar.gz", - "hash": "5655a76d14302ea600a31cedbb239e1736fa4b5e0b8d13388c6c340cf06fddbb13fecdec17872eb2cd7db41b0368bde1a59702667be81f933485d5f4b33beed6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-arm64.tar.gz", - "hash": "129dd90af4b9a07f183d8fe8f68f81eaa7980dbdcc110bbac45d8b65a19bc59d13a525aeba250542d2cb345fd6d7d34a62302d56a8c527b727620f76fecaf531" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-musl-x64.tar.gz", - "hash": "16310636ec14771d48dbfda06886528c2e75dbc9af3c0ccfec1a1b4a0ca9990446a3322550da3f2a6df12d95e091c37876adc011c3b8720d1c8f57d5727568c3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-linux-x64.tar.gz", - "hash": "5455ac21b1d8a37da326b99128a7d10983673259f4ccf89b7cdc6f67bb5f6d4f123caadb9532d523b2d9025315e3de684a63a09712e2dc6de1702f5ad1e9c410" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-arm64.pkg", - "hash": "b6bfc009b702adfabfb780847212fffad16da11f44e9bb69d7bea7000307888108d66a8d4e33788e02eb3ca6dd0c4e5465ed4e4c2923ec3dae3ee76324155e6f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-arm64.tar.gz", - "hash": "a186477633215784f7dd50f4f82f4a08323ee0929dc5ac99c9c76a23c74b31b4de7ea81eb4f0b6223f02ae40f5a74fe6533c7989a4a0de6669882ae0065c71e7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-x64.pkg", - "hash": "cdae89c8c7b548ff4f01d2c9e52a621ce462bc38c6fab2e132a1ab3547f11ae578080d43099009b6abe4e4e3c30bf46ca30ca450058dca1d12783114e8676121" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-osx-x64.tar.gz", - "hash": "c21e57b566364607ed17bd8032a48fd7f6319646a07265333147fd0de0f7cf9c862958537d08c0c5837d22fae144b4295363c689daffb538ee956587d2f65461" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-arm64.exe", - "hash": "e697e18ac25eac9866c005c0cabeb70c033ccbe6715ee9c1c2aa5346a452a4b287480e5d62543ca23aa2246dd66b74eb2fe9afa7ae196d3e69aaf33429181189" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-arm64.zip", - "hash": "8d4f6c94479024015c28d2cd67078a0a546c4c6c38977db3943967f11c50e28faed236aeb54e754a3bc94dd0b4de290d5e0780dbb71ec0ae0c32d72603ac7608" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x64.exe", - "hash": "dd56ffc4c056cc1350e6ec41b11b1c56e93633ab6259adebe16aa6f55e897a3edb18298c516e09525e81441a5ae77bbf793b91572d593a0b30083418bb78498a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x64.zip", - "hash": "73c6b5b2a13c2cff634b6f201a2ae8c8f64ec97ecc7310a296284a85338da1fd165dca7af00884c7beb086091b68fd05ca6f96c01b26407e27a8613fd48b0274" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x86.exe", - "hash": "89e484ab346a42e051a8e1fb2681975a77b48eb1a92ed7169edad8eb455b125177b0044d1e17dcf93f2c09bdb41c8486a92ac280ddcd9b6047d3e0c989350313" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.406/dotnet-sdk-7.0.406-win-x86.zip", - "hash": "ff869d68f127b8294d14f4f83b1ef26021d6f5ca1d6269ccbdee2d4ee40f4d3d830745d089b69f9af20947b3cdfc7dfbee0b600bf9cace0f6175a557d9fd39d3" - } - ] - }, - { - "version": "7.0.313", - "version-display": "7.0.313", - "runtime-version": "7.0.16", - "vs-version": "17.6.12", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-arm.tar.gz", - "hash": "2d0ce9663d9e307e957d8a1fff9dd969071dcb6be321b472c1ee20c34c4ff15fd84c634d1360a6ac968bde99890eda5ac52e54853c75add1aa5323adec9774fb" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-arm64.tar.gz", - "hash": "402a894221d79aa61171fb293ec98a61ad7ba9877cea2c032b4a939ed569d7e7ec11f10bf88e46a4511a34f6cda4a9ba721682b275e1fa5d3937d58b358ae200" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-musl-arm.tar.gz", - "hash": "da4c66bad60aaa1851042408aa13cde545ef2b4cb9d970f93c14488efe403527cd6cfba9c6f14ba00dc4dc3f850c4f0b5f45a869d33592b53e4fcd271acd202e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-musl-arm64.tar.gz", - "hash": "0c9fd3f915ecd58f5e0b17df9b94a7c8926b1309ce6225f9c89202c88614f1926ea70a1dfa7e9319867f4082149dcff3cf65887800c503e7b0d3feca426fb320" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-musl-x64.tar.gz", - "hash": "bf4b69a43dcbe9a72e9605b032ca653a3df7f610d1d8bddb75aae45010d8dda42a15fe6f9552274a9fba180f6378381186196d550093e8d42feee6761a438125" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-linux-x64.tar.gz", - "hash": "665378e586817a3181dc5644ac794eadcc51ee733813dbef8e3b180aa6626925d8d74d03290c010a186abb668ada8255e42c43a302eaa580050a76b77bda2192" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-osx-arm64.pkg", - "hash": "7735faae15661a799c3fcdca7814f2ca6d288a42dc8786c40f4d4a1e0287f82ded4bb81d92154e8937ced0020dba8fb14f278454cf93088dbbca7f9a9c63b433" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-osx-arm64.tar.gz", - "hash": "37bc118542049921704b862d110996df15d97db8d57fc9d1d624b4e290a4d8063fae44a8dbf227b4acbbe646c9da625f353c80cafee2fe2cf6eeaf2d4c4b2960" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-osx-x64.pkg", - "hash": "a6bc4901b7f0e5f1fa48d9ed30836384ce0d5e19731b13d89d94287c7df4d5e3d26434d20b2892724c93b8389c0da470fd31f0e112dbd7edd4de63b650ccc154" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-osx-x64.tar.gz", - "hash": "7370264f8ff7aa0be0cc5f3b31126ae08983f5931505007c15238f1256069a4c6b1b0cabad83f5ee6e29dd63ccb5d12e2cd147ef8ef5d1cc8bb16f904ceb6afe" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-arm64.exe", - "hash": "32e7f1a77f1ad410668b082abb8c8cd4344dda2f9fd1c547b4fe145a6083d477f483096eb2dd1f09ffd25710769f944a429bc95cc258a97a10098aaca1ce5869" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-arm64.zip", - "hash": "43be939b141948f75fb48a38d312258e202fc9270f2daf31713ead38749f5484f3ab557d6cea58cfef1211e89695cde891d3780dbd546088a90dfe1936017151" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-x64.exe", - "hash": "b210c400b72b2750150dd58db0136c24f92984b67f2470b6b20f5553ee9aeb9fb1678a77d677165b63b7c2dc43644d788303c1d7b5f916e387f058d20390cbda" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-x64.zip", - "hash": "85fa4323c1c56672a3ef95a90121d9c89bfd3763ed7f493c2811829ac2faf09584c2cc5da85db0e7f500eaa7c758385dab82e4885c56b4439623ce84b9075511" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-x86.exe", - "hash": "e707ced4d7307761fc97ad59b7feed3d8a3e0137213ea1efbe38433db9db26965c2fd268419915b247357331cbaca409f1fa61bd9a4b267b3aef6a94c9af8771" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.313/dotnet-sdk-7.0.313-win-x86.zip", - "hash": "8f29fc200579cc7f49effb1d0abf0da4b837bdf1977c1e646f9799a68fbffb7c911f66cfb9a9701b7b130548f12b479d7f716b00d4e07299463142626d8b7da2" - } - ] - }, - { - "version": "7.0.116", - "version-display": "7.0.116", - "runtime-version": "7.0.16", - "vs-version": "17.4.16", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-arm.tar.gz", - "hash": "4743c8790089448f5fda15b97d7da32ab382aff4fe9ce865fc030a59f925bbc2a751681a518e0efb283a1450486f9c11663b1dd46f40b1670b1a308a1f45b52c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-arm64.tar.gz", - "hash": "79880d5021c15c8fa1a0d6205eb13e0394eae51175e31de577841bb5879054cbab807cb269fe785ad23ce435e81a54487e010d69281b47739915f687901ba066" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-musl-arm.tar.gz", - "hash": "2db38926e07003a2f67a5c598581dd206dcaae7d63cd28b4cc4af721848a0fe4aae639d5b7e1dc1fc87d96d2384a0eccf30d7841e417972726b211dd642f43ca" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-musl-arm64.tar.gz", - "hash": "1f5e6f6ee4609019e55e2f40f0746cbc9965b94b905415685f0c38299c38b6f4ce95ab7f4a083b025d908254fa5ecb5802dbbee9f1d28b3cd9bde958115e5248" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-musl-x64.tar.gz", - "hash": "5533af8cff8657c1a6d39dfdab988bb94604bf284b970abed6df5566a6f9755232aca43882f27bd8deb4c5bafa3b599db9a2fabbbaaab8bd3e34406ffbfdf699" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-linux-x64.tar.gz", - "hash": "f3eaa93254ef59638f9f3a296d344fcb8b0fa0778dd2c1ba551af80750e05f795a4f2d50c75c0cccbb20ab6e2c3a90f037ab0c6119cdb5e44917ca7698a58f44" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-osx-arm64.pkg", - "hash": "1bea56e56409ea689f7663f70b9c01b26cef5d7cfbbd0854ec2d9bfc72095de3b0b678456d8ea7cb6945dfd1f71222388392510dc11c70b9536b6f7315e39ba8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-osx-arm64.tar.gz", - "hash": "2be33faecb82a49437194654c2517e48d2d9fb42972c942638d6fcf0132ccf62a657faba7cc02c7d2280269ddd7362adcb756290160474158e6bd79490b83abf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-osx-x64.pkg", - "hash": "be1a0e74c10a270e0e1458e1291e8d24e679a3682989d59ccdf571981482ca51a31192d04bc3bea585d1f23768798489baf5972db245efe136d85b2fe32dab76" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-osx-x64.tar.gz", - "hash": "6abe4c2eb07672c7e8af1d01d66f1251699245ccbf4525d34e9df002d5ac7f4ebebe70bfc1019aa6184860609b20006ae5eaf733ac27325ec1117caab4489648" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-arm64.exe", - "hash": "379764a4b1fd6c8d3b92e8dfa0cbbba64491c71b1223f3a866a207dbdc786760f2f9c6f4e2c7e77bffc53c55302393d6675b5bb153258e139daad555abc5c566" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-arm64.zip", - "hash": "4bf32b70406d0dab9841c576af99c5f347e0ca12ceca590e1ece1da13bb616bad35080ddc841004e770eaa1211d16d5d6895f382be33cc88116b4d109ea08c90" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-x64.exe", - "hash": "772aee5e0b8ccd1cc50fe3d293a50c4462fe9df6f29a297dd60bb89e0dd2dcdde74eaa9cb1d3bc5ead4036d536a7a3c488d443c04d53efb61f5e6cb624e0d5b1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-x64.zip", - "hash": "fdf032a145d50449fd9bffe973a218ee165f15c65723707c3664f0c135ffb69e9058bfbf4d6492e337a0140367cd03ac272a6e80a4e04f60fcfc7596b451ef06" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-x86.exe", - "hash": "a2a0458cfa9fc09a287867875a01b8ff026ee1909fccb06bbdbea346942ecfd7bc3001f24f04d410d346cab0b2011d6720536fdc42980e7eb52d6c145c03d1bd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.116/dotnet-sdk-7.0.116-win-x86.zip", - "hash": "71827e18cadc9138f44a6834004626e0b358bd62e78a2964d8ae13f42287bf42101881e22b7220c638e5cca07b97be9f2e063fdc12940201486038a52d10c74a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.16", - "version-display": "7.0.16", - "version-aspnetcoremodule": [ - "17.0.24019.16" - ], - "vs-version": "17.4.16", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-arm.tar.gz", - "hash": "f721d70ef4fe001452f62bd1d65c9cc28137e86a7b334f5236acf122a154b60e9e9459a64f3167b89487a0ec429a3406dc0f195d4b217debb158dda509387241" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-arm64.tar.gz", - "hash": "9acc4c8e99d9ff50f3f5e5615e25e30561a8475ca66332bcb93d3305aa68f1bfb142d21c3eb7cd07627c15d2e3abcfd4d504db617e7c662b83e2b76e4019b3d4" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-musl-arm.tar.gz", - "hash": "87df0ed9da9e23e3a84c75f213580fc8da7178bc17e431d285d8e87667ab688bd8e85b0cab3dbc2b6aa9c265f9a57ef00daf12157bbcc948ad8407aa3604d569" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-musl-arm64.tar.gz", - "hash": "419cedbe0fe956a34fa2e875581d7d01b9e3652623719232694119b137858529a326c2eecfa5c6074a36ac3450f6d5f3707eff343e8b0ff2779110d4bc040a86" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-musl-x64.tar.gz", - "hash": "56c92fa587817422c3b521e0acacfd7fc4e1a8ca0d816eec526cdd324a4623ef0e8c506b44c0dabd751f362c125d597a606d5fc61a8604109118bf83dbbae9ac" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-linux-x64.tar.gz", - "hash": "1482c7c946c1b1a0a39f2bef4eaceed0a9b9eae44d3e8a103e6574b64391749d163ad4d65198573571885906215078ff41f53ebfc7884aa8a437c527532521f4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-osx-arm64.tar.gz", - "hash": "ae2e61279788227908ca2308cc22db56c3bc9497f8544a009c33c669469d22909882c91758f28ea45ea0670211417300a448b431ea6b6079c55cdf55651af816" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-osx-x64.tar.gz", - "hash": "f28ef3bf07682d6a85bf70c69159f66583fdab5de0b8f693de2b7477b55376ebf797e504f9d0026bfb24bf6f884d843363d3f42921c89b164d084c05288ec2df" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-win-arm64.zip", - "hash": "e7326cc2b798ae9c5f29d49350132fd5ef4c0b2560ca8266fc58186277a0f3280e894b6b4906692905bc2052db1aa38090e663278a84105c9c8d37e6ad6d9139" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-win-x64.exe", - "hash": "f60981ef640f99ec74a3c1f78160a3d8f1e5f92fab4ee5adabd4827c4525a96ed7144c353960fafaefdde0f5fbc2baa3ea85a7c0e935e665821452119406050d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-win-x64.zip", - "hash": "255a587e9540aa4b03d1179e257ebeee8582b3199c9ec57ba2575334059a36b4cb1e40db93437341edab3eee1172f5801679e14e15ce397325c03103c809431c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-win-x86.exe", - "hash": "04a303d89596903ca09cf1b9ff1bccbec5cdfc44ae16fcdd65b2b47d16fa102d5d00e25eb2bbba943624fba46b6bfee1a75ece163f7358a96dbe85d238097257" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/aspnetcore-runtime-7.0.16-win-x86.zip", - "hash": "d84071a12e15269630f3bc8780ac06fcb523747f941477eac3d43d33132559ada9a7dd3765c1ccf734696dd26de6067e6f32e75eaec57c5fe7ffa45e2d0db1cf" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.16/dotnet-hosting-7.0.16-win.exe", - "hash": "24c1d8ddc698ace2b227a49f5e9a93c7fb69396b56d1f7d89be3a12b68e1f6c4ae7d100ff304f15f5b83717018bebf25158adaff0a1f2d56f05a87598f5b6413", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.16", - "version-display": "7.0.16", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-arm64.exe", - "hash": "ed2bed1402f85209faaa384f143082525f5b3982f5207effbc85c85c3250e909bdc44bb49a11e1d0422d3384b41334c1adb077ef1cbae1f39077ec7e31e17f34" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-arm64.zip", - "hash": "d937ac219aa732f0fed5639a2133ab7bc0190186b356b165fe8e1897346e717ba28193e0276f61e5c9331338733c3613171b8d63439f06d464afaed031387a35" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-x64.exe", - "hash": "695ee6ba6002e91936c04d5be5eff620968b1846ba3effa659aa724b6e53aadc57ddddfe07256721a461ffc6363ce5634a962f5e84a1b899a57e1325a5819af5" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-x64.zip", - "hash": "e080ceef60684967f6b54ebd1e1804517fb9f2b606b15919783e4593e2a837957d371bee5a4eadf34734c50891facb243339d60dc1fe0cde65465dcdd425fadc" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-x86.exe", - "hash": "7b3b0256f85f6608231ef3d99407d5b02306089934b87ff56ec7835b1f4c750c64bc1e8380ef4a08941d6e259d7de4892b2eb8028f0d53eeae719902c3bf9b3b" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.16/windowsdesktop-runtime-7.0.16-win-x86.zip", - "hash": "cb93e7539daae978d6dfa23ff3b0c483c220e52cb86c276af35598b07b8c5dd77b5db69a29f458a3189735fa9abb4da8a77d9751d4449f2eb2a20f5ec16cf266" - } - ] - } - }, - { - "release-date": "2024-01-09", - "release-version": "7.0.15", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-0056", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0056" - }, - { - "cve-id": "CVE-2024-0057", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0057" - }, - { - "cve-id": "CVE-2024-21319", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21319" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.15/7.0.15.md", - "runtime": { - "version": "7.0.15", - "version-display": "7.0.15", - "vs-version": "17.4.15, 17.6.11, 17.8.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-arm.tar.gz", - "hash": "ba362de283af442bad4e327779fb473cd052c9de3e5422ca72c1ca7938f6f2c6273614d5ddb79bd153727c1fd159ebd344e0571891d529e117616469ec64233d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-arm64.tar.gz", - "hash": "e5b71578142f81809dd3e2bd5a9d673459c3f311ee095429b8e59929bd3ea17169c880113b7c86b8940c2db4bb1138f4770883456102da6b4b42ab7f0da8f8ed" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-musl-arm.tar.gz", - "hash": "01ed6c62386f9996f8f7e07b22c0c85fd280ac7d9011ca10f004eb1608cd995204c22f4d5cc8238f2b0b6ca04a48810137b9033e5fdb8886e8f8fdb7bac9e98f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-musl-arm64.tar.gz", - "hash": "1ed0c1065437afbb267defb467155756c6887cc04ea188d4beaa697f6dc547583ba5ef1ed2ea772b3a3f0b6a181e7c6ad8cb242f0a937a157559dd3f3e439348" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-musl-x64.tar.gz", - "hash": "19db551f06cb217cb1fe943c4d8b481805732859aeb3b80f9da10efd48addfbab5dd332533c567315e40d5340cb2f8991219aeb75a3495aa1d795430b2861450" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-linux-x64.tar.gz", - "hash": "3cec6eabe448ccf5105c2203928a6fe00e343f1f0d97c79614d41c198548a20659113b9507da95b63dedbd3caa6a66bf5f3750f4443744186e35e47de5c30555" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-osx-arm64.pkg", - "hash": "b762c8a37c4c5d6621339af94affd410b9bb5a047b383b1f388852c6c26f83ee24002fc62cc4f9aaea4d55295c0357fb3c3d19d2a329db87d5e9dfda189a5db2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-osx-arm64.tar.gz", - "hash": "0910ae01475c5df70b846aa80b30fb85cd91349b43c682e25692d470cadd877d7965b7ecf06ce93a71f92a4a32c534a876e6733dbf45684628476a1c6bb6d112" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-osx-x64.pkg", - "hash": "c23e2af24f1a7de19bbc1fa47bfefc827d7a41b9259d5e97f2c153cbff8dc1ddbfb9632ffdcde0f79fe5696e9a145c03ad8d9db58744739c59a07a6c353111c6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-osx-x64.tar.gz", - "hash": "bab7013467ae933e18f0c963319f19a54816fb3b2bda35316d45affb683c4e74cc1f6f7cd289c3ca475a2a0eebbd2809831f5ef908039c200407341f2bebb5eb" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-arm64.exe", - "hash": "1f664cc5695cbf922c458466b0c28c78b07b7cb4a019c2b9b11849b8cae7752b8a22f0a841e697305afe4707e1a5e0c427a5be595e1655deeb95abb3485d801c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-arm64.zip", - "hash": "36601976b2e825b8ec4e30fdbb09918d257311138106dbd44a5e1c0c64851068a4668c1ff5d864b08cf868285a4cbc2b0b618aebf4c95624024a170b3688dda3" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-x64.exe", - "hash": "c7509c8893824988721ef8498cdd1d687de2b5e39fc210bc49a1da6f45e22d6c8a9a9836f3509361bf9e9376a25014cfbcbc74469359d06dcf5eab549c11598d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-x64.zip", - "hash": "441a8d93af6603ebc1a315dad8f87bffb3b13c8042f7aaaede0ede235a9313a2106951f390d856dfc6ff228e025cb655a3eca757413a239113398bd1f77d7f04" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-x86.exe", - "hash": "ed3eff487868e46a8de1f65a7519692eb2fd96ed015da6560446c443c7c201eaf4cd68a6a1a1401dc692cbc725e77f3d5c530f76fe86778240793245e95e6885" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.15/dotnet-runtime-7.0.15-win-x86.zip", - "hash": "f5f329d3cbbca99e18f5718074761138b4ca040cc3981e87a3042a1e52f2d7e2c58c7612d2b4c008a47cbf6b0ddddee85ff1a7237ff7a63ac564fb739f8da7e9" - } - ] - }, - "sdk": { - "version": "7.0.405", - "version-display": "7.0.405", - "runtime-version": "7.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "15.5", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-arm.tar.gz", - "hash": "4e593c52a32f79b43339b2dc43f000b8b991a8ff3e56abfe686292a0db5e084bfa8189d5770b4ae6aff66c4006bd56b8214a7ae33ceff426d5a59d96f4035c2b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-arm64.tar.gz", - "hash": "35c3b0036324f0d5a1711859f318863a2f24dd43d61518b38acffe9e278ee203007bf620d783ac706a615175b9c15d348cb9386c800aac219fb23537c03b919b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-arm.tar.gz", - "hash": "5e957d5e8fa67929b43594a414c73febea6769e993ceab9ae792c2aed111d986b302db2aac81d8d59c58b2f173c52cea6a8aa3619c9bcfa962476fdf3167ccee" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-arm64.tar.gz", - "hash": "b27720f523660ee24e8b539dae804683bae58ef8a669c9f62e6b7afc4e0b352edd7f1c7cca6c541563a312fa5e2e3ee756930f93b2f49c89860d19cc8651c8d8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-x64.tar.gz", - "hash": "c061e969af85ab30e28425e457674cdf062bb1ca9ce8c10d450a9b31cfc543cd6a6b6bc22db521a063ad39441e6d2b1cc599f84132a3b7393659fc959e3789d2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-x64.tar.gz", - "hash": "6cdf82af56f920c87315209f5b5166126e97b13b6d715b6507ddbc9a2eb618f812e43686b79de810ae6a21e0fb5a8e04d68a004f00a07533c8b664f9c889b5b0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-arm64.pkg", - "hash": "3a40fe31b4f363afaa682ff0d8585dc409e97b4e5eb51e3cf4a66331e4cdfcf0c6ae5b563ee2bae26933867815e7342fd05970d343d736a4af1f5fb9ac062fb7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-arm64.tar.gz", - "hash": "0ad6700475827ffc8f3dd16609f64368b736dc8b6dc07213738480c237a0d8896323959e05acb7f9510d1027746cfecaf4458f620faa757ee4f0779ecca24201" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-x64.pkg", - "hash": "e75d2b986bcbc68eab6c6ec619e4b545de615a191e9267a406e842ea78c54e8d6d3f731886f50f5c4bd333f8d3518ed423bae812d37a1a493551f73300b1b388" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-x64.tar.gz", - "hash": "8525c009fad7fd0873ad72654a88f90d86b13ac58b17846fcf3d7cb696bc0d3c2c45bfb8d85e17a99f42421c5d6081aa4973d81211e42265efdc58443d075f5c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-arm64.exe", - "hash": "8bef99a9fa21b56486396e8a5404cd7eca0b9a0de3d149445170c0dabdc64bbe6d605a3382925c1c8096d6942a5923354ac1289ffe3bef8941b5567f64e2c37f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-arm64.zip", - "hash": "ed9d60bfb81e24c22163de581373d12713b3833b0eebd7be05b360447ba1daf6dcca53579890c3869911563c79eedbcb0b505dc5c8b44fddf382e418db0135b5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x64.exe", - "hash": "e9df6ddf6506f6c082fb89636dc5f67131a2bc6c52b7e2d57a1c73de7f989c99c40074a289ab4ac69ded4c13d62170a79637d7fa41aee57c2c890d203d15dfd5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x64.zip", - "hash": "e1ff7de4992bba5d536e884ef5582067ccbcf31b19c191a37e3ab47321a33326d9b58e15b2045e795a7ab936124bcd93eb32984c5c96843f3db7189e398176f5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x86.exe", - "hash": "266c461cb8913bee9ab86c792bf5a08b125df8fe3a56f55655e169a59a152d65c118c22ad207e8e5797e250bac601152da1d8a0f6e7f72dfafefc2855793ab00" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x86.zip", - "hash": "2ffc7ed20abab35691005caba6a104a6e63db536388e4f00b36ff74624dea54d62b936942bb3cc3a3667c5226fe8c41750a8348c32591db6f927ec1ba615fc48" - } - ] - }, - "sdks": [ - { - "version": "7.0.405", - "version-display": "7.0.405", - "runtime-version": "7.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-arm.tar.gz", - "hash": "4e593c52a32f79b43339b2dc43f000b8b991a8ff3e56abfe686292a0db5e084bfa8189d5770b4ae6aff66c4006bd56b8214a7ae33ceff426d5a59d96f4035c2b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-arm64.tar.gz", - "hash": "35c3b0036324f0d5a1711859f318863a2f24dd43d61518b38acffe9e278ee203007bf620d783ac706a615175b9c15d348cb9386c800aac219fb23537c03b919b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-arm.tar.gz", - "hash": "5e957d5e8fa67929b43594a414c73febea6769e993ceab9ae792c2aed111d986b302db2aac81d8d59c58b2f173c52cea6a8aa3619c9bcfa962476fdf3167ccee" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-arm64.tar.gz", - "hash": "b27720f523660ee24e8b539dae804683bae58ef8a669c9f62e6b7afc4e0b352edd7f1c7cca6c541563a312fa5e2e3ee756930f93b2f49c89860d19cc8651c8d8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-musl-x64.tar.gz", - "hash": "c061e969af85ab30e28425e457674cdf062bb1ca9ce8c10d450a9b31cfc543cd6a6b6bc22db521a063ad39441e6d2b1cc599f84132a3b7393659fc959e3789d2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-linux-x64.tar.gz", - "hash": "6cdf82af56f920c87315209f5b5166126e97b13b6d715b6507ddbc9a2eb618f812e43686b79de810ae6a21e0fb5a8e04d68a004f00a07533c8b664f9c889b5b0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-arm64.pkg", - "hash": "3a40fe31b4f363afaa682ff0d8585dc409e97b4e5eb51e3cf4a66331e4cdfcf0c6ae5b563ee2bae26933867815e7342fd05970d343d736a4af1f5fb9ac062fb7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-arm64.tar.gz", - "hash": "0ad6700475827ffc8f3dd16609f64368b736dc8b6dc07213738480c237a0d8896323959e05acb7f9510d1027746cfecaf4458f620faa757ee4f0779ecca24201" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-x64.pkg", - "hash": "e75d2b986bcbc68eab6c6ec619e4b545de615a191e9267a406e842ea78c54e8d6d3f731886f50f5c4bd333f8d3518ed423bae812d37a1a493551f73300b1b388" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-osx-x64.tar.gz", - "hash": "8525c009fad7fd0873ad72654a88f90d86b13ac58b17846fcf3d7cb696bc0d3c2c45bfb8d85e17a99f42421c5d6081aa4973d81211e42265efdc58443d075f5c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-arm64.exe", - "hash": "8bef99a9fa21b56486396e8a5404cd7eca0b9a0de3d149445170c0dabdc64bbe6d605a3382925c1c8096d6942a5923354ac1289ffe3bef8941b5567f64e2c37f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-arm64.zip", - "hash": "ed9d60bfb81e24c22163de581373d12713b3833b0eebd7be05b360447ba1daf6dcca53579890c3869911563c79eedbcb0b505dc5c8b44fddf382e418db0135b5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x64.exe", - "hash": "e9df6ddf6506f6c082fb89636dc5f67131a2bc6c52b7e2d57a1c73de7f989c99c40074a289ab4ac69ded4c13d62170a79637d7fa41aee57c2c890d203d15dfd5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x64.zip", - "hash": "e1ff7de4992bba5d536e884ef5582067ccbcf31b19c191a37e3ab47321a33326d9b58e15b2045e795a7ab936124bcd93eb32984c5c96843f3db7189e398176f5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x86.exe", - "hash": "266c461cb8913bee9ab86c792bf5a08b125df8fe3a56f55655e169a59a152d65c118c22ad207e8e5797e250bac601152da1d8a0f6e7f72dfafefc2855793ab00" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.405/dotnet-sdk-7.0.405-win-x86.zip", - "hash": "2ffc7ed20abab35691005caba6a104a6e63db536388e4f00b36ff74624dea54d62b936942bb3cc3a3667c5226fe8c41750a8348c32591db6f927ec1ba615fc48" - } - ] - }, - { - "version": "7.0.312", - "version-display": "7.0.312", - "runtime-version": "7.0.15", - "vs-version": "17.6.11", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-arm.tar.gz", - "hash": "183b8355b06b309d794dddc1ac2d26c99d192071804d9c21a446fa58c1c21ae780411dbdb00d6fa1b6176c6915ed0c6e343b0601e256e70c2421f9d6aad9bb31" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-arm64.tar.gz", - "hash": "0e0d0213c82278d78badca89f14443fddbd6211ffd12968dbe156d0c332a654d27c5868af98ea1076fa8bb5b933afd3a9d377f1a9a3a1b1f49b62a1996906b3d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-musl-arm.tar.gz", - "hash": "1bc59fd6ad4edeb728cd83b0fb4a54080f17b1883f2cf8c8547b321ea3800802adc246a54ef9c837c417ce972c5b83864d21608c5155c812028f6686df79e0d3" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-musl-arm64.tar.gz", - "hash": "af6befe621fa27ca087e728a8260c78495396044b22fe4e606404bdd2273518b4121f777aa20634ee9d5a1c70509712da513c5e10cc606c713c6a0047c7a3956" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-musl-x64.tar.gz", - "hash": "7dac92facd7adec19054ec70a4b0abfb0d1d90048fcfae7641f627818f071fa6b09f152e3992de57d4d620986d6ab0bb52bd0a6812485c03b63a246cb1b63637" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-linux-x64.tar.gz", - "hash": "250d0a6f779976969385c31dc69f4fec53e7ac1b1962cd9a80185fb78fbbc01a5b0b0af305b718142f0bf7644d3395aac1472b49f40fb7b9f1f21a60fb53253b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-osx-arm64.pkg", - "hash": "0ac298c9d8f2471e4e228383b3ea9ccb17016ec97e7c22163a83401e0a5fed61eeffebec39edc18edeb1f6b46f7977b6d6ae7f5e826c36281d66168b503ed3ef" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-osx-arm64.tar.gz", - "hash": "a9881f5b12cb3b087f9659c98e3959eb8df217c07d201bea8db6538ed0ce6aa6bbb1ca79cd748635325a4ecb45c81c4107717795a896043b0fc0530092b5da90" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-osx-x64.pkg", - "hash": "c5e7be1b98ed04bf36fe16bf370ade731dfb105ee8a1a0bec0dcebd09dbdca5b6c54f3cae951f97e9bea69c4cdd1d17f79f2ff530b7100c2b98b0196175c71c5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-osx-x64.tar.gz", - "hash": "33c3f60012d9d24a7e4893f0ecca687fe516d7c621d65b2018e594d07ae7cd4ccc4bcf712c888417ba96f27fe602896f6ee1607ca843345ee4713469f4a2a872" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-arm64.exe", - "hash": "101d4c95368dc2cdc409741908f34d579e4e8cb062b4f3d69f3e6d59198745b0da29c44e5ceba93d15b45be1d67d0a2817f91e119b6c2c932ccab32876a799a6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-arm64.zip", - "hash": "ed1f91976354edbcf93ff4461015f1c2dd04643e24630a23947db568bbd498d9ec80a34bd87bf8965a6be5ff0afabe6a5258efaa46a222e50d603697755b7140" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-x64.exe", - "hash": "3168b2efa740b846dd165d57cb0935005f8a81380fd2d5b98a124c9ef88a496eadb63857dd207d9140a542a594d04d644e6a5649cfef32834b03891ea05bcb6b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-x64.zip", - "hash": "3ab0a151f80b64cb9fd75f84b87afac305193d5492eba6fbea319a3f4880730ba97a3f1c330610865efeb69d2d490b61c39b631d4d07cea0930301e9382d3f40" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-x86.exe", - "hash": "9af05bd0ef0c843271e95edc2e65475d92a48306cdf6807cf78e586583719b5dafb1e7b162f6db3ebe1179a7795af8bdff14fa1f2f6cdbb84460f0e629678a95" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.312/dotnet-sdk-7.0.312-win-x86.zip", - "hash": "053a6a1c9e486daaf6bc73d297275e6b73204bc51c95d00564e3f358d5e65a6c7079aed1a70d7df4af2881d57c3efc01fb54698a60c2301b0d7d557f351641f6" - } - ] - }, - { - "version": "7.0.115", - "version-display": "7.0.115", - "runtime-version": "7.0.15", - "vs-version": "17.4.15", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "6.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-arm.tar.gz", - "hash": "a7ab376259c125cfc5d85be83d364111a754b545018b538d162a7daef1142db10c6a65973fc20542b8abb4b0301a31b46fcc16a4b4cea42f2ad3e860d819f3f2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-arm64.tar.gz", - "hash": "8da1dcfe1eb69c60cecf48da4e933e682128ddb520484b95238af24b5427086b0ff7f0257b8433076a3b720ca9729d52389c7d16eba3c9070bc3318994a0be83" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-musl-arm.tar.gz", - "hash": "809ba1d7aca0314d26e31bb3042718b969a4f8af2eec6ec71d77d11b04ff0da0f6ad34b530fb4ca65bf2fa922b03d8e1e17ff0662fdba5cb672cdc2e9b5fdb51" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-musl-arm64.tar.gz", - "hash": "138aceedf1f40898ce0e3c92442f32d547d31a5a8cae522b7f27f3d89109562487a43b80e6dbb0f7fe3820f71c4f2101e8deffca88786f0a569acd3d5592c238" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-musl-x64.tar.gz", - "hash": "7392ae77b6669b24113b0a290dd4169cb47f80f25ac8bbf61670993a500012919a30bc1c71e22ed82fb342580736e741278067d5da72aea89ec7ade05164abd8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-linux-x64.tar.gz", - "hash": "716d3bfba7be793489a43df569339aae5b654c98e9d0df1b64c61ed4a232cec2b188148b4aee98062e3837312ec97600833d8f39e1f4cba2800879db124d513a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-osx-arm64.pkg", - "hash": "4a2e821817c86f0b63e256e7176904d3d58d708f76946cc788c1587c841a9e60e359a2b59a927abef92c5aa19df04d103c92f24a0cad64e093d06df65e9a02dd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-osx-arm64.tar.gz", - "hash": "693f63abcf66fd9f849bba53584fe8ea570394e336c14b0d20c5274192292b7d543c5ab8ac8649b5526f1187aedba0ad1d226758fa5c6dfeef174a782ea56c82" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-osx-x64.pkg", - "hash": "3a9473df2fea4b297e4e3742f26448b2466c9d18a7abaf188faefe950296ecc034ef8707e931d786984044fcae1bbe12d030f5e7751b32ff0110bf72379b3ac8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-osx-x64.tar.gz", - "hash": "35bf6cfebffbd125050d91a553bfe03ee61e95bb20c23c080a2367bda0488941aa208946a4887a11e36c28da249fa10c3e1853dbdcdd4846a0a206e2ec5d4388" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-arm64.exe", - "hash": "3a6c03b2cd5a7d7ef4e29f42233ece2d8a4b90791586cef05a979cc07e8d10d55e88321737b5b92f428844bd338dfff908b39a8ee4b5cb842fa5a56db96a9174" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-arm64.zip", - "hash": "c53e326592e3b1041c991005c5be97db695276488a3b4afbef5fbc62e80c951a677a01c3e17936aefa53550ca008cce3d039edc24e5fbce58f0c9a5715ade03d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-x64.exe", - "hash": "541241f630059c223cee5101ad4b77c720719df6ba4df961ea1e1a8b3cf52df361254acbc02bdfc681d8a7fa7aa4de566ca4cb9f195db1d321587cb4240d74b2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-x64.zip", - "hash": "ed25a2e332d9f01ae5dc8647813236674b76c84abb3d5fda1fb22e3a8b772bc5866a5db530fb617969e8afba65fb23eeec7d70492c93ecfbb8c43af5e341b916" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-x86.exe", - "hash": "2125c4df31691261f0ab6bf226d9af78540cf65b740a8ed203298732fe1443b64a67273d40e27073ee7d28d3e454dbf1e73e8c5fcfc869cd55ecf95d01c2829e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.115/dotnet-sdk-7.0.115-win-x86.zip", - "hash": "60e44d5cfede53b8939c53b4e6750efa80c000085e1e7410e14f12d2e6f4687305be99a841a6b992cd76eb0ec7f66bc0d518c63ca5f4702cac8cc30b7a481b1b" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.15", - "version-display": "7.0.15", - "version-aspnetcoremodule": [ - "17.0.23335.15" - ], - "vs-version": "17.4.15", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-arm.tar.gz", - "hash": "34ba8038fa1861d44711302225ec47fcf0c1bc1a3c75fc7ce3b9f054ca46ec627e1864e72f47bb79c03f49b349ca6821567b04f9f3aac80f49afdabf97105ddb" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-arm64.tar.gz", - "hash": "4139d28b0c67497854794d34ec3eb3d7f4a49f34be4ed43cb634be88e7315af81090dd851fe2cdd429bf0050345f14000d2f939c020aeb809a1696483afdebe6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-musl-arm.tar.gz", - "hash": "4b4e814c4aa45a92ba4f7b55293360c0c90d79f4dfb87e6b2d3c8cff22647371173c1ca71657da476f16820951a697076528e902591fcd33c410ce156dceb916" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-musl-arm64.tar.gz", - "hash": "35372eb25c7271751417750c5b88f74be43158674aa23862386d0d67b765f4899c59016e989fce640d254e04c618ae520af5908f207265fee3917225dbec0899" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-musl-x64.tar.gz", - "hash": "34fb86e7ab71dbecee7bd3fcfa0eb11b3e0ea3e1da758c261ddcae432245ae8f2519d9c46ecc0f011f5f0e085bb127811c61c7b7619fffe57005aa3b48112d3f" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-linux-x64.tar.gz", - "hash": "8aae979c0e9c90e781b8747aba5d7e09c9a81845b936c9185dc16d519db3a4ad9e219da4bffe13476baa81c7ff3e1637e8ef031be1f9f305f7d1681568ae3aed" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-osx-arm64.tar.gz", - "hash": "7d090dfbc862d6329fefcb93ec74c5b82100fa1949ec92602b69871b48f467654fa6c18ec0553d1edd8908a87cc3682e809270c5fcfb3c93111be8adae86dd6a" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-osx-x64.tar.gz", - "hash": "75d01e3e123abbb5851c709a13d186a11db425bf18c82f615b445c2ff6629264a4d41e8011d43a225816ac807c7c8793cb35bbaf506455a3169a741d637230d0" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-win-arm64.zip", - "hash": "a95331017b2c041cd120ed55001a590613309bdabc12bc886aae4a35044f4872ca099bfd9309cafda8f8dc2f7b0530b9c26edfccb3287297c0d9fc994ba18f10" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-win-x64.exe", - "hash": "a3a3d26e7342043a69c41f21416ea720b8fa79206adeacfc4e2cdde4957847d56c960ac013251687208aeff635cd2b4627a90f193a425635eb6b8fba69111301" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-win-x64.zip", - "hash": "56983811d669b2564df0e9d09d0118284eb0dbbdbf4c0ad1ed416c32d2eb3d6553f6fd30eb23d5adf50b6a2cea9fa566ce610258be39fd6cb59ecd2aeac9e915" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-win-x86.exe", - "hash": "2b1887cba999a4a13b595d5f0f71ccdac703fa1045d1868f77dc58300f08ed786dcc736667ff840b65d9491976eca4705672526fff5819ee86c484288c965984" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/aspnetcore-runtime-7.0.15-win-x86.zip", - "hash": "d62f4a7f515dbd73aa699612ff00ea7cf6979bb693fc432711f035e75526bbe31d22dc10fa759957a692d037164b8756fa42edb713e3f47a3f91a987fca78407" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.15/dotnet-hosting-7.0.15-win.exe", - "hash": "dad6de48a992e18a9e91be41f9997de87ce06444b2d8201316483172f782fe903837299a238918cffa239f5c589cc1ab0680cd307f93544de52a310c0769070c", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.15", - "version-display": "7.0.15", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-arm64.exe", - "hash": "c378d55b11d99f7f606a8c1604a81514f81595d48077f63f6604dd1684ea3fd7f642d1d8d68111d66b5aa5a950f99d09735eb4a6cd43481763d3d81b3ea9d545" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-arm64.zip", - "hash": "5a9756854f311c26b344131f2da871f2eda3a68ed0198107d3451a5a27ac41e5963934fe857abe1b351e17f2e350ebe98c0f98af766bbc0adc9a54f61b41a2c4" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-x64.exe", - "hash": "9fcf6fe4a49ccac84fced899039522eee06210cb7d7add57d2c4f76560a4698f38ce22305d13f129a535fc105e3e7e132b90f9b9aadeaffae076f037c891813b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-x64.zip", - "hash": "11595151000039a18a4a90587327d2345d10e9765d7e69c95563671381ea2de1265160452617cdfed67f7a03ee2f23fce5a09c3dbb4bf220eebd5400ec81a16b" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-x86.exe", - "hash": "f749fbb22ae6daf5370f2d8c0961af049a723b742805a5a36dc2288f0318ceb600551ff72fa79aaa393b22a207165c92aa2de918c7215b6f4caa7fb679a3df69" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.15/windowsdesktop-runtime-7.0.15-win-x86.zip", - "hash": "a90523cee2927d5bc8c92e8b5ab68acc5921ec1a5f3dce5f3b8407dbd3c900504a4895cbe7172b5e6010d030d2c7b5d008332cd7bc7496a024563360aab424da" - } - ] - } - }, - { - "release-date": "2023-11-14", - "release-version": "7.0.14", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36049", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36049" - }, - { - "cve-id": "CVE-2023-36558", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36558" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.14/7.0.14.md", - "runtime": { - "version": "7.0.14", - "version-display": "7.0.14", - "vs-version": "17.4.14, 17.6.10, 17.7.7, 17.8.0", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-arm.tar.gz", - "hash": "fac40241dc36434725197548abc7715db846f34b48b68df139981ef1d663eff2dbdcb11626a8295824aefc9cda98c62c39fc1e45a05cf7b2307c26467f6a0e43" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-arm64.tar.gz", - "hash": "cf2dc2997b10148b558f78b2f2401acc83921a6b721c11199ac7dc77d8c9fb5500d7be092281f13f3c9b4287dedc6fdb56f242d9340568a0fc021055983f9cd8" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-musl-arm.tar.gz", - "hash": "16343c03c29c4242683c9e1c9a669ffdc50ca8f5805ee539a3628a05e412dc7afe2df1a81ba57bfceedc9a42450bbd9b59a1b64b32e0e0429f0ce7e335db6f11" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-musl-arm64.tar.gz", - "hash": "92262e41a370d9c4b05b0dec1a73deccfe05b1c841300f6c0aa2eed49f7ca5c1d76727a571cef3c5a063edcd6da2ce69d2357c3e3372f5789387706b4512e97d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-musl-x64.tar.gz", - "hash": "954cb4d80a7da484c5f73a4dd26b35866fe320260af6c7c7dd79e7b82bfc4d972c6c854c705514983f78ee2f44b572f30ed622dd69e94c737e6c5663279f68be" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-linux-x64.tar.gz", - "hash": "02fd66ef2059d124d9c4f3fbfd0d5b0375b83610cdf51a2972567e4bdaf1d55e532478533509ec2408c371e7fdd6efea8e9b9aec9eb5cd703e8e5d2814ef319b" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-osx-arm64.pkg", - "hash": "3692d57a2c25ce78e5160a4c67cc98696d6ab3912276d7f9dcd4d9e50d5d2a2910599243c3bdab0c2f46b4aa4a0b7a0ef4618cacd213cee146c04d2033863c02" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-osx-arm64.tar.gz", - "hash": "0de7be8aa01c837ef587e9ed8b2944ef600466a2b68c6f0a4c63e1d4473b92a09667a31a412cc2535b8ca44a0f768cd1a1daa419ad152f2d42c3513fab35eaf5" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-osx-x64.pkg", - "hash": "bddc8bdf832be8decf4ff42ef31c15d2daece37ecb19c590a7b8f89a107bda7f3636d6047c82af985c34bb8189bd1e4dec5f0654ce566385b6379efbfaaed7b5" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-osx-x64.tar.gz", - "hash": "74f66428fdc77ae9d801e1f7559d99436c6d1fbee7a64d587e46637466873a32d76b867f5cf56c0951bb01450419b8f25e851e5ed0abe69444df8979312cf9a0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-arm64.exe", - "hash": "27ac74078e9d1114a667dea359251e9e0c5b5f508ba297ebf03b384955c57288e8b2ef7b28a4aad3f5254a1722c4c048e785a7e3b1d6be2d97fb0a05dba16527" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-arm64.zip", - "hash": "72e3ca631c62c084363bcddba371594ff82f5981eb2572114f3d1c833857bd0268c284e0677be2ff0f690baef1e25a88e42a5b51183ce4f6d585cbe3ca3f6a32" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-x64.exe", - "hash": "6ae850b7ba826d7d5bee7c299c444fe93b89f9721250e3d6d2bf35435dc00138fe0839884483ed96058b27d44db9283fb61b65d929ca117c1888acb30a58ab2d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-x64.zip", - "hash": "6186f3d521651c4f092f8f6318734e49ca38e8eb85522da1602144f896d5a3aa83176cee7b27b70f7b87fb0e7564416b2c336782674c59b7d2065a6e4c0d0a01" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-x86.exe", - "hash": "5ad4892fea92784c56cbb4f4a939a4f492addbbb01b2151344c99832157c000f16750c4852fd0c55f9fb9b305deeba266c426b2622486e2b51d214aee22c498e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.14/dotnet-runtime-7.0.14-win-x86.zip", - "hash": "5867a3edcc68a63b4e0c69395a8a6088ff8bbcb74cd96737adef8303a2338832a4219450ff5843261655cdc345aeb16d9c74614d472eb7129718f119b0f49efe" - } - ] - }, - "sdk": { - "version": "7.0.404", - "version-display": "7.0.404", - "runtime-version": "7.0.14", - "vs-version": "17.7.7", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-arm.tar.gz", - "hash": "25a5a4ba918be181fbe58b4e5c5b385c4825837ed0e3778b01754c35f0d2651ec71873697f8781e91adad9177c366a179c34378418d4736366c978115ca0a32b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-arm64.tar.gz", - "hash": "b7131829d08dadbfd3b55a509e2d9a9de90b7447e27187bd717cebf1b134bd0ddfcb9285032f2ce08bd427487125e8b3e9cdc99b7f92436901e803e65f1581de" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-arm.tar.gz", - "hash": "fdd975f762ff757f81b0cb9eb0063c32cd46d8c0fc45a1e29f1bffef2756b31cc725313e1e9b29c4908f0e7027970e594217af01cc909a0db0adec2384b6b916" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-arm64.tar.gz", - "hash": "209f29d23945d61d8d2bce57ed120b970ffdde7a23fcd397602e4755ff4be6ace2284d42297708e7cb2ef8a2f569885b0595b218e01b84b923c76c58fee1adb4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-x64.tar.gz", - "hash": "db21720eadc79fadf62332cf0a10bbf8c83a96521b25967e69ce54a14a16d9098abb9c8d2c263170332a30ccd0fd1eca92129a1e9fc3c3460fc265ace38bb04c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-x64.tar.gz", - "hash": "f5c122044e9a107968af1a534051e28242f45307c3db760fbb4f3a003d92d8ea5a856ad4c4e8e4b88a3b6a825fe5e3c9e596c9d2cfa0eca8d5d9ee2c5dad0053" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-arm64.pkg", - "hash": "75c53127350c1ceab04b26352b8cad4622aa9b4044ed0de81c2dec7d76f3b72f4214b174408ce466ddd3baa497c66244ddd2a7f966f112dfa0c4d0850888a642" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-arm64.tar.gz", - "hash": "ca2dc7a126aeb8ab6c919bab535eccc47817666feaf0cde7418cab0a2cee238ec44d229b3f4d1f7550d121748f1e0abc5e4900b33edd57f2cccd89b58fe84f49" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-x64.pkg", - "hash": "973ccd9be0c905e502fd782d607d4a9c6c38518a84d754716cb0437fd1baf5c740a02a8df2af4ccd637207e5e6298abd47b8829af63d63b072f5b70ea6d0b1ea" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-x64.tar.gz", - "hash": "6e04e1d262c23bc0fbd6be9b1f847c1a47142438b330c004e46b49aaf0a520df3f3c0a576b2fd0ed88567be572280e5f5a98908c920108c58e65aef22c1332d0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-arm64.exe", - "hash": "2bc1ab2b2652dabc72625f2fe531c2b06663648d2091d4a448ea36882101d3dd98dd88d027b1e140c7be6d422ffe77ccbed162a537c5728be9843547c33e72a4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-arm64.zip", - "hash": "d264e84f30985a3ec2f0444238e8ff93fb812ef646dbe465ce565885827f832332aae26a12c1124716bf35b8fb4f5b2482b7686f3896e17aac8ea6e4950af8b0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x64.exe", - "hash": "4bb56c6f112eba92f2ad0d35a5e3109512a1dac601d63983ffcca2047760f661f60296c5b68dc1459729888614a8e0205ed4eaf69dfaa5b4614f409e863a0ea0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x64.zip", - "hash": "d541d2657f0551f53897c8a212ac17dc633a9b299082aa237e0b08e032c5f26f1a0aa277f76ab3ba5d5306955933f279ccd422ea7017725b15374b55ae3e2346" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x86.exe", - "hash": "1f98f8efcee6bfdcee0d3a989bb3b6a3df8a55bd670fe6b13de07202e4953f783151c4a4225a50217742aaf74b678cf04991448b892b562183374ed9091ca63a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x86.zip", - "hash": "d00fc2e7397c62fbfba8bde9f63eabb8d8e5ad22107ccd49e2934fe7b28a08281137132ba055a1bbe19190fc79fad69c469c04af5415aeff585796edf5b1558c" - } - ] - }, - "sdks": [ - { - "version": "7.0.404", - "version-display": "7.0.404", - "runtime-version": "7.0.14", - "vs-version": "17.7.7", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-arm.tar.gz", - "hash": "25a5a4ba918be181fbe58b4e5c5b385c4825837ed0e3778b01754c35f0d2651ec71873697f8781e91adad9177c366a179c34378418d4736366c978115ca0a32b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-arm64.tar.gz", - "hash": "b7131829d08dadbfd3b55a509e2d9a9de90b7447e27187bd717cebf1b134bd0ddfcb9285032f2ce08bd427487125e8b3e9cdc99b7f92436901e803e65f1581de" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-arm.tar.gz", - "hash": "fdd975f762ff757f81b0cb9eb0063c32cd46d8c0fc45a1e29f1bffef2756b31cc725313e1e9b29c4908f0e7027970e594217af01cc909a0db0adec2384b6b916" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-arm64.tar.gz", - "hash": "209f29d23945d61d8d2bce57ed120b970ffdde7a23fcd397602e4755ff4be6ace2284d42297708e7cb2ef8a2f569885b0595b218e01b84b923c76c58fee1adb4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-musl-x64.tar.gz", - "hash": "db21720eadc79fadf62332cf0a10bbf8c83a96521b25967e69ce54a14a16d9098abb9c8d2c263170332a30ccd0fd1eca92129a1e9fc3c3460fc265ace38bb04c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-linux-x64.tar.gz", - "hash": "f5c122044e9a107968af1a534051e28242f45307c3db760fbb4f3a003d92d8ea5a856ad4c4e8e4b88a3b6a825fe5e3c9e596c9d2cfa0eca8d5d9ee2c5dad0053" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-arm64.pkg", - "hash": "75c53127350c1ceab04b26352b8cad4622aa9b4044ed0de81c2dec7d76f3b72f4214b174408ce466ddd3baa497c66244ddd2a7f966f112dfa0c4d0850888a642" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-arm64.tar.gz", - "hash": "ca2dc7a126aeb8ab6c919bab535eccc47817666feaf0cde7418cab0a2cee238ec44d229b3f4d1f7550d121748f1e0abc5e4900b33edd57f2cccd89b58fe84f49" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-x64.pkg", - "hash": "973ccd9be0c905e502fd782d607d4a9c6c38518a84d754716cb0437fd1baf5c740a02a8df2af4ccd637207e5e6298abd47b8829af63d63b072f5b70ea6d0b1ea" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-osx-x64.tar.gz", - "hash": "6e04e1d262c23bc0fbd6be9b1f847c1a47142438b330c004e46b49aaf0a520df3f3c0a576b2fd0ed88567be572280e5f5a98908c920108c58e65aef22c1332d0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-arm64.exe", - "hash": "2bc1ab2b2652dabc72625f2fe531c2b06663648d2091d4a448ea36882101d3dd98dd88d027b1e140c7be6d422ffe77ccbed162a537c5728be9843547c33e72a4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-arm64.zip", - "hash": "d264e84f30985a3ec2f0444238e8ff93fb812ef646dbe465ce565885827f832332aae26a12c1124716bf35b8fb4f5b2482b7686f3896e17aac8ea6e4950af8b0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x64.exe", - "hash": "4bb56c6f112eba92f2ad0d35a5e3109512a1dac601d63983ffcca2047760f661f60296c5b68dc1459729888614a8e0205ed4eaf69dfaa5b4614f409e863a0ea0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x64.zip", - "hash": "d541d2657f0551f53897c8a212ac17dc633a9b299082aa237e0b08e032c5f26f1a0aa277f76ab3ba5d5306955933f279ccd422ea7017725b15374b55ae3e2346" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x86.exe", - "hash": "1f98f8efcee6bfdcee0d3a989bb3b6a3df8a55bd670fe6b13de07202e4953f783151c4a4225a50217742aaf74b678cf04991448b892b562183374ed9091ca63a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.404/dotnet-sdk-7.0.404-win-x86.zip", - "hash": "d00fc2e7397c62fbfba8bde9f63eabb8d8e5ad22107ccd49e2934fe7b28a08281137132ba055a1bbe19190fc79fad69c469c04af5415aeff585796edf5b1558c" - } - ] - }, - { - "version": "7.0.311", - "version-display": "7.0.311", - "runtime-version": "7.0.14", - "vs-version": "17.6.10", - "vs-mac-version": "17.6.10", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-arm.tar.gz", - "hash": "b962f579e3518e249c03d19453f3ab8a57db70df7a6038e39c2e694260bce38d80dac58ce5be86eb9e5908f034ff971bb4918301aaf8a78c76d399cacffbc730" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-arm64.tar.gz", - "hash": "8a7ffdcaab49ec2dbb915f7eaab535bba113bf5e81ab1cb4a2369cc1a99de90cc70a04d11982307da833f0e5c7afe9fc4dc0002ecee8a0a380daf5a7723c7059" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-musl-arm.tar.gz", - "hash": "af29641cbbd456740aaca0164c64acd67cc09183e9906af0b4ea84daaea2ecbefd1a3c092bf364f642af4f544853da382251aa8365a7d315feb82f83fb01f2b9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-musl-arm64.tar.gz", - "hash": "4c1de312971c9f7829d4fe08ebcbe370da182b5bc7d82bb6133d088401b57d451fb1d2a784c8e1d33385e4ce1e8c4b33e063a52a00d32fa20cf6764cc05a777c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-musl-x64.tar.gz", - "hash": "71819507642e11904565220bfa02636877bced0a4a5afd0d095d9c81a977df8a01cf051bd2813fe305950fa6ee5854c1f798b8ce753bd4bd81818ee80ec839e6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-linux-x64.tar.gz", - "hash": "8dcfa7d14123b3cf3e861e9ba4d1d1e2cddf92c64b52ad98b301050e3c35e1b618eb1b7da5e61570950fdce1326c854f42415065bf1e68edc1feb3be999346cc" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-osx-arm64.pkg", - "hash": "706f8f6ded359289a4e70abfa1d4be355b35960620895faee71e6d60c6e579d529e75d7ad6982cfc8d25b4e597cda7b7e6594829c0799cab49f4036e772ebca8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-osx-arm64.tar.gz", - "hash": "1d8b84ff78c307d062a0a6750cf3f3788e3e458a261a48540bc1bb8b7206d682762dbce51f1b04057ad2c3955fa9261277dd5970d8ba6d9b92ab400544195084" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-osx-x64.pkg", - "hash": "407584c391260db47058c030c77c3972198e80054138812090c19d7f598d47cdde855d78764633d96a0f26c8c27d6c83c6492200cdc86a1a44ef0abe7def2cd5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-osx-x64.tar.gz", - "hash": "5381ce26c0e480ea791fde3a8e90a6ef031fde4480d35dfa940c039b64a0d5a8e2eb82b2ef56cf4d0a77af3bbc07a594ab605b8447c872014b0063d70896acfc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-arm64.exe", - "hash": "b32ace0261c52bf1fedf70595192a7dae85164c1e3b0453e7064f630be20b96fa3bdb6eed73485080415d4ecdf2d72d30fa746356b4efc55c495134435d75cfe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-arm64.zip", - "hash": "090a0ab7520b35bbe02f0989735db2e8f3787926853e2643efa2d7ef0eb2af4cff3604890fb524402a49993bab53ef501a495ed53e8139ff67470ca4e834693c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-x64.exe", - "hash": "0f4c3a70b7506a614384ff9e455de12c6b6dc96fa50883e6a6024a0d587448f722a740a489f54d944a084991c0aad6803668fdf2bd294c3a5203b2dfba4c0673" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-x64.zip", - "hash": "025d44b9e1b5124f4ed046d6f5a981c4ea3d95d9d217315ad4415f7590fbf38f7a944c3e91d65c1988111b64b837fa25310d03e6bba2d9b627c0b3ddd457da85" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-x86.exe", - "hash": "d3d907dee41d134c5c81f7b6ae5047bf94b6fa96ed2732988a193c369a329171c8816376787aa008948fff210985be2863dbcb9edc2c185654587e8716167544" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.311/dotnet-sdk-7.0.311-win-x86.zip", - "hash": "c97f3dba76093496cc2f4835661adc8a212e4ff2b2e40be65504bd736177b3897105e8dadb6db810fdb094e8e24b18ea2528b505b387a755125a503860dbacdd" - } - ] - }, - { - "version": "7.0.114", - "version-display": "7.0.114", - "runtime-version": "7.0.14", - "vs-version": "17.4.14", - "vs-mac-version": "17.4.14", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-arm.tar.gz", - "hash": "aea6d7e3711a2dee7dd2f36ac11f925de437d36aa4f8f46cc160f4c54050f592b9fe105875400090252c5d9ca5c29282b2557cde6c58f230a48021e400572b5f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-arm64.tar.gz", - "hash": "7206f9c3b43305cf332d41dc65ad6fc3669d1596a8dffc465c8173517f13b3e3f9f343b396fc1b6cd169c053e130b721a6e90f02863470fe92fca2017e1a8b91" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-musl-arm.tar.gz", - "hash": "4a0246d044d04e7f1b05ea632130f721bdf71e2113b0b940a3c323f4d3832dd3c5f49d5fecb85109d52d235bc25bc18350dab62f9ee567450971e2cf0ef3d5dd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-musl-arm64.tar.gz", - "hash": "d415abf152d894428a9924a1ca33bd76dde34395dfe87954debab9f754c4c20f2fec14886bb302a297abbd1aa4c10e3547e04f4546606b9728847e39a4a48901" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-musl-x64.tar.gz", - "hash": "01f7745fbc7ce21701ea6db85896e3e241d134dc92a413e668bbdc99d58e7d85a9310735ac2b1cce79ba39003b4c5f8a63b394546ce9be1d701b0f7ef5873e28" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-linux-x64.tar.gz", - "hash": "5e4ef5b428b44c0ce7ec39a5262dbb12fe8fe117ddb6241184ceef6e00213630f3f48ac2f00050843a802387ee96a7796b71bab28060dfc9c4041a558c52701c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-osx-arm64.pkg", - "hash": "325686ee33e800edb1332e0e15c98fc43cb1ed3ace66805ae304120b8d75fe7fd6e6c51b2e469c392dbd586effd53cdfedb83d26fdf0b930cb494f98ebeec9af" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-osx-arm64.tar.gz", - "hash": "834f60b0e296eb16724bef60ef891888c45662e85fc111d19e1694f6c526f9851e0ee9aa2cc0f9460a52ab27343f977670f997040d4c258c7eeb20767265ede7" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-osx-x64.pkg", - "hash": "2d4b95294a021e83d75e7d7e9abae3a54289800653e4cfcdeccaf210dd6d217656442024661da2daab44be917fda91f12de615c0de529a768cb64da802ab9363" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-osx-x64.tar.gz", - "hash": "4b158ed1f16a3e5ce69cd672b63244db14205ef91e56e204c1f207191cddce1e9cd03325389ba1d06fb35a53d0495db5b058edd1980a4f41132e45258bc1a187" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-arm64.exe", - "hash": "4af7127613c7f09c3ab79d67cf3744b4b9f1aa17f1a99dab4d101754152d8b9025109bd775293557a4d10fe16e3c3c284220ff86c28e5e1c5b8feb26e11e9568" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-arm64.zip", - "hash": "f30b382a0ccf2216114e8988bf48ef3cd025eaabaeefe34d43bee169783678bb51695b38523eba0d13c9f16bfea63f407e2e1a90618a492c53a104f575ee0f51" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-x64.exe", - "hash": "45fc325a40f5ec5e84176ba19cca47bbee77b4f688f1f666ba7caf1c5667d42c5c7352c5b75cbba0dd6579be40a905d635cda228a3cbbeb663b2d5a18ebe5056" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-x64.zip", - "hash": "08f69f20d1317d00395d8686eaf972715c333fa8313d87cf3480c26ae980c5a0fef0b080350f17f06631e895d37824e4040b331499b3937fec418c754eb31c33" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-x86.exe", - "hash": "1cdd2ffed1793596da5f0138010f145f1be5bec0c397147734ccae9e0ce33418445df329ef44b5c8925eec93e628279feac6322c67f5407cd6f8758420092bad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.114/dotnet-sdk-7.0.114-win-x86.zip", - "hash": "c93f08ba3639f309612e1280f3b0cf33145f39d80da5330ee7a5af05182ccaece2b52c0176dddab972e3b1ed7212f2f833ac45ff75c308b4dd390a5ec9c434b2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.14", - "version-display": "7.0.14", - "version-aspnetcoremodule": [ - "17.0.23296.14" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-arm.tar.gz", - "hash": "e93ebcdae84bb0877729218bd4d817a427603827faf4fc1901bb36220485289fd1dbb853c3dc5ad16f488ce1ab643f7798efa530e05797d2aee86003dce7feec" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-arm64.tar.gz", - "hash": "577d927686639241c00e2f07fcb11eb878d671e926c6fc058f879619452ab0af675db4c2dfd8aa9290f03cb11afcf5094be1beeb5fae491f50520e171e732a71" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-musl-arm.tar.gz", - "hash": "df4645f89aa8d4ae45a550c6c8b97f81d34b9e6c51b9b37b72b07e62e9d4a195b4fa7f6cd75956f77ce47d55273cbdd4edd51caa43f0453c43f4b0c43592a1f7" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-musl-arm64.tar.gz", - "hash": "4f7b441a8116f0fe4f6429f6aa5fa68b2387bcc9e59bb56c5c8bb53733f7c2e57bd45502c15f5c2c56d554f15543dbe7cc3a3faf9b1600f018b2d229030b8bbd" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-musl-x64.tar.gz", - "hash": "e3fdc0b57683c633e18df0afb70d3348c1a756541c7dfab6c763b9b9ac471aac7b34170cc07d3b989d80521ae3b0b5c2af1aea593b4e13079bfe678356933c25" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-linux-x64.tar.gz", - "hash": "00f55556cb580d81bf0059a61a642ed8b405452d55e94460c03a0edec9a4f608fd78561560e5fc5bf6e42fb1f45420eba75f8d102d8bd46686379dab7ffde6f6" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-osx-arm64.tar.gz", - "hash": "17f0c996b2e5586385b2e6cdcb187fce27e0c18f235c4198df9a2bac5475467fe6c9df6405e7cd75ad4bb1a5f6ce380e23330cb1a047c5930aeac9c6c89772ab" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-osx-x64.tar.gz", - "hash": "37f526b1192f67792aa413f6035a6e67bb42cbbab7b240ec0194a0640ca08e98546796e751fe1700990b2c2c0b71ddc3516571536f1110b4db47b2a1b44301d3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-win-arm64.zip", - "hash": "0a4db4b5d0deb16dff7dd0ba787e98241ed278117b9f40fdf84785f9e3c8ffa1d44dc740826a655c4d6fa132ea3381656425c2b9aabe2802faa251408c72444f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-win-x64.exe", - "hash": "2577ac9a1b3fff86a90ef46b2cc6dd36356c134b841abdc5908b73a806819fce53d4dc4bad8cabe16dab0b46606ca7bb16afca9de9224c669b8d7928318ffae3" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-win-x64.zip", - "hash": "369e2144f4d36a6b13f88cf9330856fefebea227cdb7adcbb123aee43b5c80bda441fb8b26c51af0024fd1bc175312d9b0cf63182c91c2b3e0269307653fcfe6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-win-x86.exe", - "hash": "26bbfe06680afa63bc8446edc98cd9b0bf1d3e58838a28af60743d9af9efedb4e1c1c939adea31ba402fefb55265878257d0ec63059e6f5422f1abcf34e6d024" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/aspnetcore-runtime-7.0.14-win-x86.zip", - "hash": "2c982abdf31e31f8359974408abc3d85e8ca8ece44a8d6bb6985673cb8ffba69ff9a1a494b019bfadfbbeeb9cd047f2a6049069c5312012d224e2f94d983ded1" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.14/dotnet-hosting-7.0.14-win.exe", - "hash": "3ca469ddcfe74957d20d09a97289539e3f5385ac3d6c5a5703b7cdb7590500863b630ca35923440503311d0a37bb25dd46216af524388471fd608c12a5cbe2c1", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.14", - "version-display": "7.0.14", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-arm64.exe", - "hash": "e221deb9d129bb37d890e9bdf5dec99487f1aa6b8c6b7545360e52f647d5415740666f2f9f57c2f165ad4e9f46d186ff609d7a3314cb15723ba5c6f7652d683e" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-arm64.zip", - "hash": "bf3052e850954bcd550ad475b180ef990b8cc624021f24a7820b1fe34ecdc71d1a865c32add6e621cbc68b9e65ae47eaa1bd71bdced475c113d9312bc4f0c56f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-x64.exe", - "hash": "cb43e9852e719cc2b42a7e3f265e816e20629980f3f0eee6b655558efefb7c8749aedcc9cd7c1f7cbaed5e228ff6d7d2a9fe3cc5434c9a19869dd50921c3bea5" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-x64.zip", - "hash": "f2aacd942d14ed22057df9d403ee6e383d231a68774457c30d258e0a043d65e3056ce4094cffa09f488fd56f4c4c88237b236a6e9d3ef358e6b778455ef289b3" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-x86.exe", - "hash": "6784176e4e341c66fb49321acef2261a4067360dee11a1c51989c701eac707bc58848abce8ef6cd934135924317e1432dcb1504f03c184648685545c9356f1f5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.14/windowsdesktop-runtime-7.0.14-win-x86.zip", - "hash": "04fe52b2cc9989b99f541ab5e0d62ac62a3d96bec94663a213d78cc0c8c76d578e801c660507dd5031bb9212709a0f94e61da5c522285554fd3c9f85e2109ae2" - } - ] - } - }, - { - "release-date": "2023-10-24", - "release-version": "7.0.13", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36435", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36435" - }, - { - "cve-id": "CVE-2023-38171", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38171" - }, - { - "cve-id": "CVE-2023-44487", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487" - }, - { - "cve-id": "CVE-2023-36799", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36799" - }, - { - "cve-id": "CVE-2023-36796", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36796" - }, - { - "cve-id": "CVE-2023-36792", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36792" - }, - { - "cve-id": "CVE-2023-36794", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36794" - }, - { - "cve-id": "CVE-2023-36793", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36793" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.13/7.0.13.md", - "runtime": { - "version": "7.0.13", - "version-display": "7.0.13", - "vs-version": "17.4.13, 17.6.9, 17.7.6", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-arm.tar.gz", - "hash": "408152af3f0a873f617ba5fe32b31dc1a5041c97b8cfe39957472a465f76fdc964b32fc198dedc8b60ea26d090b0b25eb5bc6783be1da17126ad574605287170" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-arm64.tar.gz", - "hash": "e3a465923ed3325f3d427a4737e0e23bfcd549b1ad2c2374e65a3d865553790e644a57a0aef676893050085a389a846737ce6ddf6f2f53e7bae7d3f6253c06d5" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-musl-arm.tar.gz", - "hash": "d91ee53c45af98dfe2467454909e3ae9503841b0bc633f342c29f7a65f3858916b377bce0b6f72704f65af93709b51d854ab37d794999a18dfd7799a1507a6c2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-musl-arm64.tar.gz", - "hash": "ba4260ee73877f98d9454fed5abe0d278ba1eb3527d1a95f535eedade13d4637a84d375d820ac868b9055570a3748f6be2040f264737af09d113be56fc708a61" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-musl-x64.tar.gz", - "hash": "5bd33d6c3948f76af32499169fa51919361d1ce010f682dca4d62ae970711d48b8c298447ee37b0a8363c578d373b4dfec457ac6d14b3e51f89578589d0d7720" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-linux-x64.tar.gz", - "hash": "00a0b9c101c665ea9e751ce645c68840b02450c4a9f268149e6f59da1f179e85f0932475b8a72162b5271fdfe2ddc88eb21d09aa78bdd7dc285983445503f758" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-osx-arm64.pkg", - "hash": "54689b91a921dd4c942e96b12f32acc9183d20e872042d1ce0430a1c38f1908042ff50bccd4b7e016f61674a1b8aec34e19392a1616f3575f151391687494b9f" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-osx-arm64.tar.gz", - "hash": "d0ebff0a46471ae1450de439b870b775e88901e05d3716261371e2283b5ae469bc03b71f545d08839990e7473517bb583bb6174215e412f10d873c9de5972f06" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-osx-x64.pkg", - "hash": "7459550027dd3aa515c9fae1588fb26917aa241df5e4d27081711ac4e954211b73a520febd6ec383177016e6325de0d1310d1e03c17ed46d2ebd19e3e995c6a7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-osx-x64.tar.gz", - "hash": "e28407e6e466ce8708a9648e59df6b574da5794c61418217edcbcd068bb72086761a7a9f09c3c35cca3f7bba9c8aac28c8cb6b64b6fbfefbc3016dc1f6292ab3" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-arm64.exe", - "hash": "167c7f897cffb701da271e247f25109d5ccc1b8602c14c01234e576608158fa65582ebd39daaa123f30cb5dcd878883320e216b339bd958fe2db0c2a27651e53" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-arm64.zip", - "hash": "2879545b86e2336a2436e065ee3afe33c340b474012cd296c59b5763bd9821ced543dba78ef1199a55f292c8e0d63da53a436eaf444521e5fabfd330e0baf841" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-x64.exe", - "hash": "32fd009b7c6e7d431d9d8ed865cc0e18ef153afca0662c7b4426c395fa9fd4cb3b816255ad5cf5674346fbf907e8a8f7fe37882bc8adb4a5414b39013e77806e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-x64.zip", - "hash": "a8ca0564fd95c81f14c248c5859e43d33786c93b817d9751dccbca1b80e79cf4c31efcd6906d7d210dc6e27adb3b77125a6e684ac9b23430de0eb11eb8b42145" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-x86.exe", - "hash": "2b3b89d4f3302af4866abe616d2b901ba887f93dfc011831c11ebdceb1e104b8737f052e17d4ebdd4fee27985603f86f319cfe1b04c6861f67a3fd031b4f6720" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.13/dotnet-runtime-7.0.13-win-x86.zip", - "hash": "51e680158d2dd627542640e3b159564be7b53a09c39e21d01abd33cdd990e6f13bc713d845a0ab46e22d2540ac08a937c86bbffabd86bc7d97633ec5471daa4b" - } - ] - }, - "sdk": { - "version": "7.0.403", - "version-display": "7.0.403", - "runtime-version": "7.0.13", - "vs-version": "17.7.6", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-arm.tar.gz", - "hash": "ea385ec550177709da9c5b58f0e74e54781e5fb6986abf4edfddf7e2bab2e5c17bba9e594a89fa0779c1ade75cb6f5228b980a21462ecbe461d2464b0835c4e0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-arm64.tar.gz", - "hash": "0980f3f888f1267a5dee5c916ae8d0931f0c6789f1e7334fb7b4d5ab27a1876ec014d30be8977d314e4aa7302b197dde09ed39cdc5ed84b366307148d5350deb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-arm.tar.gz", - "hash": "60c27d42fed8a75afe8b7b50f624f50eb41f3a0de1ad0bf222a3a373cb0ec2890f27913b2285ae8048238bf06bc4f173737feacc0b6b1ab53261757453be6b69" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-arm64.tar.gz", - "hash": "1d4de5c427ea65332756ee1de7010850c5de05e230a5c01bd972cca7a789d37231597e0c8d1f9c67af3585a6c72daa59db0309a73cd1c38c62b26017eae7001e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-x64.tar.gz", - "hash": "c496204bffb8c878ac22921d78d20a160edd4ce7bd6f5f4b9bafcec06e25a10e4f4a94e90d0aa7acf4c95319334245531fc93184506ad944ee5af1025c36bf73" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-x64.tar.gz", - "hash": "2e96fa4ee32885a4433be12aac0e10998f9e7f0fe4791f33cd31966c0e0d345d978514787a36c5f0f43c7754e9639a5d52fc96c9f44cf56c0cfc9a8ad2620dd6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-arm64.pkg", - "hash": "94979dd1dbf983ccad903e3ce4271b00ad946078b38995bdd9fe7026ca10f64e646a750882b41145ec7cd09bda3563c39b4502f40ef996b0e6eb44c80ed3ff9d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-arm64.tar.gz", - "hash": "6083b9f469dccf097a6a1bd4a264ab5438bce653ceceb54cfba25526845783e43e57e6b57eb6c7b4157108d9572ca62d8df2ecdbc1a0a36d9f08310b9bb3c9a1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-x64.pkg", - "hash": "9817d518832e7a4355b921c4eb24d77b3aa04c5971392783ccbe13ca3374cffc5b17d20bcbefe283f7d8ae5b36ea111469779851fd1cd4076e2e3a4ec84cab97" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-x64.tar.gz", - "hash": "50a38d89af656ac5a3110761182c1b8b6ca15821eb4fde8d0eaebb6dfbeb4c9046a80c00004cdbdb4e5165c6cca1f2c6ef0ca5ff84fc9c32b4c298a9f620bac6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-arm64.exe", - "hash": "e58ba00c08d5fde710c130d6021a9602466c2377040ee422066da5650679171e6433bf30cff3fe95ee9649ed7904a4cca0a1b77ec6375a624a23781a2588a25a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-arm64.zip", - "hash": "689db2a61055a9f1be14d1c2d71a4b3004c932dfef5a341cff95da5b7ca161c82a07b273d647771235a091fd92aee7ee143aad57a4a6f6eca44ab14e2a7a400b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x64.exe", - "hash": "c0fd35e39b79f6597c02fdb06bc7c0d4c0afd31dd5c6aaa2208c22dc3dd5eee4fc4e57d94a2059b26c881257178223181ec5d7d406b7c22c3726e568fabd8f67" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x64.zip", - "hash": "dd92208e219fcff20ffd39a82ecbe1f8b9c16963db2c675b64b87207bec54d12554da17e047fc482d13c2dcbedd13758c051d22bb2b1268299d066499ac543df" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x86.exe", - "hash": "b4c254fc09ecaef25befcb0c45c85b7311fc48aeb20628d4283986633dfbcf61710e8bd0a6d668e51faa3f72c54b56c0879a0c1e5d45cc836a35ddeb2610da01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x86.zip", - "hash": "afd64726ba46cdf3507cfeb268a10a70649a51f7f08121823bc236301038241706a4e8acb70c7aff70e1e14ef8e733718b087b26849aff95105423401792c694" - } - ] - }, - "sdks": [ - { - "version": "7.0.403", - "version-display": "7.0.403", - "runtime-version": "7.0.13", - "vs-version": "17.7.6", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-arm.tar.gz", - "hash": "ea385ec550177709da9c5b58f0e74e54781e5fb6986abf4edfddf7e2bab2e5c17bba9e594a89fa0779c1ade75cb6f5228b980a21462ecbe461d2464b0835c4e0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-arm64.tar.gz", - "hash": "0980f3f888f1267a5dee5c916ae8d0931f0c6789f1e7334fb7b4d5ab27a1876ec014d30be8977d314e4aa7302b197dde09ed39cdc5ed84b366307148d5350deb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-arm.tar.gz", - "hash": "60c27d42fed8a75afe8b7b50f624f50eb41f3a0de1ad0bf222a3a373cb0ec2890f27913b2285ae8048238bf06bc4f173737feacc0b6b1ab53261757453be6b69" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-arm64.tar.gz", - "hash": "1d4de5c427ea65332756ee1de7010850c5de05e230a5c01bd972cca7a789d37231597e0c8d1f9c67af3585a6c72daa59db0309a73cd1c38c62b26017eae7001e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-musl-x64.tar.gz", - "hash": "c496204bffb8c878ac22921d78d20a160edd4ce7bd6f5f4b9bafcec06e25a10e4f4a94e90d0aa7acf4c95319334245531fc93184506ad944ee5af1025c36bf73" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-linux-x64.tar.gz", - "hash": "2e96fa4ee32885a4433be12aac0e10998f9e7f0fe4791f33cd31966c0e0d345d978514787a36c5f0f43c7754e9639a5d52fc96c9f44cf56c0cfc9a8ad2620dd6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-arm64.pkg", - "hash": "94979dd1dbf983ccad903e3ce4271b00ad946078b38995bdd9fe7026ca10f64e646a750882b41145ec7cd09bda3563c39b4502f40ef996b0e6eb44c80ed3ff9d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-arm64.tar.gz", - "hash": "6083b9f469dccf097a6a1bd4a264ab5438bce653ceceb54cfba25526845783e43e57e6b57eb6c7b4157108d9572ca62d8df2ecdbc1a0a36d9f08310b9bb3c9a1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-x64.pkg", - "hash": "9817d518832e7a4355b921c4eb24d77b3aa04c5971392783ccbe13ca3374cffc5b17d20bcbefe283f7d8ae5b36ea111469779851fd1cd4076e2e3a4ec84cab97" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-osx-x64.tar.gz", - "hash": "50a38d89af656ac5a3110761182c1b8b6ca15821eb4fde8d0eaebb6dfbeb4c9046a80c00004cdbdb4e5165c6cca1f2c6ef0ca5ff84fc9c32b4c298a9f620bac6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-arm64.exe", - "hash": "e58ba00c08d5fde710c130d6021a9602466c2377040ee422066da5650679171e6433bf30cff3fe95ee9649ed7904a4cca0a1b77ec6375a624a23781a2588a25a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-arm64.zip", - "hash": "689db2a61055a9f1be14d1c2d71a4b3004c932dfef5a341cff95da5b7ca161c82a07b273d647771235a091fd92aee7ee143aad57a4a6f6eca44ab14e2a7a400b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x64.exe", - "hash": "c0fd35e39b79f6597c02fdb06bc7c0d4c0afd31dd5c6aaa2208c22dc3dd5eee4fc4e57d94a2059b26c881257178223181ec5d7d406b7c22c3726e568fabd8f67" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x64.zip", - "hash": "dd92208e219fcff20ffd39a82ecbe1f8b9c16963db2c675b64b87207bec54d12554da17e047fc482d13c2dcbedd13758c051d22bb2b1268299d066499ac543df" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x86.exe", - "hash": "b4c254fc09ecaef25befcb0c45c85b7311fc48aeb20628d4283986633dfbcf61710e8bd0a6d668e51faa3f72c54b56c0879a0c1e5d45cc836a35ddeb2610da01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.403/dotnet-sdk-7.0.403-win-x86.zip", - "hash": "afd64726ba46cdf3507cfeb268a10a70649a51f7f08121823bc236301038241706a4e8acb70c7aff70e1e14ef8e733718b087b26849aff95105423401792c694" - } - ] - }, - { - "version": "7.0.310", - "version-display": "7.0.310", - "runtime-version": "7.0.13", - "vs-version": "17.6.9", - "vs-mac-version": "17.6.9", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-arm.tar.gz", - "hash": "bd2963b5a6d7460384c83eb6d59beec751dd81658f10d47402e4173f0166fd3febbf562e2fbb82c81ffb8ec2728cee3a245adcd2a9c8e4b318dca485e93aa392" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-arm64.tar.gz", - "hash": "b44bbc7ba3a82bd34a8b75dfe8105c8a8b6351f67dd74982aa30364559dae47aa6a31cbcf04b4cc05954cde07650583a1d1e120a0d1f69357d9c5da8b65c7987" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-musl-arm.tar.gz", - "hash": "b713b2d1af5779d0436f14bdf46d3b468184bcf75af0f7ac3a7ab9dd118c3908e92b99fa9dd472f711312f0bd9445cd63dbd365427df08b58add7a1066030ef0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-musl-arm64.tar.gz", - "hash": "c015ee3b88b72be90907865c406b717da24198e21afbe31856e1f640343d579d2d630d52541b6cde940284e4be0cd557cb62c073f76b20a5d26b925e42e496cf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-musl-x64.tar.gz", - "hash": "090437460f090e8b6431190af719cc8ebc7799917db24efd656400303c24d17db352a4b1ac592b973141893da7bf9fcd990d28d1da9529efca3deeef72dc1dda" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-linux-x64.tar.gz", - "hash": "942e5673300926b358a4fcf9c52b4bac31e879be0f51623788002f2c4106d7c64f3b5626988bc8649eb4ce576550bbe848efe551342dd735a22feab23be86fb3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-osx-arm64.pkg", - "hash": "1de60eff6bc17afbcd1b986b903705e28071a627312e9a2b29692cbce4c201bc6d51c7472ea6167fbfc6c1089c9fae41a3f5416f2d183a6e599244dce5fa1546" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-osx-arm64.tar.gz", - "hash": "c10e2e944a66e8162fee7988d2ea2da9b5b33ae691be638d8674a544a0e9e67b5e2f016fa237f241874c5fe0caaaf93f185f5182cac8e1834a5b13410321f24b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-osx-x64.pkg", - "hash": "0eceac200cfab347ed7f65ccbb608516bb30124d6634f608494a90f7b0df8353a1f314195749379cc5c5536376b6963d8ee4f524c2bf2d51806f3b90c9943bb8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-osx-x64.tar.gz", - "hash": "c2d2bf703ab19560558da09ce3c6663aaf77bdf550846a1f4b5631beff0f1aed4088290a2d34c613460a3fb4e63eb2960496a1704e686468afda5d461ce91e41" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-arm64.exe", - "hash": "8cc3f6ee83d8e20ad94d0efc69ca7b0eb868279ba919c4ba3178995468d71873da7aaab38a93686e1eb6edcb32ac22aef47a45cca6f8dc1eb8799d66ca98996f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-arm64.zip", - "hash": "570ececacf635a718c472ca2aa12e29c1cab4d91ee1bb47daa4d3c66557e84a0e1a8a5ec0f9610e1d930372e885a649f7a75824a8715629bfed7f57c5c104bb4" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-x64.exe", - "hash": "93c8ab2bc43a6d345ffb242e59508d3e8453c73cae96d895494b54a7367c2a194c0628dc35e24ada2168944ba61a4a496346fcd89e6c0846f0b8dcb377c3aa05" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-x64.zip", - "hash": "7d40feeac681e17cff9572513158879e59f64662880912de5a39f4b385ff3da796c156b0a74a1d22f664fabedaec9fab89ed1a84d641a6b6bcf049f14f75c66f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-x86.exe", - "hash": "a9676814038ad62fced8631b1c8b15220ac1b95c7a3668397e9a6c5cc487cb8343ea403002c9d0eedaeea13bc91b0f26ba62f25614a7bfb6a34f5314bde97809" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.310/dotnet-sdk-7.0.310-win-x86.zip", - "hash": "44870585fd093e5776c8b7527f0267b0e853c60bedb99a201a0c792d30f87cf7af3d4bdc754a53175cd320330e9ba44a97560249a3cee2c7cbdcb2b4251ec507" - } - ] - }, - { - "version": "7.0.113", - "version-display": "7.0.113", - "runtime-version": "7.0.13", - "vs-version": "17.4.13", - "vs-mac-version": "17.4.13", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-arm.tar.gz", - "hash": "358ba2329ebaf30b237fb6e215579bc94dec385535a6919e4aa9f23fbabceeea0cda98a775eade5178953cce9063b3d528375abc43b1c153c3fd16cd816b1abd" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-arm64.tar.gz", - "hash": "f7d43d1eb7178545366ca51f45b7f9e05f438083987164132184fa614c681998a32b6ffc98f16b03384255dbcd731c5d213604f934d291f9717d890b115e212f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-musl-arm.tar.gz", - "hash": "607e9977cdecd03a4417773cec31b1cdbcc3316abd037df4d4c8df80205e3578c4ba7355cd4e010f5ec886f7e42898172fc468d2f6102af6a71d6e9de913d778" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-musl-arm64.tar.gz", - "hash": "bc09c623f0c6fec970ec7426511cab75fe3a82d78744e8559301654dc311b4d2a798d4a541d1b25cfb7e037682bb8fb38d758ab56096fbbad6440c403b8ac40d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-musl-x64.tar.gz", - "hash": "f8ff787fe4316601c5a80e103cfc001a051d68f12b5c70c5a735241607a8c571f42d0c85002693631e20fe06d16ae94d66ec639cdcdb3318f2813d45c8042255" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-linux-x64.tar.gz", - "hash": "a7c84c5b8eb2c32247ea0cf19d0120faa3a03a087948c78e35dc4673e91e061bb7b858fe52a14eed98a637caab86e8d6ce4e26f08d1c780433fc0501245cafa1" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-osx-arm64.pkg", - "hash": "8b89b599aacfaa10e3a0629cc5eee5c975ad25ea0eb0b74b8918dddbf84ddaa63b460d6df8de380c531a69a16d2ce8637fe47aad5de862f57876ed77cdc40cb0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-osx-arm64.tar.gz", - "hash": "e70e6009470731f7cab6248a69539f0c2bc13431e4f0fbd9528f2620a344ec95af4075deebae9a6f264150006984732d750d08279fbaf15724589becf09190a4" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-osx-x64.pkg", - "hash": "d5032688065baa6f937e1f5e3f8e3e4dfcde2631e46e9e8c4baa50bf527dd36154efbee56ccf1ea657a9ebfd9083c93f8873385562f00315fc5b5b002c95de17" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-osx-x64.tar.gz", - "hash": "562353fd74f5a968c7d0af79873c123eea23bdb99895f2e846caceffa9aa5c0c5b765013ca48a85a81d6051ab889fa3129f8b89b7d312e477e415d8403d8861a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-arm64.exe", - "hash": "ee79eacbb16f740aa58560932a93500b91caa2e9a5a44a9f4869fdc149460ea6aa50ae8d610d1fd3cbc83984f1764ab8344e8d292e8f164fc4e10389f1196fb4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-arm64.zip", - "hash": "ce16ca5418d5daa62e5a3d1d45893f05a02dd1f9409444e12693f94c239e654a13790d43cbd0879ab2b2a54eb3b0e8d7c5b52267208e3aa432443d4d30ac28a9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-x64.exe", - "hash": "de48e59cf05402522a3874acec6995a1e79f4678ef94cd88c67d1fbad3dee14c0fe12e874c9dc33f06c17135a9e110f4250407cb2d2c1cb13b30dfc0ee564913" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-x64.zip", - "hash": "2eb1ed81d9b207466ffa9d607109973d41531989db7b4c61047c2cd6c3d478ee0fdac65d306a707f6e44b0e3489f8fb9fe15285eb6875e98774d904915944b0f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-x86.exe", - "hash": "5b5f27270e53426beace192966d9f210a1698f0de86f5457bbadbbe7bdb6c4e91e809bffa9e59dce84db2d848c1ca33702055b200aa4e8270c1538cc8a3e7531" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.113/dotnet-sdk-7.0.113-win-x86.zip", - "hash": "0eeb218cc1de3bd955fcdd3e0ed39e32ede550fe4699c4a22df7d5abfeb00ed6a7faf3f53b04b59fd84067dd177d6d460a5e967d9fcb30aeb36adc4af262927e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.13", - "version-display": "7.0.13", - "version-aspnetcoremodule": [ - "17.0.23293.13" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-arm.tar.gz", - "hash": "f60ddaa4e4523f991196e334a23d5155c0967053a99406c88bf423f1e5f3e6242edc5168cc51fb9e24da3fcb5406f4d38dc8d30073bd5faed42ddac9ed06b045" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-arm64.tar.gz", - "hash": "a091c7bc7dabf944ad2888908e8becb0b9ed6a8f3f0475c845559804bfb35d6d76fb81ecafac4d9a589b64837258304d94d5c412ef8c75e138582072081f270e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-musl-arm.tar.gz", - "hash": "f9b4690190a27e5ad997a6e0a50d32b4696775331dde1956737c8ada110e228e6467be94fb48d2ae31bc96afae780a1fab221629cf4734fb07cacd95a38ca6cf" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-musl-arm64.tar.gz", - "hash": "fb4acdfeec1043b280e9dfeeb97a8adfd3129579b87061dbf188cb930f4878914eadf724f337bfeda645bbd1eb8bd1eec5413301d07801a3c727b41396b09c52" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-musl-x64.tar.gz", - "hash": "793667d9677631afe9bc1346388a44d7d4349f557bb7a3a79bed4c0c149dd26910a3dcfa145b52c188e089f95f413972d9f9350bc21017ced41303354ab06e46" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-linux-x64.tar.gz", - "hash": "930c83d7b553529f37b1516848f64ac5bde479bc5dff5e89edaddc4f7b552924f9b51b58367df8cadb9055b4a7220bfa5a4d39e09fb6b51f4bcacf3b82416ba3" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-osx-arm64.tar.gz", - "hash": "6734869eaa22f163d8fed52ea3b1f11f22ceb0876337114a0b9927a96e4fb82f826b6ddea3dd7061ac02da2e13c32c9ae6c946ca5ce53007869a97c0cdae3f94" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-osx-x64.tar.gz", - "hash": "d635ac072df5f5cf587470c656b6a55e880eeba2f00c12cb6e239d7cbd0a52d92b094379de80ff60fea426049d96e54e095417f089890eb92630d3c07a20a67e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-win-arm64.zip", - "hash": "1343010449b826e957f9a06f322fb8436fcb299090e9c0288f1ef4274c337c4e4e88c71ce8fb67f293674b5a6193123e5038bccbd29ae8592c469b3e25adbe33" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-win-x64.exe", - "hash": "fb5784cb7aff75a26640272c1d1ba8111f915af8554d67f4ab40c5bda38265c6e119f7fb8e303994a32e6154777083c57bba0626a4fe9d703623107a4dd08f4c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-win-x64.zip", - "hash": "00569b7d513eca9a58337a1b4ff3afa0791ad3c8bb5d9eec03ef3e26a15dda5c471b8fc44414e3eb02bb5e4af9c0240d5cf196d32e43dc31bde5c78fb2135eeb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-win-x86.exe", - "hash": "8779954cd7ee7f9561f8d0f8f434279b2b91646fecb678ca5e5fac3029372f1b5a7c5aca7c18df887654fa84ce0ee75b971a4892f291c67086ab14e30dc49c21" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/aspnetcore-runtime-7.0.13-win-x86.zip", - "hash": "9c142da6384fcbae5641c6741640ba0208cbc7e3d78e8e47dc58836a06e93f1497946e7f2ba47a0459986c0c3439dcfaa7c6352556ebe67cf72d284e8c9eca98" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.13/dotnet-hosting-7.0.13-win.exe", - "hash": "a2d7817edf624e89d17b90efd04da2da613a8eb7404fc58beb40036a417fafa36ff1efbc4ea26047d50d6570e7da954749cd4bd5473dd2663c5efd2d0425ecc7", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.13", - "version-display": "7.0.13", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-arm64.exe", - "hash": "87fac539d227e95cc04dd9f91722da3cc996c063e35a11b1f7086157529da2a856817c49c62994f268e947d540e316becc4848a2507d27ad49d0c214ca9d257b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-arm64.zip", - "hash": "90bea85364a4e70e918fd74011e002f871434da7fe1fae755240463b41e821d07a03adafde0543ca201eb4b0f4574b75426c4d2720dbbdbc99f30453fe54d489" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-x64.exe", - "hash": "66b252ea80571d29be668511c131f03c2d4d0d99c018ad21471048c96c5d41b175443910099e8579c4356562d7ba92793e971b510e4372d709b1ef549c0cc523" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-x64.zip", - "hash": "3f8247b99cbbcf6650997f67e93e5827d23bbc1f9e16cc2c4b2e800a90617b1ea9aee8569f7a7a9f0c112a5403bec2f23d366c1c1582b4373d80d874f4fbb678" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-x86.exe", - "hash": "8dc11bb954eaeb67c67f118754872c58d30dce82f39f83fa4b4fd808c4aa4e249eb3fbe18f1ffbd4af39d8bdbb44a0a1a08232d02d4cbbba456f7e531bfbe3c7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.13/windowsdesktop-runtime-7.0.13-win-x86.zip", - "hash": "6c488788cfc7754ef27088ab08635bfdeaf3f10954f433d2fd5f61aeb97213e2bd441872e1d63b71b10c9b147ac2b989d9f78f20ed4728bfd18300726be5a633" - } - ] - } - }, - { - "release-date": "2023-10-10", - "release-version": "7.0.12", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36435", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36435" - }, - { - "cve-id": "CVE-2023-38171", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38171" - }, - { - "cve-id": "CVE-2023-44487", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.12/7.0.12.md", - "runtime": { - "version": "7.0.12", - "version-display": "7.0.12", - "vs-version": "17.4.12, 17.6.8, 17.7.5", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-arm.tar.gz", - "hash": "0db5653b93b3c7b2dd4a882e212d7388f6e6a9f689555801e2e0441346e3686aa95eca9fec103225bf5e78b620b5cd60d651b4a0c0ea7f9ac00228790a83a154" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-arm64.tar.gz", - "hash": "d1afac553d13e25b2f5155dcf336375f0ba174e31b915c3425502eac98ef667c3cf631b4265f84e095407ee47508804aeb389f377e694cf5472bbee22dd2630b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-musl-arm.tar.gz", - "hash": "a28de7edcdb0a10f242212604ebc1946fecb3db1eff25b01b56a66efe02477af4e3870e03132288ddbc33221cb1ef13bf24d3ae7059a71d46b699ddf08f6b0b0" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-musl-arm64.tar.gz", - "hash": "62c80c4c368f4ca1ccdf3501b8f3caf4f7f4cac91214fc6186750c997c76da8425f4ad1732dab7935e0187610a70ccc78ee3d2885802cf25d71e745d1995b9e3" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-musl-x64.tar.gz", - "hash": "012e228b5809a5823ba50f3b93823d343da51f09e32c94ef0c1389870ee535ef0fc603e4f13812c75cb5c0f1d942601e8ba3ab4c423c631982d36252eec7d3dc" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-linux-x64.tar.gz", - "hash": "74bea25e88bd917a733a6899a3b3c9ac40c85a64f82dc0f36840714669621716afbb8fec6c3c398b1ffb522c0ed11958862cff5a4be0bf6268188cdb276bc109" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-osx-arm64.pkg", - "hash": "626fdfab8d74945f3babb0b971d70b88f8522e5579d7706b320936d4b655fee2b83f6b4ac0d05318f48cfb80ab7766e422e989f985f632f519699e793bec2a59" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-osx-arm64.tar.gz", - "hash": "1e67012c840d4d7d535558b4f05d94e80e36699c3f4e9cfcb5ef12a54e038bcd1c5d7cadb9bc4c691eaf2663e6d52806455a659637d9afe9277aa8e82e095bf2" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-osx-x64.pkg", - "hash": "10a744f5e6df7eac2c4df4bea68a01504da35223b5298d124deadbaaf64c6ff32ba28cf99934ca538d059b2f458b60581ae4d8a06e5ef177d91fc5d796a6129e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-osx-x64.tar.gz", - "hash": "3cfa807b64eb345ff104f33d7120d7d973443d40aedfe5fb49c0b67adb69f743c18a6e762a8463f59ee29b4a291970e8af48f97f841a94ed220809b56258b0e0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-arm64.exe", - "hash": "f1e258c048588fdddc4141545bf44d2288ba99d798f8d24d31eb03691e73a223fda111835dafb84af7234532546792320deed5a95dafe9ec2254035a05c2c4a3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-arm64.zip", - "hash": "cb2ef37a69644c0e63edbe2dfdef335d3e8704bde81b438906b8f44e4a3a77a8dde38cabad33afecbc5549365367928e0a093e08264088f4e302eff668eb0f18" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-x64.exe", - "hash": "87b6ac2b1356a48be409c89c11a44093e124a18d8dcca8afa49e7da9dbea416b0024dc0c12fdd44b9047c3dde38979595a301d3102a4f6110132e610f468a4bd" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-x64.zip", - "hash": "fada96dfe5c0ff99799032b21323b0c75764df8c7991e67c0f2757a0f4d9946c68dee07831a0bda7e884713749150121d618973d14bdcc915d389799b36848bb" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-x86.exe", - "hash": "36f49b417d30a5901ae18fdc7ed540ea88851ef449f34460f580fedcdf0644365989ff0d421584e3a52da6eca394a1327b7c118f4b2b053b875d2064fbd8a1ad" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.12/dotnet-runtime-7.0.12-win-x86.zip", - "hash": "760f4483b9848c2165be30ad4623de4099529fdcbf61c4e6c1738dfe22e3d776ca7ced89e4d7485dc0337c988b1c3bf1c5757a01e97d156df4ad0cf848226244" - } - ] - }, - "sdk": { - "version": "7.0.402", - "version-display": "7.0.402", - "runtime-version": "7.0.12", - "vs-version": "17.7.5", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-arm.tar.gz", - "hash": "303b228e4462b163ca7d33a774f42564940f9409e3866c35683053d002a45f690557d4f0cfc4a9c03542ac5d89919149ff688b692ebdef055456d9c63c97129f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-arm64.tar.gz", - "hash": "6de003fa4d2dc145262ef390737f1da6ce82839e5d8f59207ffd6d6f68b3189faa0891cd02ffa478c0a857400725256656f3f776049246b2a063fca46a9c3765" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-arm.tar.gz", - "hash": "56a953b385a976870ec729c9e56b2ef1fed812b2dd7d156a006ddfdd6280d15eda1a7162d9d14923687ef3fa0b3edb2e5fdb00fc1cbfd61c47724079176803b7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-arm64.tar.gz", - "hash": "695ebfc35f556973be2c209a773e539455f9ab419e4679930d6e8f848e836fab67a5db596e29d0f7104dd61dbf4843d4dd09ab43e0fc685c852109646d9d09db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-x64.tar.gz", - "hash": "008bfc594654fa25dcf80590c3305c72b208dcb4c78ec99220f7eeb8542f0af14bfe78c829b866de3e63c116a50c3e46a577f827ea4da6e77f427ec86e943049" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-x64.tar.gz", - "hash": "0c4d654bc7d440f49d14e6e3ea71e636bb37c92c1e835ec87879350f5b00d68465a05c3a2dc078252329c3953a131bc4c2bca6b1d2303ca5af14d3d88a192245" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-arm64.pkg", - "hash": "be1e701bfc2e27a43df23ca4d7618820d273785335d128faba855e723b60348939025e74391fcd69c6ca32002c79b36e316ba2dc822e930a5d1a1275a44bf53c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-arm64.tar.gz", - "hash": "7a690aef32d244c7fc61fa51bd5f2b733f013e4f354e73937b8b6dd2f4e08afd4bbbc5b51b3875c94fe7a0d2cfd65ff779eca23d47f012c766a96854771ea143" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-x64.pkg", - "hash": "7749167cd34021a4001f1b4be6a9796da1d4135202aa26d35e6a786f8fcd65762b71b1e01dbc70e90fac40d6b1efeeba4b7377abdfad06d76c013a13f5834683" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-x64.tar.gz", - "hash": "c4f3cc6037b369f2310231d391fc2f102c7abe5ddd7c048a25431785abf6905bf0f454e124819bc41760e5e1d17585e1b8078abe8c19baf21e8536db00afce8e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-arm64.exe", - "hash": "03ee548affb1fd7ccd62da1025ad07b73386a1e2764a31f95e258ca20b48591314d7203c608409eb1938f47d3df30cec974065419860e90d68c35854cb6644b0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-arm64.zip", - "hash": "dc0e879f0642a00c1f78d1a36e1b4fca8413fb1d6624748c1b4692272a5cb97ecb430d55088ac3666b733aadbc2249efa712df5eb7b7b8fff155f8ea6196d214" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x64.exe", - "hash": "65c2bb8ead6a7b5aee38c1001e832b55dbdf1934a19a8b93544eaebccc32784b49bb360e6fd61bcbbcabe4197f7748cc595c7dbb393e5e0feebacf13d2e241d3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x64.zip", - "hash": "be3a8f7654a6fe31832c50681849faf9c309b730820fe273e4afd4833fd6559b0f41eb6dffadcbeac5a51af9bc5b0d367b98d2223933719c649d13e90b9c0721" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x86.exe", - "hash": "f03f161964105128c0e454fb2cf3c53dca9505a8c7840fbdbadf85ddfd3e6c08f5d9b066e9167126828189b595e3c2292a25536b00223f07080d91108acd84af" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x86.zip", - "hash": "53f71676dfdacced6c82b63e33892d757f7ae597aaded8db83df7562941b66302c05eb3d4bc45fe3e57a62d0379f7a551a94a3a6befc874564332d6f3e7cc9f0" - } - ] - }, - "sdks": [ - { - "version": "7.0.402", - "version-display": "7.0.402", - "runtime-version": "7.0.12", - "vs-version": "17.7.5", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-arm.tar.gz", - "hash": "303b228e4462b163ca7d33a774f42564940f9409e3866c35683053d002a45f690557d4f0cfc4a9c03542ac5d89919149ff688b692ebdef055456d9c63c97129f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-arm64.tar.gz", - "hash": "6de003fa4d2dc145262ef390737f1da6ce82839e5d8f59207ffd6d6f68b3189faa0891cd02ffa478c0a857400725256656f3f776049246b2a063fca46a9c3765" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-arm.tar.gz", - "hash": "56a953b385a976870ec729c9e56b2ef1fed812b2dd7d156a006ddfdd6280d15eda1a7162d9d14923687ef3fa0b3edb2e5fdb00fc1cbfd61c47724079176803b7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-arm64.tar.gz", - "hash": "695ebfc35f556973be2c209a773e539455f9ab419e4679930d6e8f848e836fab67a5db596e29d0f7104dd61dbf4843d4dd09ab43e0fc685c852109646d9d09db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-musl-x64.tar.gz", - "hash": "008bfc594654fa25dcf80590c3305c72b208dcb4c78ec99220f7eeb8542f0af14bfe78c829b866de3e63c116a50c3e46a577f827ea4da6e77f427ec86e943049" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-linux-x64.tar.gz", - "hash": "0c4d654bc7d440f49d14e6e3ea71e636bb37c92c1e835ec87879350f5b00d68465a05c3a2dc078252329c3953a131bc4c2bca6b1d2303ca5af14d3d88a192245" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-arm64.pkg", - "hash": "be1e701bfc2e27a43df23ca4d7618820d273785335d128faba855e723b60348939025e74391fcd69c6ca32002c79b36e316ba2dc822e930a5d1a1275a44bf53c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-arm64.tar.gz", - "hash": "7a690aef32d244c7fc61fa51bd5f2b733f013e4f354e73937b8b6dd2f4e08afd4bbbc5b51b3875c94fe7a0d2cfd65ff779eca23d47f012c766a96854771ea143" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-x64.pkg", - "hash": "7749167cd34021a4001f1b4be6a9796da1d4135202aa26d35e6a786f8fcd65762b71b1e01dbc70e90fac40d6b1efeeba4b7377abdfad06d76c013a13f5834683" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-osx-x64.tar.gz", - "hash": "c4f3cc6037b369f2310231d391fc2f102c7abe5ddd7c048a25431785abf6905bf0f454e124819bc41760e5e1d17585e1b8078abe8c19baf21e8536db00afce8e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-arm64.exe", - "hash": "03ee548affb1fd7ccd62da1025ad07b73386a1e2764a31f95e258ca20b48591314d7203c608409eb1938f47d3df30cec974065419860e90d68c35854cb6644b0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-arm64.zip", - "hash": "dc0e879f0642a00c1f78d1a36e1b4fca8413fb1d6624748c1b4692272a5cb97ecb430d55088ac3666b733aadbc2249efa712df5eb7b7b8fff155f8ea6196d214" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x64.exe", - "hash": "65c2bb8ead6a7b5aee38c1001e832b55dbdf1934a19a8b93544eaebccc32784b49bb360e6fd61bcbbcabe4197f7748cc595c7dbb393e5e0feebacf13d2e241d3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x64.zip", - "hash": "be3a8f7654a6fe31832c50681849faf9c309b730820fe273e4afd4833fd6559b0f41eb6dffadcbeac5a51af9bc5b0d367b98d2223933719c649d13e90b9c0721" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x86.exe", - "hash": "f03f161964105128c0e454fb2cf3c53dca9505a8c7840fbdbadf85ddfd3e6c08f5d9b066e9167126828189b595e3c2292a25536b00223f07080d91108acd84af" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.402/dotnet-sdk-7.0.402-win-x86.zip", - "hash": "53f71676dfdacced6c82b63e33892d757f7ae597aaded8db83df7562941b66302c05eb3d4bc45fe3e57a62d0379f7a551a94a3a6befc874564332d6f3e7cc9f0" - } - ] - }, - { - "version": "7.0.309", - "version-display": "7.0.309", - "runtime-version": "7.0.12", - "vs-version": "17.6.8", - "vs-mac-version": "17.6.8", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-arm.tar.gz", - "hash": "26b7d52d3c44566cd7e19cb4095b73168352b6d5826862fca8126e1ab96701e8c311eb9181f8503fdef5013fa16ff12541f1dfb486010f2232475cbe8aa1d1e4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-arm64.tar.gz", - "hash": "3bb4dcd15d1bc32965badce7bbab4dfaf4bf7f320facb358b87800e4e29288af3b70026ad4a245fe10fc78b8171fdc716d957bca88c47316a5b9eb5147afa0f0" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-musl-arm.tar.gz", - "hash": "12ab00f871caf75ef2832b79e6f640072b5a397f9fb8bed4280873a4c67fbfe1d43d709c5cf0dc7f63dbaa6bb4c334c01db1973dd1f0a577487ceae0ca6bd9d0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-musl-arm64.tar.gz", - "hash": "1248727ffacbfc990a1f0bb0124f83a5a87f02fbbbf089400e2056c0c6e581478193eba65aeb873c357e2260e961c7d5a71d716d22d825a39d1f7cb3467339b5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-musl-x64.tar.gz", - "hash": "0769afc436963a67841f4c4a67ee15b66555f46e87e3f94c0b03b7c7edaeb58384fd46ef10d8453589dcfdcb41b830e8edd992f8a1051d1b59a0cadf66334295" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-linux-x64.tar.gz", - "hash": "3458c9e769b292ff3000551ea6f34501219cf7e4c22586585e0dae0be87b9bb62bff2a8bbd35d35abb88dd9bde4ad46860e17fc870aee1de78ca0f58edbe95ce" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-osx-arm64.pkg", - "hash": "a6392693048f0d127df9c31dca394c94d3951021a45aa50342c25d3fe45c22e86a33690768a63cac01ed82803e4e49b678251669b11fa9c1459fb36b18651fff" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-osx-arm64.tar.gz", - "hash": "ca350c0ae5434ed64d1e4ba68fa5ae1de6f78083f5aefec628173137013e04b21f0005afcac8d4031a390b04dc5be0623b476c8a90b36c00ec5a2d37485e245b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-osx-x64.pkg", - "hash": "ab44b30816ff05aaede132c7b88c0bb055ca780effaf170e37d2d744ff1fdc941106a1636b7f0078d5973cb1afc311915df928ec44dd1d7aa12520cd5326c16a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-osx-x64.tar.gz", - "hash": "ea3966e05e85aa79b603a4bc38cc3e7d864970e94dd53c6a96e9594d8a92c7b2d79f5ee41bf65791871a189f8caf9edb99046e19eee82952bc48cba1964fa694" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-arm64.exe", - "hash": "616cdc87bc6a9ae976c3e588d3b798487f34878e30757b9edbc4ada927a97cf009476b8f79d618026b4ade8b062faeacac01ac61bbaca552fa917ac164259896" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-arm64.zip", - "hash": "71f75431f730691ddbd6b69dc6e5812b8064b2d9e8271abae3aa3ba54535d2d6399f05234e9a909e578b1d04cd8e1b994da23c026d6cd1285ab94946ad397609" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-x64.exe", - "hash": "ef43ccfdd17dd0a047da3333cae47622a30c50275022167d07cac35db67a9d6ab86fb6831676c6cf0c8d2117460d54b3163632d0e48cba572ca4f7a7a4631e43" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-x64.zip", - "hash": "0474bc54e78566cba2576b56e6a4fe529092c7b62cbe6a313a6a74879a824b937b25e18721f88e689d41c269a0bd4e16629551b37680d8134e8e662b7ae11d70" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-x86.exe", - "hash": "648c4f7ffe101675fca2276026c1bf2b04489046e3bc65c5e64f187857315131edb4dfb6cc937d7f6fa8d44a6c260fff7552d7db343ba3f91dfed2e9b2788e80" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.309/dotnet-sdk-7.0.309-win-x86.zip", - "hash": "fe6651be8a0e25f8ff1f6c3366162a03b52cf1902e814a5272b5eee7cfd5a58b07147150728618617c37d06d359de1235fb4a90fbfc729507f0241150d0a3d7b" - } - ] - }, - { - "version": "7.0.112", - "version-display": "7.0.112", - "runtime-version": "7.0.12", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-arm.tar.gz", - "hash": "f291d861b454438b2da3d0538b4e48b236cea54f4d51b6bf148d70a1f6696c84402c352316009abbc5bff015b6e46ec66fdddb83ab33159459f15425bd0b0814" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-arm64.tar.gz", - "hash": "572ed16b4c2a2cb2e6159005c6852b66e33bc595c147fc723c5047a0d9d3e86b1d5cc034ed68d7ebc596afa6c307666e6caca865f03c97ae8825e45fe798b0c5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-musl-arm.tar.gz", - "hash": "5dcb3f3ae16ad08f6649511af09ef2d39b4f00bd124fcb463127af04c3b125c533b66bb027c41cdf3ba3ced6df4920a93f972685e6b8cc9a8dd5499c534311ad" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-musl-arm64.tar.gz", - "hash": "13239603b4d171ddb8e4178789571b49502fce386f61d0b443f8c2b2a5b95e2d50524c22cb7ee24cf91aae1b9ea1f17ce71ee41d679e324e6e54cb8fb922e979" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-musl-x64.tar.gz", - "hash": "0a9ec5ddcfdad16b01b85e908d048910027365e18b0049c936ac9463c37ab073c634f9dd76c644334782d2d349e136cd9adab3dc7b499af10a64b1adf7b76184" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-linux-x64.tar.gz", - "hash": "6100bc9cb4eb64620aee0d242e8d715b9fedc8da4e190de4e5c783ff63e638011d533901bf528db422a6210cb38c38c53d76d76df6c7b8906808ae50bbec1cc9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-osx-arm64.pkg", - "hash": "e50af20f552f1b82fee1a36bd48be91f381d6171387b024410ed146063c23a31d8d22766a877365c7af4a4d708f7251b70a485b80c5ba5d30dfbe695f58c9ac1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-osx-arm64.tar.gz", - "hash": "a4965fce604dd58436616825b38c708db5a3463500ed738a9f0a0048e12857ac45de2a133f969cf0ea976a3e266f0836bc39c623ce17d1e2f7c9bcb2a27bf632" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-osx-x64.pkg", - "hash": "379b3ddb2bc1e48ed5756e805e1e92e457ff29aff96ce504a8a11194f3b790afa54f9c0196e3a96110aedd8658d9189065ee4600d56864f40877af70a2a35e21" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-osx-x64.tar.gz", - "hash": "89e11435edd13e401e4f394c804787ef47ca030f0bd7dd5ea59cdf28af5dc90bd025a50b58fb6b81ae3b9fe0d3ae381b22caccbabe5fe82daa5d56d1bfa3d05a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-arm64.exe", - "hash": "01becb13a70466b0b9f454f6ef661bec60c24f0d22ccb82971557dc9adabb038135ac53862235950e83325bfb6d4fdcb298c366fdf7f7a03208d10d6244a038f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-arm64.zip", - "hash": "f73a21e485735e42226c50ee93db4c0a6ea768a3fc0eca0dc17413c23f5a6c02b4615ac339a0b57bca20ecda1430389033c26d2325ba7dd47e7e4335342508d6" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-x64.exe", - "hash": "50c46de170af9644872f88540998767ec6d858db474e1b3c0335c38a914ca466d579c048666ec0a1a1a9109669ebee3cf6c65feb83109eddf479cbde6815ccf4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-x64.zip", - "hash": "55ddac573911484b377e3a3aafbe42efab866e7a065f50bcff9c7dcb9dad743522853b5739972cbca303312a808354d4f4f5c1c09792eac85fc8e679a9533170" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-x86.exe", - "hash": "8e8ae769b5931ce25495ae8eb65b13126e1b71406491cf4292318a413b752a04d8029eca20a95fe803f191f96d1b6706f16023902ce792635053ca64358206a0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.112/dotnet-sdk-7.0.112-win-x86.zip", - "hash": "0a5f13aad0eeb42cfd150bb37c591416959e3b4c4290d9e12a2ac9824899a19673cdbc235bcf669084642e965426142acd47657195f1f0a485c4ba52fbcb213e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.12", - "version-display": "7.0.12", - "version-aspnetcoremodule": [ - "17.0.23273.12" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-arm.tar.gz", - "hash": "a622165880cf678653fda29960a5dab090216bd6df18976c4c83212880ea5ece34981348101c96c566c611917f1df0e083c90950110a7fa20935a1c92e61fa74" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-arm64.tar.gz", - "hash": "b302afe999bbb33a846222d52b5aa90c2538bd4ff6eabd431e3f50bebf7f501c3793ca2d4cea1c8f0fedef87fa05d045af63d947653e14c59fa33e23d297012d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-musl-arm.tar.gz", - "hash": "b7375b66b2a42ef99cc5290d697f94facae780f9ef08ee98b6ddafffd400ca6ce0b9cb92e34aac4acbeb70326752e842958115fe8a573889a2f120a7c47facc5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-musl-arm64.tar.gz", - "hash": "fa061e5fc279d95d600452651845d6297c9bae6776a9ed6562a681b272ea8bc33850ed005cce3cd901bbb940b2d012fea082aa83204e1684faa90b71b274bc6b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-musl-x64.tar.gz", - "hash": "a20921e3b534357938f93f368ef0de6eb5204208ece423697f28952176352b246dec43b41c95251b00769cf6a54f87bdcff48704f20a147759aacb3e6b58de3c" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-linux-x64.tar.gz", - "hash": "4d5ece3f1c0c74f872f42a98ebd7e448ae2ed09e9fec5f29a5ae2781ff16dc8486064eb43a3aa6e3da5cf2c52745f93319c55cf3de883f82cf8adfcd6a9746d3" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-osx-arm64.tar.gz", - "hash": "f64e91e968858ec60219761635d2b4062926dc7050c206619a972244c5fb8ae016ec1b48e0a29e61b13e61ccaf7ef1ee27ef7ed4ba96b771a42d43f32b6965ae" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-osx-x64.tar.gz", - "hash": "ae1e0adddbd6afea3a0f6974433021e3b49e32ad1c56900b1cfde8f656fb645b3ab966cf42ce95b1829fac05e9556cfd4ad1cadb5dc5d1925c157b54fe8c5b95" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-win-arm64.zip", - "hash": "853c7b074e9dafbf708eda41b4d2a80f1a17c02e4973216b42c1ba4f95e2bf0325923d76925bb7b26108e8cbb2d98dfc56aac47b45c22db059b8d673392a4e67" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-win-x64.exe", - "hash": "8b77e3d3084e5b5904a8e18b6294bec1a8ee9a3ca52713a9237ee411737bca7bd890d2616a92fc4d55fdd4be2097ab05b0e7e88f48cb36699826ede5e16f7899" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-win-x64.zip", - "hash": "26922d51f80d95c618271e0aca0efc5344dfa684107ddbc84a43ca16b80c92a4c0057754f09a9a5e3cd5ca0c62905638de96aafd3edea5dbed3f7e664f2aa79a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-win-x86.exe", - "hash": "7ee68298dfa31c65968a9d89d407d73581b1262bbc568c02eadcc85b40e4cadf2a1526152a1f35e91fa978feaa269895b3f50445f20ef680feec5fd9cdbebaf8" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/aspnetcore-runtime-7.0.12-win-x86.zip", - "hash": "284b72d45b536e09e6f791819e5f2fea2ba3cb6d32d5b36c2302eb3fd0b37ade1c26efb4e19970097638517a6460d2d69444a4da5d0b2f2305eb2b44b1fa63e8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.12/dotnet-hosting-7.0.12-win.exe", - "hash": "0f5a13d51118f5b2dcca4750f1658bc8c3c704c76d78b29144ae71f37176a0670d31cac32e385fe2e30f2f4255aff88e152d1d223ea9e7d76f45bb327fd7fa63", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.12", - "version-display": "7.0.12", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-arm64.exe", - "hash": "1623a026b9f247dd503c05fafcd8ce05d7a1fd6109eaae0d0aed00b579729fc7084df23f5a60dd300d5ba23aef9c50b4ebb0871b3e26f682da406f2f72afc65f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-arm64.zip", - "hash": "ba0250f917b35063f3501f95ae622948c4b3a8f3bc4f1500865470a0077af13d72bd1af9afb673b07bd343a0f80748a2afe721cc7b74539c5cb326f45ae03a33" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-x64.exe", - "hash": "a366e858eaca7330358ef5d7a7efada45cc64284e36ba9f7722fa1a1644b1b34b343e700ce718ef67d08c7abf718eff7aefb4d5909ca7b5f63b4056b132c83de" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-x64.zip", - "hash": "7b2d8920fb126afd9203d9eb6278f5569dd092f70a5b9297e0f7b1b67ef68f00d5b65c89f1dfb38ee463d07a6ffa7f3110a893a8c18363adb6c31ba2c771aa9d" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-x86.exe", - "hash": "ce33129b2c6efe948b1eed73d127e3a5b0bd0af727474c2b8971b9075e37137cd985e58d2e47b9b1f0152a527eac98545e6cdb40054a34a6e3286601069ce259" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.12/windowsdesktop-runtime-7.0.12-win-x86.zip", - "hash": "0bf82c196cdc870ff2bafa03026673c597207a1b04be3d87a89eb15aed94515ac8a11d7a9ee732d881ea8311ff1ba8594bafa9c0edd7c0280ec1316b3b99f143" - } - ] - } - }, - { - "release-date": "2023-09-12", - "release-version": "7.0.11", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36799", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36799" - }, - { - "cve-id": "CVE-2023-36796", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36796" - }, - { - "cve-id": "CVE-2023-36792", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36792" - }, - { - "cve-id": "CVE-2023-36794", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36794" - }, - { - "cve-id": "CVE-2023-36793", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36793" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.11/7.0.11.md", - "runtime": { - "version": "7.0.11", - "version-display": "7.0.11", - "vs-version": "17.4.11, 17.6.7, 17.7.4", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-arm.tar.gz", - "hash": "07b0a21161487ce18bcd6e31b30a57675c1a9c213217ea137679171b81a0a049a86976a82b82dd29172a41e972b90a7485414b256fc53c1c357afb629b17ba09" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-arm64.tar.gz", - "hash": "567b39c4b8ff278349fa76522351e6f399eadd9a86189150a312fa7a4d365c60ccad8a06564ff4b8acaaeb907222d6b154b711e324989f7f6c234dc5a85ea0da" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-musl-arm.tar.gz", - "hash": "3492572481482b4c92f526a7b169d81e4438075bea0cfcee2f6896cd0667ddd1e60772ef7e44c4a3ea7cab6d5af621c89a3aac211d62610bdebc4dbe54f23a70" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-musl-arm64.tar.gz", - "hash": "7bdffd39fd163217eed64e13757b0746ef4073de371e74d6931b6d5e7ada42a576adfe61ef451ea316278ab05d746f136fdb2bdcdd2fdfb6e204045345d97548" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-musl-x64.tar.gz", - "hash": "ad733f881301f471c9d5e8a882b3af3ef82914d422d824fb2acc85ecdac9a4278c6adae66864fc12dce8f0d51c02e3c22b56a519b3b25100a566a8d676c94a8d" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-linux-x64.tar.gz", - "hash": "110db17f1bc9e5577488e7f5425c6c639851af68c8d7dd17b0616469755c27d3c8a78ab01aaab13ed4849c676230bfeef9113f1dc4cda34c5be7aa1d199e7d57" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-osx-arm64.pkg", - "hash": "800af08e03637d638c9206e0271199b803f6d377dca269d1b0bfd15bbdb041af59f6eca3b57ffc05b92c20235a505b2638abdc45ab8c818e99e0a8502e500af3" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-osx-arm64.tar.gz", - "hash": "546ec5050ebc70ed17252d401cc43c9bd628fbaa40a6a764a4ca567fb37d0db14a6c0e28a190bdd74254e886aff9fed542830224f0dbaea32792235386648ea8" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-osx-x64.pkg", - "hash": "aa0f6795fb750549bc3a96e114981de3e640e7eae0b4d69811d54bc61d4de0c755c34b43d497eace18b41ac283eec4385b92fb05e3b1fc0655c24fe18445dc91" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-osx-x64.tar.gz", - "hash": "5e714641c1693abe2662ee71f6aae7ddb35a8a3869939f024f63666d7e90fdf2e5e25af5d7e53c81fab293706640c391ce6be4f737df3fe2a0d769bdf443178c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-arm64.exe", - "hash": "88cf9bac3b3471b0bf81300e9248bc510ee876d1d126c594c65596728ad8c6cbb1c8daf0581d8d75b8db76c1972ec10644fb629cfa7a2dd2f72f83fcc721566a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-arm64.zip", - "hash": "a2caa1db58b3a89d3e940babdee77f3fa70e5ec018047b493e0f6d959b7827a075277e5e08cd270ae4c7b1679fac1804df66287b014e8a95eb1757d9b9d70f84" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x64.exe", - "hash": "f6252ec8426a306e5a266a9e585420a34b1ac7037a14c4259068157bca99e2e66da66dc393d25f67b339805bc2bb658cdc2564e3787e9f5c8d98da16137dde03" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x64.zip", - "hash": "f2e7a35698f53a77d851f9241a87a5639ca28e6b76008c0745949d0d58864ceeef407917294145a191d31629edd2add4e9acb116ea0e4ef71d516c6d13838496" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x86.exe", - "hash": "7e296e5008eb937480a9d2b465f56aa178f862bb9406e90fdcc96c71fe25a02d803cd1689be13843f9f0fd621e55de84eff6d8a58d7fc7fd0a4a18f0867ae1a5" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.11/dotnet-runtime-7.0.11-win-x86.zip", - "hash": "2573467dc75dfaf221c00f4e226304bf502da96976bfa650e3a2447fca52a729d60e7532d3686be7f0ed95be837e8ddd84e6929fc681e0747753197d51408ab9" - } - ] - }, - "sdk": { - "version": "7.0.401", - "version-display": "7.0.401", - "runtime-version": "7.0.11", - "vs-version": "17.7.4", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-arm.tar.gz", - "hash": "baa82f57a16996b1e9a73261e23b74181c251399a4ecb09ceb95bcfcc8e3bf89e31ff26b0e0a8e87cb77406ad097719e8e392b684b2e00cdb81f2ba6f5134f1f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-arm64.tar.gz", - "hash": "7c6ba2047998c906353f8e8d7fa73589867f46cbc2d4ece6cc7ee4ca3402b6a18717089b98002c7d15e16ca6fd5b11e42037b5fb0e25aff39075d67d8be49e25" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-arm.tar.gz", - "hash": "a15e482abe9acf9b094f306edd5b6c84cc7e46c1da5496dd589471d5758304da99408d2c6510da99ad790a4593995ef09ac157a58a844201da23d6736736ffd8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-arm64.tar.gz", - "hash": "4c8e0ba9e6c4e0ff71c563a6a25d470c47d11270e7b166b8c2f1a41337dead0b5765fda17a9a332ba55ff3faaa7aadfa39142cb1e6d32d20c6b826ef521125e1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-x64.tar.gz", - "hash": "77a33605b815a50e2b79b110c1617f69668c7e802919ea954ac45aad4208750436c6fe0d71aad367a610846633a8da56e3f1f4f82460f801eb3b9437bf2051a0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-x64.tar.gz", - "hash": "2544f58c7409b1fd8fe2c7f600f6d2b6a1929318071f16789bd6abf6deea00bd496dd6ba7f2573bbf17c891c4f56a372a073e57712acfd3e80ea3eb1b3f9c3d0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-arm64.pkg", - "hash": "ccba2a8293efdb8552dca5a27b4cd591841a2040afcad756f1bdbfa5487f7e0fdbb54593919f5b792929c9a3f003bbdce2bd0116dd2d25047b4526049e8fa982" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-arm64.tar.gz", - "hash": "64878c33a80a13eeff58304832b8a00bdea7da088d8683903c4adbf9f6aaab4ea9bd55f5148c76518526d483ee43ab8a76f07afd60da5fc8081456f0448ac3ed" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-x64.pkg", - "hash": "f31982359e39a5109e941801360f36f103a8b65f02b5422afad183a2fcd0357dd6641f80ce42767996c676e1441b002e3330a5b7fbd9b5b46b365929eda19482" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-x64.tar.gz", - "hash": "7c0ffdc756e13606982a58f21e8fe6fb4a0cfe0210ffba925e81f70b0266715f17d2dd9efeac72c23d552f099c173b04c1c31d07a050151ffc65578ba2d922aa" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-arm64.exe", - "hash": "fddd47dbbdb20a71f54bca9fd4a03264fadf88140d6112768f146ef549ccc2d5362224248ac1021a40269e95abb618b2b42b556cb546a1fbc4e4fa56d60d14ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-arm64.zip", - "hash": "8fd90956274f0e91873c345b6afbe2d35bd38cd2971cbf34468078f10666956b34824705ae6694dfdc61189c88ab69c8d5648012749d6b6fb161d0730983a907" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x64.exe", - "hash": "40b764d12fa2734629a0b9ce727f96772267e0cbb99dd5cc5a40647338d7c3cb4a8a8828e4c78460e3cebd12bd14bfd908e0df0e0fbae0ffb6c29488ffb7bb87" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x64.zip", - "hash": "02a4ecc05d0b9dfa0c9e32f8a3d288f329e7338b2430fcbc1276ae356f9d8e14920f91382f3f141842bf1e6e6cd331e532b301edc71c26de9d9e5ad2371afbe0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x86.exe", - "hash": "dfe44fa9cc26732b046c2031429652a6ab4233c39ddf6a01b07799e108564bdec8ef2c3a10a118759a841cfe021213f7e370dcc3786cc8d7b2906cbae420df01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x86.zip", - "hash": "775b85cd39864162fc8d592bbfcdae0553d78f1d7813e7229c7cf74c63f24b0cd8ba9a1a4c5a25d3dc265730e1f2123385dcdbcc2af4433a8b3aaa3dc6273b9d" - } - ] - }, - "sdks": [ - { - "version": "7.0.401", - "version-display": "7.0.401", - "runtime-version": "7.0.11", - "vs-version": "17.7.4", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-arm.tar.gz", - "hash": "baa82f57a16996b1e9a73261e23b74181c251399a4ecb09ceb95bcfcc8e3bf89e31ff26b0e0a8e87cb77406ad097719e8e392b684b2e00cdb81f2ba6f5134f1f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-arm64.tar.gz", - "hash": "7c6ba2047998c906353f8e8d7fa73589867f46cbc2d4ece6cc7ee4ca3402b6a18717089b98002c7d15e16ca6fd5b11e42037b5fb0e25aff39075d67d8be49e25" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-arm.tar.gz", - "hash": "a15e482abe9acf9b094f306edd5b6c84cc7e46c1da5496dd589471d5758304da99408d2c6510da99ad790a4593995ef09ac157a58a844201da23d6736736ffd8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-arm64.tar.gz", - "hash": "4c8e0ba9e6c4e0ff71c563a6a25d470c47d11270e7b166b8c2f1a41337dead0b5765fda17a9a332ba55ff3faaa7aadfa39142cb1e6d32d20c6b826ef521125e1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-musl-x64.tar.gz", - "hash": "77a33605b815a50e2b79b110c1617f69668c7e802919ea954ac45aad4208750436c6fe0d71aad367a610846633a8da56e3f1f4f82460f801eb3b9437bf2051a0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-linux-x64.tar.gz", - "hash": "2544f58c7409b1fd8fe2c7f600f6d2b6a1929318071f16789bd6abf6deea00bd496dd6ba7f2573bbf17c891c4f56a372a073e57712acfd3e80ea3eb1b3f9c3d0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-arm64.pkg", - "hash": "ccba2a8293efdb8552dca5a27b4cd591841a2040afcad756f1bdbfa5487f7e0fdbb54593919f5b792929c9a3f003bbdce2bd0116dd2d25047b4526049e8fa982" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-arm64.tar.gz", - "hash": "64878c33a80a13eeff58304832b8a00bdea7da088d8683903c4adbf9f6aaab4ea9bd55f5148c76518526d483ee43ab8a76f07afd60da5fc8081456f0448ac3ed" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-x64.pkg", - "hash": "f31982359e39a5109e941801360f36f103a8b65f02b5422afad183a2fcd0357dd6641f80ce42767996c676e1441b002e3330a5b7fbd9b5b46b365929eda19482" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-osx-x64.tar.gz", - "hash": "7c0ffdc756e13606982a58f21e8fe6fb4a0cfe0210ffba925e81f70b0266715f17d2dd9efeac72c23d552f099c173b04c1c31d07a050151ffc65578ba2d922aa" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-arm64.exe", - "hash": "fddd47dbbdb20a71f54bca9fd4a03264fadf88140d6112768f146ef549ccc2d5362224248ac1021a40269e95abb618b2b42b556cb546a1fbc4e4fa56d60d14ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-arm64.zip", - "hash": "8fd90956274f0e91873c345b6afbe2d35bd38cd2971cbf34468078f10666956b34824705ae6694dfdc61189c88ab69c8d5648012749d6b6fb161d0730983a907" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x64.exe", - "hash": "40b764d12fa2734629a0b9ce727f96772267e0cbb99dd5cc5a40647338d7c3cb4a8a8828e4c78460e3cebd12bd14bfd908e0df0e0fbae0ffb6c29488ffb7bb87" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x64.zip", - "hash": "02a4ecc05d0b9dfa0c9e32f8a3d288f329e7338b2430fcbc1276ae356f9d8e14920f91382f3f141842bf1e6e6cd331e532b301edc71c26de9d9e5ad2371afbe0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x86.exe", - "hash": "dfe44fa9cc26732b046c2031429652a6ab4233c39ddf6a01b07799e108564bdec8ef2c3a10a118759a841cfe021213f7e370dcc3786cc8d7b2906cbae420df01" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.401/dotnet-sdk-7.0.401-win-x86.zip", - "hash": "775b85cd39864162fc8d592bbfcdae0553d78f1d7813e7229c7cf74c63f24b0cd8ba9a1a4c5a25d3dc265730e1f2123385dcdbcc2af4433a8b3aaa3dc6273b9d" - } - ] - }, - { - "version": "7.0.308", - "version-display": "7.0.308", - "runtime-version": "7.0.11", - "vs-version": "17.6.7", - "vs-mac-version": "17.6.7", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-arm.tar.gz", - "hash": "9947afdf16b15bf389517bc6a32886c92fe690928cf7a0a23583ad4ffe81c0cd1a8b71e7e82ca1f30eafaa80c70f04ee3061999d463ffd4c3731885f00c77ed0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-arm64.tar.gz", - "hash": "59bb23aaa77aedad2018283579158554d37a8095286b09224f087b958eda8c313c19c0b03bcfeb4df77b78feb26e7718a6bf3da1c4bc5028ed6436db2fe25423" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-musl-arm.tar.gz", - "hash": "7e0a53be6312b946b9a70c6c0a5da4055b4e54883774132849834f571cbb47c7381747c501ce66ed6b9a891a162daf79530f8a1c0d5cf31f971537e4e47e9171" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-musl-arm64.tar.gz", - "hash": "2447e472cd62b6a73758aebbae42284122ef19e5b26adca6a444a4537aa02453e4b357ec98c2289b905cef037ea8d4dd0fbaa75bd18b58804af248de24039ede" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-musl-x64.tar.gz", - "hash": "6364da520133c4a43f3a45a397ddd14ba36b727fe5dc0388f7295550ff8108bb2267c912fd04a216b007077a78ffeca5d464779d22d16ac9df1c1513db7102ef" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-linux-x64.tar.gz", - "hash": "a2d42e9b379b79df881452d9472fc9237fda68794188eec7cc475aa384c53a6d831d33f62cfba138555279896205b898b85a558aaf1cc77a41b1ad444130f764" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-osx-arm64.pkg", - "hash": "a958a2b968c6fd5ef3970bc7c79d7cc2046d2c38521db61b3029c72248eee4df3f571adc288c6d563e7c06cb280a4367d33e8dbfa34d1301027d7c2f7aff4724" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-osx-arm64.tar.gz", - "hash": "5732e8083f35358348ce9adf8a6387b335ddad0c393e347a0b25a3200661c50c628cb505395b38405037df33afb90b7bed8da0fda5f863ad82e3b36a3d0b4d88" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-osx-x64.pkg", - "hash": "1d7a0ed6ca7be1ec69b622d79aade0891fed47d5e15a069a710b099069b9556f3eee9ef63e6c766b0ff922e96292cbdd7db1dd141457d8b273018641b9d6c8dd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-osx-x64.tar.gz", - "hash": "7e736bc61820deb2da8a676dce349accf109ab488b062bc9645345316e89815101fcd4c3ce7206337872139068d9cf8bcbd400880149e7a1d50817bf0c9054d9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-arm64.exe", - "hash": "463dfccb77bbdc84383b610f0fd951a81d9961bf0c6591941d9b90576db34368fcc123e2441da7384d2ea72204e08bf068daf093b3700af6f70d212d1d0fd4ff" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-arm64.zip", - "hash": "6087673ca7f7a2175407ba3698673284a5cea24212ee2ce4ce992cdf0622911ba6461f6572da56c4cf76a0098f4196d54006aed4226adcfc55323c9193f3d315" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-x64.exe", - "hash": "4640059f3dc8ded2ec572191b86250e8259e43c785d8b61816179650362d578529e2db73951b40e514fc1e54e9fffaa028109ca5bbc1725a961b28b1eb5eb881" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-x64.zip", - "hash": "da5aa8a87291d3bc0a11bed92d14ed64aca5b3918f31271f93f02b1d595e2ad54d905e7d68a6619c90386a89dfc43853ac714c57c6eded9940368b6f7d8af371" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-x86.exe", - "hash": "c8456b12109329c300508fdc964d562f5bdcc924a99d66359e1628fabd1d681eedcdc3ff71e5f8f7a41f00f2d5ed53567e5f71bfa4b400b1b515b4d3f80d1bae" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.308/dotnet-sdk-7.0.308-win-x86.zip", - "hash": "de6b0bdde2bba9cb1bf58e44c61f87457615f919e526c83e621b8d4c558a10716a0d61624a5a2c70b1bbda33eff133324f8b78766b9e965cc0de8b5f7a135ad3" - } - ] - }, - { - "version": "7.0.111", - "version-display": "7.0.111", - "runtime-version": "7.0.11", - "vs-version": "17.4.11", - "vs-mac-version": "17.4.11", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-arm.tar.gz", - "hash": "bf178b33e37d3c8149f4673802808eebbfd5d52efcc2db533e9fdea677abcebd134daeb4a449383926e2425362bc48dccff5969453341c4b84d2dc656c10fcab" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-arm64.tar.gz", - "hash": "a95d8864eceb4dad9c8b0644a2e48538cc600a3e298a18d42eca07d63c9f94672854209f53866d6c89426446e36ab23894efc23941b88bd283f0e3e8cd70623f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-musl-arm.tar.gz", - "hash": "bb78f317573e4949fe5faf583717682f2acd6c76a0aa4dc0e31f03c01d0b2d80c6f19faff971b697b4bb62964f3d28b82b756fa2954b992f57672ad9cd7fe77b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-musl-arm64.tar.gz", - "hash": "85f146ba72291f410ccbd9616265357c83738eaeef6fec2b0b50c6d44f9b3dde2b4a683f7278d96358d498796784b07534a283250a260bd0ec19e4c8ad0e843c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-musl-x64.tar.gz", - "hash": "3b704a88178aa6f38437128b1b2946b65e46a996473ebe09864d67faa0670008e255a0fc2582677bd84800b2991a63fe2f42a038b3d3578889f9333f3efb495e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-linux-x64.tar.gz", - "hash": "4df3b2eb9ce4bacac65651ba5673b73f32379e4c431c47688efeb16ecb2d02f6166e78e5c443be1abaf793444335944182037861c6d64df616929305783422e4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-osx-arm64.pkg", - "hash": "385914aa4ec82722b7076c5074632a8517a5337ac16d62fda19b78acac628dc2f2d5cce650e5b716df7cdc77372ace14cd05d6d52c68d4d1a1865eb8a645c8b1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-osx-arm64.tar.gz", - "hash": "bb997b7ec7e6303e0a033c4abca1b39ed418ef57ecac3ca2381166c51536b580eab82612a3d906eb2811a239892c4234247985d117432aa0a0782e1fdafdd853" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-osx-x64.pkg", - "hash": "65e4f2269e40010ae597a857a2ac4b98008facbb81ba157533848378b421b1607cb974a70895eb8d1107604141cda402d2f560c1e5eabb709b4d67dfb020ad1f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-osx-x64.tar.gz", - "hash": "46098090192637b5efa997168c3d71bb4faee3361f90c508ae54c7a876aaf6e57ab414cb54365fd5e8b7c3d10b9ddbd58aecfdb56cf5d6b8eb93dc69a4ab5900" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-arm64.exe", - "hash": "0e302e6e006172012f121796951f00b171056a5d37ceee693790fbb2c33dff053b30aa3c2ce2eb95b12202bb6be957eb4d8d1c8f11a0403932982ba91b3e978f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-arm64.zip", - "hash": "493ddba38919d732d352cf94048e9214ee915cd08ecc12a3f9a4518c573483be864dcdf0608ec4f3794ee73ca928a8e328779ef6269f9af6d084797c363df054" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-x64.exe", - "hash": "36a0bfa8c2968c07df3b433a42d2b477194c9e80ab7e85f60bf4e8388e26c46eddaa3435f9cc52a01ec0be1a038f16c76b33c5e96447ea0ff110ca96a7ab347b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-x64.zip", - "hash": "e21ad1bcb62b2c2808882feea05a2d3c25f0d24cb5eaab8270b392834f0a5339e9d2ac3088c48bd6446119d848f145414c1958848528d6a5c2958651de796d90" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-x86.exe", - "hash": "f005c38de1cd9689dacb5e3c7578eaa52d066dde915da606d4a6e41ed3224694b91abe3189242602080343c7f0b9d59e440e5a7d6777cfcef1730686bea00d0a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.111/dotnet-sdk-7.0.111-win-x86.zip", - "hash": "6478d17157c71faadc6cbb2c9be35f872c72c9412081c864ce8b998473b855ee84ae16dcf252787be5f166b7c662116e8674a4a540eb4ff648721f56dc39b595" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.11", - "version-display": "7.0.11", - "version-aspnetcoremodule": [ - "17.0.23237.11" - ], - "vs-version": "17.4.11", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-arm.tar.gz", - "hash": "9a948ae3a772b4f282f57a34897ae1724eb6ca3b57f1875dece7dcee278b6213126f63edf95a7aaa89546b030df16c9bf4f54fc948b64d60910d2460cc0570fe" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-arm64.tar.gz", - "hash": "e8864d261487d3077b0637e710d9348209dd7fe19a0cdd60edde2e43d238f1e534b9485282230c8b1cea0faf4bff1887f07dc919dbeb9ea7f97d4b26b9c7aa91" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-musl-arm.tar.gz", - "hash": "290c6b14973782362a869005b38e91afc1dcac8ab6171ef8387f4f4b9dbcaea68ed1afd89bb27f1b5b5d46d6d7f5f5d849eed432bf06e7f30583982d4c91422f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-musl-arm64.tar.gz", - "hash": "dcedebd27948b37f727ac362e3241b96cfd1ac5ebf9bd7ca9e2cd8edf82d291e23850345c98b4ad6d4c0ffafd4081239a219da8c23aa847ef653e9da58be495b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-musl-x64.tar.gz", - "hash": "9bef0fa7f492fd2d596db310a938953874bcc12210a963d8734d92820deb9b130cbfc78f86993b8f32d681d518724dd194a0e223719e4ecec9aa8b140ddfed5f" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-linux-x64.tar.gz", - "hash": "a5691a53a1be91751bea5c1f6faa2e93d19f5be61dc5a4953a6d6ce33359f78126873022fa1a25e2694dd85ef9671b566bf8b6c5f399f1eb017ae26833867019" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-osx-arm64.tar.gz", - "hash": "799460d18543a4e3fcb0b0ed824bbc248afd9374bf74142d12a65d422aa8eb939914c870f3d575ad121d035c19adcf4423815a34e24969b9eda15a2048de8b68" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-osx-x64.tar.gz", - "hash": "c0925ba2ff686438a40e5b61b660dca48103b37ad42f30828a1bf20ac2f9750a0f2643beb533eef877519f56757f3d4c50ccc5c1c172527883981b0d7974677f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-arm64.zip", - "hash": "9b280abf8f852613e77022b3f216c34dfcf25ba959e5575b0ff971edf7f8e409d14709add46378a0127f365e83e65a112b03f6c1ccb4e13decaf1020a0436e39" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x64.exe", - "hash": "79e8546a73d63dac0da751f620ce556b4c1b8b8d271110cca8c585bc4387970a1014f8bddb8660cbc53c41757894fee325d1ef4f1a1c45b93212365387832f9e" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x64.zip", - "hash": "d26ca3d67343460a8559dd0a60acfecb820ce6e17f269ac3c8f0b56b12246046e8e60cdfa36f4465aac3abd72a6df22800f4485a668f3224e0695c5999823405" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x86.exe", - "hash": "39ca9aeb7230cf173bcf0fac614cec33883562b537458f116f26c861a034d17e3f1907d527c7c9c5e899dabefdec1dd339629b110e32cdc00f585e42d8cdcada" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/aspnetcore-runtime-7.0.11-win-x86.zip", - "hash": "6783e3cde33e30e491a83ba6abaa13ad805a33bc54a935f018fe34e0da67ef692102d38cc65443c7b034cc7ab930955cf008fdf77fd1b74c2d54d32f629ceee4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.11/dotnet-hosting-7.0.11-win.exe", - "hash": "1f1efa26e39da2331f27f8376cde3441ef4f602ca72e72e1c4398a0e2ca7b67c9587caf80611502ef0e21c48479716bb84d3f09b517d093d04933985b9bd79ee", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.11", - "version-display": "7.0.11", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-arm64.exe", - "hash": "62b752f01a1eb8c7b6408aeca63199092315a0b15659641b51d42a600715aec0d2ec0e405dd645fa7cdeda5fb784539d6d4ab2c0cbf2dbbfe1d82ed87640d7a1" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-arm64.zip", - "hash": "60dda6d8f3d77b5fb1954ce5ee717955a381c1b3f243282d469b206e7a6a6888eac859d5b8aa4aa1004968660b73be17328758a0021f8442de2336155c935939" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x64.exe", - "hash": "c5f042dadd878e2cbd1833a73141e64fba2fae10ba5770daac8faf24bb56d7bc61cae8f7664c37fa822db71d0bf05b97733126db396e97e9ceeced596b9a63c1" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x64.zip", - "hash": "699021b3da74282ec1d5cb931fe897841df898fd4ac1127ee72df63f7277ec48112e3f70839f48c3d9b37a3764efbbb92b54cb4739eb4d04f07ff2e03fee2b80" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x86.exe", - "hash": "b7583409ea718d60ac81e8d28ab7511850d0b43e9bb9ea8488dd473b1ca904afe99d1ab298b1c5ab5271d8584baed65653196d3caf0ad9737e70f2eccbb9be4c" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.11/windowsdesktop-runtime-7.0.11-win-x86.zip", - "hash": "e3dc9fe3135dd9ba1101cad3c34804b520b48618493aeaf8206634321a16df1f2a47b0de35db4534935d0b39aeccb1a6f429827488d9ac33971deb2484e61a07" - } - ] - } - }, - { - "release-date": "2023-08-08", - "release-version": "7.0.10", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-35390", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-35390" - }, - { - "cve-id": "CVE-2023-35391", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-35391" - }, - { - "cve-id": "CVE-2023-38178", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38178" - }, - { - "cve-id": "CVE-2023-38180", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38180" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.10/7.0.10.md", - "runtime": { - "version": "7.0.10", - "version-display": "7.0.10", - "vs-version": "17.6.6, 17.4.10, 17.7.0", - "vs-mac-version": "17.7.0", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-arm.tar.gz", - "hash": "15538acaa6799c37d1caf493bd5d94e567c70e6e17dd0b538f4a7ad795d060960181fa8a82c553466cb0ee58b21f4021246395f2b4a27a6dc6d6fe0dfbf53c74" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-arm64.tar.gz", - "hash": "e90b68b272d5db7cf8665bf052fb0300d50a69818d70675442dc891654d140f7f84527b849860589bf152de1d00aa55dc15ee32f5678d46ea0069210fd002b03" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-musl-arm.tar.gz", - "hash": "c2280801d61774ac7243d6507aca9134d6757b49513523bca8f31b0f068793c66b4eed6a352607e63e73d5cc6fff26ac05157ec5d25160ac2269c1ecef6bdad1" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-musl-arm64.tar.gz", - "hash": "660033371ee3a5ae06d64c366a1e1811c19da22eb8e23d67b5fd1c16dda2e52c9650d8c1c9bab6c289a76f89cc61ae97490c01de2f4e908de9e9b82777e97ef0" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-musl-x64.tar.gz", - "hash": "9d494a4748298c494609112d695439c114a42480f58d5b4cadd78a889ecb1b00ff10898cd7c3455589ac367d5a877bdc03621f74901355f063139778ae044c8b" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-linux-x64.tar.gz", - "hash": "f15b6bf0ef0ce48901880bd89a5fa4b3ae6f6614ab416b23451567844448f2510cf5beeeef6c2ac33400ea013cda7b6d2a4477e7aa0f36461b94741161424c3e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-osx-arm64.pkg", - "hash": "62d7dab434c30739ca816cd2260f0992fd1397d624f21a15f27ae4c99b653c5e8cc847ccbaea2613bba794999afe73231f18205f6a7b4c7ac512ed4d364440db" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-osx-arm64.tar.gz", - "hash": "f578e00d5bd144c51e5d71adbd8e0ecc97f7e8ea06263c585785b41ffbb590537f5a18b63a78e45e90e798cd66fa45285059226b1904f4c2d4e2ea40c2c71bbd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-osx-x64.pkg", - "hash": "cf93450b4096161673c081e14a094bde50fc006914d1c3ec7472e9ebd5bcb285eab1b8e667f6de6e762a3b50ad5164ca01510551152de6240d625d93cc170076" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-osx-x64.tar.gz", - "hash": "6b992fbbc673d5005f2412839c632f772f6576c9ff95d44afaca478a79597601b306e1f1c496836549474a2c35238943ba27eef5749b1a2bbdd8f36553ad145d" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-arm64.exe", - "hash": "a39b20ed0c4041f789f46477498b10b88daa8d7502eff13e1a17caf105a8be14783211409c7d5fbc8f83e9042a539f14d0a3a2827995e19b47527877a30c3ea2" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-arm64.zip", - "hash": "a108bf420f691bc1c0bcf1c3ce99f19883fbcb02a0b65531c23e5b97e0808b78ffe3338a2978e313336e1fd3997a00968af1fdefd991520208263e62cef21fb3" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x64.exe", - "hash": "7b86e1da72c54682b1ad49f64dfc84268c82cbfdc6f21742e57ba24a49adbf6b6aaa31652d6af3cacb600db93b8654c36ee8f82ccc867925af764bc882524b49" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x64.zip", - "hash": "87de9b7b10767c6630b4afff5e5972892bbeeba3e214b8bdda8a1f945db5be88342ed0b33cba26e0108a78b44b2489a69a22e7ffafb7fc6f6fc57a7bcc5fd25b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x86.exe", - "hash": "656b980b93c64785758a4cf0109611655a7ef1114aa0cac6b2fdb1f04237b1b4bfe7f99f8336566400729f8c932d597972243b6c54664c21b710293ecbdfd7b1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.10/dotnet-runtime-7.0.10-win-x86.zip", - "hash": "8c0ca0ce75d8581d0641b6dd3ab5cb84da13ddefb8d9fd807fe843e266272b7624dfbcfdc584cbf74452ead92c719d872c6e781789bb33cbf73aca77ecb8f28f" - } - ] - }, - "sdk": { - "version": "7.0.400", - "version-display": "7.0.400", - "runtime-version": "7.0.10", - "vs-version": "17.7.0", - "vs-mac-version": "17.6", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-arm.tar.gz", - "hash": "680641bb807483831fae57c07b635b710be10c1a2791fc98d371cf7417c2f78f187f7542d15177482237ada5a4c874b35318fd0a0f66f0e42bd531048092c1b9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-arm64.tar.gz", - "hash": "474879abcf40d4a06d54e02997a3fb93dd10c8d5f0dfd5acbf7e1a6f493a6d3421e426431d512b482c62cda92d7cda4eddd8bab80f923d0d2da583edaa8905e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-arm.tar.gz", - "hash": "1e940b24713ce885c9a3a8cf1f47e1debbb2966c4bc7890eacf6eaf86d0aaff975dd64638892138038dc839a2329633e5836e91318c0413ed8b388959e42e962" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-arm64.tar.gz", - "hash": "c6d7884ec430b8f5e447abc6f9c3bcc1fb97d612fc5526ae50ae62b6244767b9a3eaee136d88702865316dbf199159221328907c2573cfc723aa4e20d5076c52" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-x64.tar.gz", - "hash": "984ecd6b66fa5b1665e9ae4f949bf4f487434a2a3176324cc023ed86634714c26c6da73b8b17f29d63515f3f51ed4b75059f1f0936accfcbde693674073f3c8a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-x64.tar.gz", - "hash": "4cfeedb8e99ffd423da7a99159ee3f31535fd142711941b8206542acb6be26638fbd9a184a5d904084ffdbd8362c83b6b2acf9d193b2cd38bf7f061443439e3c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-arm64.pkg", - "hash": "a05c80fd9df614dd5377ae55732653a147e8db0bf263d05148bdea67141e2bce6fe3be7b662fd215b6480ee1887eae32da4de2c824adff7301a743adab022ba2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-arm64.tar.gz", - "hash": "134f764680336481a67ded13af8f9ce9e89e29937c7998d8e6a3695593dd1246b8d9407649f125032a3057c138b9739aef3bf8e3acdf0220224417c2036bf159" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-x64.pkg", - "hash": "e49df7432d9e76656f3d600ff1b97fa4afdacf034ba9451a4e8f71621db621f2b38d86bf6132036cc1a7aa3e10a71d9b1632050444766edd8905c81ef96d827f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-x64.tar.gz", - "hash": "e705c7466c9aa0c1203e0795ced23c6b794285ef60c8f7e1d199a09e596c20180901c2ec9c24483afa6302afb46a6b87ce18533283e2223a2161776f25421f61" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-arm64.exe", - "hash": "872223cb83a82339942a81ee5f35ccfa7e359b4f71490f3b6b01bb4c85506ce4ccd5c8fcabd3d79637db5ffd7bfc5df509dcc8e41c85e2327ef23c33077420ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-arm64.zip", - "hash": "ab5e650d013664a104e9af401ab11bac552c4fbde75e1c2f42c59a66f701486d9dc5aae632ee4d6fb49900d4a0ee6062b9f87f597eb65f8c221584c58358c22a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x64.exe", - "hash": "d8a8b063845b4ad4a1ac2c5a18de5fd478acfc021b2aaffdf59435684bfcb5b0ccd35c52139bd972b80e3f6314f3c2b74c2cc7228e223ed406df5e5369df35fc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x64.zip", - "hash": "a8d73ecf7c17ae8bc7a7cd3ec7c290fe3c3b67e4456a13b8356aaaafbcfef166ebcdd4106a42ce513fbce2b208bc9dd97dbd63cf6328c64b828776bfcd9b8775" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x86.exe", - "hash": "596552bb1de7bcdfe979a5beaefc4393da948f7631aa6b225855f1828119324ab0da2b353bec3316290ec729e6a384e03b2234fe54f19e1e8df7e9727aa4dd2a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x86.zip", - "hash": "11ce461b792aa1b79d02eee0355ca2b3cb1b5f4476eb09b0142feb52ee862105e5dcc001f81b97d9fe8f21e9427c5c906affa1192d97576c6185436b7d160f47" - } - ] - }, - "sdks": [ - { - "version": "7.0.400", - "version-display": "7.0.400", - "runtime-version": "7.0.10", - "vs-version": "17.7.0", - "vs-mac-version": "17.7.0", - "vs-support": "Visual Studio 2022 (v17.7)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.7)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-arm.tar.gz", - "hash": "680641bb807483831fae57c07b635b710be10c1a2791fc98d371cf7417c2f78f187f7542d15177482237ada5a4c874b35318fd0a0f66f0e42bd531048092c1b9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-arm64.tar.gz", - "hash": "474879abcf40d4a06d54e02997a3fb93dd10c8d5f0dfd5acbf7e1a6f493a6d3421e426431d512b482c62cda92d7cda4eddd8bab80f923d0d2da583edaa8905e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-arm.tar.gz", - "hash": "1e940b24713ce885c9a3a8cf1f47e1debbb2966c4bc7890eacf6eaf86d0aaff975dd64638892138038dc839a2329633e5836e91318c0413ed8b388959e42e962" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-arm64.tar.gz", - "hash": "c6d7884ec430b8f5e447abc6f9c3bcc1fb97d612fc5526ae50ae62b6244767b9a3eaee136d88702865316dbf199159221328907c2573cfc723aa4e20d5076c52" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-musl-x64.tar.gz", - "hash": "984ecd6b66fa5b1665e9ae4f949bf4f487434a2a3176324cc023ed86634714c26c6da73b8b17f29d63515f3f51ed4b75059f1f0936accfcbde693674073f3c8a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-linux-x64.tar.gz", - "hash": "4cfeedb8e99ffd423da7a99159ee3f31535fd142711941b8206542acb6be26638fbd9a184a5d904084ffdbd8362c83b6b2acf9d193b2cd38bf7f061443439e3c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-arm64.pkg", - "hash": "a05c80fd9df614dd5377ae55732653a147e8db0bf263d05148bdea67141e2bce6fe3be7b662fd215b6480ee1887eae32da4de2c824adff7301a743adab022ba2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-arm64.tar.gz", - "hash": "134f764680336481a67ded13af8f9ce9e89e29937c7998d8e6a3695593dd1246b8d9407649f125032a3057c138b9739aef3bf8e3acdf0220224417c2036bf159" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-x64.pkg", - "hash": "e49df7432d9e76656f3d600ff1b97fa4afdacf034ba9451a4e8f71621db621f2b38d86bf6132036cc1a7aa3e10a71d9b1632050444766edd8905c81ef96d827f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-osx-x64.tar.gz", - "hash": "e705c7466c9aa0c1203e0795ced23c6b794285ef60c8f7e1d199a09e596c20180901c2ec9c24483afa6302afb46a6b87ce18533283e2223a2161776f25421f61" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-arm64.exe", - "hash": "872223cb83a82339942a81ee5f35ccfa7e359b4f71490f3b6b01bb4c85506ce4ccd5c8fcabd3d79637db5ffd7bfc5df509dcc8e41c85e2327ef23c33077420ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-arm64.zip", - "hash": "ab5e650d013664a104e9af401ab11bac552c4fbde75e1c2f42c59a66f701486d9dc5aae632ee4d6fb49900d4a0ee6062b9f87f597eb65f8c221584c58358c22a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x64.exe", - "hash": "d8a8b063845b4ad4a1ac2c5a18de5fd478acfc021b2aaffdf59435684bfcb5b0ccd35c52139bd972b80e3f6314f3c2b74c2cc7228e223ed406df5e5369df35fc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x64.zip", - "hash": "a8d73ecf7c17ae8bc7a7cd3ec7c290fe3c3b67e4456a13b8356aaaafbcfef166ebcdd4106a42ce513fbce2b208bc9dd97dbd63cf6328c64b828776bfcd9b8775" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x86.exe", - "hash": "596552bb1de7bcdfe979a5beaefc4393da948f7631aa6b225855f1828119324ab0da2b353bec3316290ec729e6a384e03b2234fe54f19e1e8df7e9727aa4dd2a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.400/dotnet-sdk-7.0.400-win-x86.zip", - "hash": "11ce461b792aa1b79d02eee0355ca2b3cb1b5f4476eb09b0142feb52ee862105e5dcc001f81b97d9fe8f21e9427c5c906affa1192d97576c6185436b7d160f47" - } - ] - }, - { - "version": "7.0.307", - "version-display": "7.0.307", - "runtime-version": "7.0.10", - "vs-version": "17.6.6", - "vs-mac-version": "17.6.6", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-arm.tar.gz", - "hash": "08ecaac7de6c8cc8b588a1d4777ad141b6aa17a16900b15b6893d9477a7ee49d079619506011ed55d2d04a7740f22b912e123159be1b252bc84922a0e1294ea2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-arm64.tar.gz", - "hash": "6ae2f89515a7c9fbaadd10a4637f9d593151f2a212b33998a36608f2333845a985eba6eeebc95f5ea76263b5328d577ea49316b8940bb123321e795d813de11a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-musl-arm.tar.gz", - "hash": "b5e5f81e75b89e2dec673d72ee415eb91ab1b3be1ed1b217aef3d06d2b9474a2b1791953a1d8487079984707ccd54d634e9f345d235746530e66f95ac42d61ba" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-musl-arm64.tar.gz", - "hash": "f8bb4089e805f298762315670b4167ed71b575aa89bea13c73879555588dac7876e65a28d5dda069db16cc0843cab389f2023ac87c6700db93a17a3446da60ee" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-musl-x64.tar.gz", - "hash": "685f0cbfbb3ab221fdbb63110f1868cf7ece65aa97dc02b9d52c41566c0d363c01fffdf1678247221384de39af4bb4f4b627831b346e8b326046cc253ab65841" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-linux-x64.tar.gz", - "hash": "32a69c698bc88a70b2e840cac6a3ffb627b234f503fd646b1b78873d7ff1dddac62f13dc828c26475ed22a98ca1b0148bdc6d4eaddf4cd3baa7a6e51fe8d33fb" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-osx-arm64.pkg", - "hash": "165c9fbee18e7b0f1113b88127966065b961c9ea7a0613045e2858a079b1f8ba9272ed4aaa6bc5ff1847cddd1d0669fb3f52ad0725484bc75ae9cb06b8f53ad2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-osx-arm64.tar.gz", - "hash": "9c0b715951cc40e4de1b6b8d6a5e7696e748d9886a3baf707d1ed189325923c61defb53b3cbe9a57b8b4ff883a0c9ce8ee1524301f1d67911a42710a01f54f99" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-osx-x64.pkg", - "hash": "d1bc472d26615d40e4c136c6c0a6c8cab95c10e48dc86c5a345837c644a65cdf958af37a7bd6b25782a07a0b9264b94e5eb7f3ac20a38e0b97afdd3bb494caaf" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-osx-x64.tar.gz", - "hash": "818c6af40731d31abc234eaeab1c4ca411a81f36d3cf5932f0b2347a04fc3804519008c49d5cd981e89c9d5b91cf79a3df652f2c04e92d1c7abedfeb24d1fd10" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-arm64.exe", - "hash": "746e17240c0c314ca03e205f795317222379bbf9606aa8e897fc728651b9e5c3defe5cf3d4fd7035faeab58e3033468e49e01acaffe58886f208bd407aff9a86" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-arm64.zip", - "hash": "a03da88a675efae9836839e3c8a67f6288d644156221c5fdc934d0ff59ce5753fc79600e8211d4a465343c64426fc494a1ade00d4b52e49b2cf423824bb40da0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-x64.exe", - "hash": "cd3c1b7d45f51453535071597a69ffce6498afbd9534c82df46539ff8d367c947fd18ada47e565a9f8327bdc67aaf6d71a6f4f19a8aaef3da5c0023f64f0c6bf" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-x64.zip", - "hash": "967c7abdd3b10868309f730562bb6be8a1c9c21d313788aedcfe0f0ef0834bb878e000644b9d02a136fffa60771160a46022510a67389e85e8b743f5921a16b3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-x86.exe", - "hash": "a3ca518a65cd182411cb3bf09eb582e746ff526f4ee4071b4ac8adefc04cd0f895bab59e94825cd2e16c66fa83c818b11434b2edace6b54c4048f1d748cc3e66" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.307/dotnet-sdk-7.0.307-win-x86.zip", - "hash": "4e02fad42a9ef19594b391329d0f41954ca77026e3ca23f7950f784250bc6f94cc0ddde063e4113f25621b3abb023408d20739e4301765a39c33e9dd74996fad" - } - ] - }, - { - "version": "7.0.110", - "version-display": "7.0.110", - "runtime-version": "7.0.10", - "vs-version": "17.4.10", - "vs-mac-version": "17.4.10", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-arm.tar.gz", - "hash": "b3d61fbf7c7e219e3f407e3c957bc51afbd5c1948e802cb60410ec07c576ff7bf65542b3d83d4c80a9de19516a830d61d2bc6e175614aec9a07c5343c8a6e485" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-arm64.tar.gz", - "hash": "97464f22c259cb5bea07a9fd1e542cbd4e4f455b03e4f5bb3a32258cfb5bc6e8edec4088f90766ca816e272907684700ea6bd626fd28b71a74bb3b00399b6740" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-musl-arm.tar.gz", - "hash": "b66db32c8eb60a2cf63faae8e2c8b092a372b63103cdc7402e98953158454c4eeb892fca021be433beddcff7915346928bc72bb7020be56be194ce2dc30a22de" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-musl-arm64.tar.gz", - "hash": "d576a49f0171e9fddd3482e3c8ce0c7a47dee3de646742798e1519a318cbabf70dbcc22474e5d51b91c95acc16272d1003cd86cf09bc23f20dfb5fbc7ff7261b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-musl-x64.tar.gz", - "hash": "41e0a93ff911f4c60556e8809ef96b852c0698a5c4ade9fbe73641b9b3d523fe2c9142d1452d87136bda4074c75436ad97020ac1ffec40f2f41ad989b910feb4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-linux-x64.tar.gz", - "hash": "8931c7f0b8ade8c45069c4ccb52c0609517839df2e2601e84e06706ecd77b55fba5fd553e7c01e5809b281030112c4cc7e64fddea778434b3b85303c5473fab7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-osx-arm64.pkg", - "hash": "20da608270fb2e5bbf713b49a7d3a3b858fcc0fb0e5a6b4c5cc87912fbdcd0bd2c4664294d3243b3dcfd75e77edef9f74f0e7f4edce0ffaf3f3e9d4512261bf7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-osx-arm64.tar.gz", - "hash": "f25e639c0131ca4b223a3a175e17efbe4e9c4d99ae781c277d22ccfb30773968eb03bcbefb648f53cbb55e522663df5a23c80223b2094bb806e16229b885c80c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-osx-x64.pkg", - "hash": "e98674050e84d061e12138c3a4ebf3740e16b67a5101020fee603688e824e197205f60fd3222c905f4d297c0426910be587abda359f9adc1e0be64ba2868c7d2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-osx-x64.tar.gz", - "hash": "019cb4da2171ed5152e680eab13c284ae2b71d83b69a822f7aeae1d1b585984ae14a9199df80a60bf92c0733e76eca022c040845ed0b3bace5585b9237dacb0a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-arm64.exe", - "hash": "a47aa8d25aae14f3a1f793f21dd286a4efa9bcf73dc9dd0e78cca17d6fd57915ed51eab995355b05a744ee61ed65e23b9f7b5b25482082dcb1ffe08c546630fe" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-arm64.zip", - "hash": "5b09a01345b8e424adf70cab7c70bbec19cefc8d35d80b8a715176e6215335bc647cc30c17f5dedb9a07f625acc5610c27a516179551954c0ad6da2ccf1fec3f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-x64.exe", - "hash": "9b972f68a8f65e0b8b03045b7a3d4349bc65e633d07b5ff051d93fb59a48c280e158d0d8202ad89b320e8ea9ab1faff16cc4cc768c9963c1a54b6c0f89b40152" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-x64.zip", - "hash": "773b9125f24c4d6258454737946551365507aa6dd1404eb9c1d417ddf3ae0b1a2ad1ade4d81d5c60502dfdac6543c75ab18671de20fe16d61fd9a060e4e4f352" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-x86.exe", - "hash": "539b799d71f3b50c616a23b60fb5156d344afbf8d203751185aa812d4a7685bf2ff4f6c02e0dfb15ef554b02f7d274b72e0232022063eb9016fbc0ebe2fd8e97" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.110/dotnet-sdk-7.0.110-win-x86.zip", - "hash": "9da6099755426afdaec719657dd0b8b1479f8f25e4430ad3baa02a42a2d3f6e50ec131ad96771210ff807d90348c08ceb08a5df1e87a5dab65bc157d4ffc953b" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.10", - "version-display": "7.0.10", - "version-aspnetcoremodule": [ - "17.0.23196.10" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-arm.tar.gz", - "hash": "024354ba1a278d38ac273eac470dbc4562e00351fc675913599cbfcbf853243f8bc1e0a0de7df1a53da087ff836760ab1964009e9c7447fc28a8cf9493eb7e24" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-arm64.tar.gz", - "hash": "83d3fc657328f127ea8881844dda2f91fa03f2157f5c76acda64cd091e430fa7d812b3984b803ac624b171f18a5eab3c7b5791a02baa68eddcaf7498709f982d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-musl-arm.tar.gz", - "hash": "99e4c07da60e6a5cae3bf1e5cd1b877563906fc97c030e3472a8e7e5040cec04ef66ca55a994b5bab78a1da0f00068e877d95bebb0c4b916bf1592f29c978223" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-musl-arm64.tar.gz", - "hash": "52c87fcab1445b3afed26449cbe67244a7658c9b576d35f28d00763229dd8709699864cc9696dc0d9726e149a5a1ba1cc0485510decf51fd2cfc6afd4c6ff4e1" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-musl-x64.tar.gz", - "hash": "9c4811ea4515f4c6650adc398272305861c76cf2a6e27f5966a4a8e1e042d6a2a7c2d36c71c51935768e7aca86e6536c92f2931f9c15af3526cfd6a15d6a0664" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-linux-x64.tar.gz", - "hash": "580fdda88824bde6b2d5c09eb009fef64e89705a8aa096dc71338a549969842dff8d9f6d4bb4651e60b38e44ed0910ec18982a062b471ace18c2e22348de11ab" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-osx-arm64.tar.gz", - "hash": "95c987c38b80b1083016ff360c957ac4cbc2aad406f87095f7350704de8b9a23ae060e551166c396cadeb54f39f176d5a1bbf77704edaf0c0a308d87ca29b838" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-osx-x64.tar.gz", - "hash": "1f1fbfb0851d62538aa6feacb5c38c14289e7b2d19be62c0e240da6d3c9336f3223eaa2f3e64559e6d8f599a33d9f8dd3d138998386ee9532854139b3275812a" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-arm64.zip", - "hash": "c8de1aa66029ef1738f8a98f7aaaf46d86764294dfb365c4da086040a7f7827a3c67e1202b5f5f53e4ed32406313b86a344ef6d02bffef843bbcc64cb198ed0c" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x64.exe", - "hash": "05ae0b5950b5a63f416c871e1cc7effcf847057661d2a35295f401f95da21a7be245e699ec61bb3d2aa7438b723581cff4cab3795c6f0ab916a1fe2da2fb5455" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x64.zip", - "hash": "681b70c3adfc9c550b562ee1159a57fd59220f34777f47413b6cc77383a3ed2da8e1062be0f8b65143b8429eaee812570c116abc9c07a8cccb02d582c1a6cbc0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x86.exe", - "hash": "bee0c5e9010f6615becf66eb0761e8c08a31c4496806818c12e821209129843235386df3a30d3f150e76df79e800b2cc7e062ec39ecf7c206aa9f5d27ee206cb" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/aspnetcore-runtime-7.0.10-win-x86.zip", - "hash": "3a9c8c4b482cffd7b34db30dd64087a3e94fb59483df7485ff7437ec2d8790929e21eb3c112f644478e87ecc90e7069f264baa6c81c732f42eb5aae8497ccdb4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.10/dotnet-hosting-7.0.10-win.exe", - "hash": "cd52c9d45e63458ce1e84282b2d9b1432ced7ecfdbe1b3d57b3f0791d20c2ecfcc7ffb8da0916722cea4cce55cb5dea8f34bff489f7a04c14c104a974ff72379", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.10", - "version-display": "7.0.10", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-arm64.exe", - "hash": "2bf42eba06f715aa265fcd80c0cbee2017b55d50bbedf0a1c1b5146c0d7d58f4ec66b6234391453f064c62b55cafe8385dcac9097fd9307401e6fd8a92f2ca90" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-arm64.zip", - "hash": "62a92558901e64465a3a3395622034f5ac7c822e11a66fe35319182543211472969adb49ae7bdc8e5f132837f6d378e8f742082176d35e1a00f9098c8b9fe750" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x64.exe", - "hash": "e69fc0f0577dd2c255257521b11cbc5507847d2a092bacf6a7fa3b4b0493390f709fa3cae785dcb7afb271ceb83b804196578f4a6931f9a3f635cae114bb53ec" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x64.zip", - "hash": "0985afc156844925e8946992c2d04ece6153bbe3314dae34417a3fce8f40c329f72212fa903b4f676864699a2c6dde486bdac27473b16907af504bddbdbb4b13" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x86.exe", - "hash": "6a3dd2540b4766187925ad01c25337bd697856f9d8078fc902fff3c61961420d6832bc5e4d2691c284815b4a323e7c0dd619d5b4b954e54fd13bbbed29a8cc7c" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.10/windowsdesktop-runtime-7.0.10-win-x86.zip", - "hash": "adde1c6690e15a57dc028d6e699b7c1806be705d0e04f97d294bcc17ee74a45e5eef4aee09b501936620170041e02487aafe66fbaeecbb2c9f63fdcde1cb0cc9" - } - ] - } - }, - { - "release-date": "2023-07-11", - "release-version": "7.0.9", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-33127", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33127" - }, - { - "cve-id": "CVE-2023-33170", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33170" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.9/7.0.9.md", - "runtime": { - "version": "7.0.9", - "version-display": "7.0.9", - "vs-version": "17.6.5, 17.4.9", - "vs-mac-version": "17.4.9", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-arm.tar.gz", - "hash": "8ab88266e0b1cbd399c3ec552ce5b5a270f771bb27a154ed1560422f58709160543b6d3e4a4c0bd89736b9457e552648f82063d06cbbc1a047c13d0c5e843767" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-arm64.tar.gz", - "hash": "271396af3adf881a4c5c8c28a812f9a0a30e11497bb0c9cec12bee4d726ed9151b2d35eb9146b5938611ab60ccc249d5ce5c870f721f791d19a3b08545dbfa97" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-musl-arm.tar.gz", - "hash": "538b36f61dff0d5c36f141e12017dd8187982ca45dee78885787f08a0888f1e277b8cd9546a4a3da4d729b0dbe536bac397f14cd5e253e54026ccbaec4a4e57d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-musl-arm64.tar.gz", - "hash": "5f0b772d43abcac4529e0349478c79bec830880607d93d94529c20a3dd49646ab181e2c780976919a195d5e3b1806d4260ba72b2aa03d3afcca5ac595b46e88a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-musl-x64.tar.gz", - "hash": "6b2a8a6c8a59feb2e349dd9e988dfd2ed25967e5b54230d393a509f1f6d919a8432791402deb853e25beaa6d5a89e6a179efb06c36ff90a7063f685b3d20f050" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-linux-x64.tar.gz", - "hash": "09552e5ae6ac014dadf17545ff0a30ab32921075a31fb33e7be148c13078e30d097f592ffa1b8d306563aaa3f6302e40c5c0ba815c1473bbd5d72e3bef55d91e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-osx-arm64.pkg", - "hash": "c26522938e0f75f8531c6fdee51d01bce5bbf52b887411496d62dd16b8146acf5dc19d8b0e96747c6b38b8aafb68ed663fe4f1b5462a48c53b603388583af28a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-osx-arm64.tar.gz", - "hash": "1aae7726b89c0398f29bc49fe9cc4c2c3f27f1114d5ab140c998fe74b13caa3eed05cf5ae28eb389f37de2023b35c3bb864be64a2e596bde673e27ce749c53a2" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-osx-x64.pkg", - "hash": "318deb264be371f32f9c2273a6f57651e0221a7effb326def37829a07c0e534b46dab1c4679d9e246ea0f3e98a663af751dd1e4461cb9db2e65c136692f8271d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-osx-x64.tar.gz", - "hash": "104e724bcec68fd77e8f07b71ed364cbcb40394c9ca0d8ef52e1eaab867b579f06ed7b0b203a50bad3df45634d52b6be60829d87a48c1800467f242879f8884e" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-arm64.exe", - "hash": "4282448eccd10678e4b60b913cf0d665a37646d2edf970b18e992ed9a852166dbddf31572cee0b7915852c7d82125667884ab48bf2511a2b10704aee35f0a89f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-arm64.zip", - "hash": "f63efbb22e0d305c57b1bb97f1fc6592ac68247ba2fdc07147c8895b65007901e12159ce344d8cbb9ee2ab4e142c6496aaef41f6621117a94b7f5a99e3566985" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x64.exe", - "hash": "45a30ac913a47a121a4b77acc1c93ce4f340fd1630f4dd4c897709f5a1f522f18a5144cf7afe912343a9b9e8833fa8e3c26b94d65369df8bef8432d87ddcd717" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x64.zip", - "hash": "4ff0392ffa71411b65cf583d0e0d4380500d0b164852fd036ba756e15443de87f21c0d256c2cb44a11ca6385b5f18f7c5625bf78f63f3ceacf4fc95eedc04996" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x86.exe", - "hash": "1f26a2362d51e6359a3c43955d1b713e106d09ec94535518339db5b784f31067681cdcd3787af1071fba5e485ae9a6641c1a5af05f31ca24f1bf0665ce11e55a" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.9/dotnet-runtime-7.0.9-win-x86.zip", - "hash": "be2da55aab212fd52abd5481f510a15e78fd0c61f2ad973047f4c3423d7ada590d8e04d92d29c3b856bb178f341025f124b91a8e83ca536f1b4f5333c735aa9b" - } - ] - }, - "sdk": { - "version": "7.0.306", - "version-display": "7.0.306", - "runtime-version": "7.0.9", - "vs-version": "17.6.5", - "vs-mac-version": "17.6.5", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-arm.tar.gz", - "hash": "09bc8cf29f7080f4aee117c3ecbfb0f6c3d9a0b83280e5436429f61b3dfb5878472f9c68282d1d1a850ffcee15b51c342bfb192be76d89276e9886aef5ec5e17" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-arm64.tar.gz", - "hash": "1500927cd2b1e048de8ee5339937fd41073a85a82b7a175220a411212d22e4906b4e5e6d29b51d068157d2ecde33238d540508c700793dca8b04b4d1dcd5c89e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-arm.tar.gz", - "hash": "70929c25348cbe34f354f65a176c85d6f2c2a91efd342004dc66a5aea0270d0aa58c07033b48dc12bbd56233de0072b2019c650d8602cee43e0836469731f004" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-arm64.tar.gz", - "hash": "afc1103204b502c077c53caf56f9cfcdf3ed0b8028a029c067aef5aeea519c8ca2aeae2c8f82710fddda404b80304fd620cf017dc029c6b9040c9493ff954fc1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-x64.tar.gz", - "hash": "e7ec038ff38f0c7352acd88f382d20babe5aa88a4328a33adb8f3c52c9727467879cbf76c0e4e08ba2ec6fbff5f342c0aeb7f5e191e4c5785d9b1efbd9394244" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-x64.tar.gz", - "hash": "62df9bca9492b3273830e098e787ec3664243989ac03550534599fc331693553660d3cf8bca655f2d1326070dbb7b20b04743eaba77fa9cc69f6f0fddfdebd06" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-arm64.pkg", - "hash": "b2a290d2bc6f0707acb0b98112c7aa812edb661a3819514e068a256110bfd56e0a3c5d163ce850b24eef8e0e430f2623fed435fa7d891e8c424276212ce21971" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-arm64.tar.gz", - "hash": "ac8c0b6e9d2235c8ee639c6c50b2f412f808a16f1616964f6166c7c57d899be2a0d8e83dd6f3010634f8f252da483c5d99cb083703996a99a6b9238cdc2cda6f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-x64.pkg", - "hash": "eda231c832dbcb4655948e1a735c814bbd724ee94f3089752b59e76f567b85c91c14ff02963c98522ea877816013fecbf2beef99ca44ad9a9168c7e9deb758ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-x64.tar.gz", - "hash": "1ba293a9e07819aeb646c86f0db8280394c4a2b62f828d57a5ae80416cbafb1649a22e27cb12cc315dec1600cb825be645777d15e2f7c8d858fac3c55d0ed057" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-arm64.exe", - "hash": "30fba494089a594a1699b2ee8548d155d9fc00819f0b60838a3e95f7f46a9aeb1f9920c11c5988ac323a2b74b82057f3d5e488b24a578448fd07aa0e139e2a3b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-arm64.zip", - "hash": "86c3e88e1ff08d8e8ee61cb50d85fda4da29014284f7a8a26a012b232053356144335362cfee8d26c00c151f7569f93db1c3c4ae269de425b625ee94a5884a76" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x64.exe", - "hash": "29f99b73727fd4ddf3d2d7ddde4f4175c291a4626e474c28d804383e7cdca7ff3ccc91ebf421eb9ee3b167744347a1ddf2bf163a4e34d29d923c5885fc1e10a1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x64.zip", - "hash": "7334ec6d62053f14d0e5ae866dea998a2ecf305dc77336961366cf91f4a1ff8522a9d9951611ac379a09f4bb210f7f31c6840bc2497b076d277cd82f0b979242" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x86.exe", - "hash": "0ab63666899cfb233de6f11de23f54dde3f75aacb19943753dbc17c1795ccf80039e25747411891df9eed2d36877a25e110ba1efcd606016d068f1f466223e64" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x86.zip", - "hash": "d54f562b6869312225d1ed6e33541817b32c2b8a0dabe102cd5fabec5d679e91bb5becca8766036141a42f8c1d8b3f056914ed5ad95bc3026e1ebcbc7118f9a3" - } - ] - }, - "sdks": [ - { - "version": "7.0.306", - "version-display": "7.0.306", - "runtime-version": "7.0.9", - "vs-version": "17.6.5", - "vs-mac-version": "17.6.5", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-arm.tar.gz", - "hash": "09bc8cf29f7080f4aee117c3ecbfb0f6c3d9a0b83280e5436429f61b3dfb5878472f9c68282d1d1a850ffcee15b51c342bfb192be76d89276e9886aef5ec5e17" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-arm64.tar.gz", - "hash": "1500927cd2b1e048de8ee5339937fd41073a85a82b7a175220a411212d22e4906b4e5e6d29b51d068157d2ecde33238d540508c700793dca8b04b4d1dcd5c89e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-arm.tar.gz", - "hash": "70929c25348cbe34f354f65a176c85d6f2c2a91efd342004dc66a5aea0270d0aa58c07033b48dc12bbd56233de0072b2019c650d8602cee43e0836469731f004" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-arm64.tar.gz", - "hash": "afc1103204b502c077c53caf56f9cfcdf3ed0b8028a029c067aef5aeea519c8ca2aeae2c8f82710fddda404b80304fd620cf017dc029c6b9040c9493ff954fc1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-musl-x64.tar.gz", - "hash": "e7ec038ff38f0c7352acd88f382d20babe5aa88a4328a33adb8f3c52c9727467879cbf76c0e4e08ba2ec6fbff5f342c0aeb7f5e191e4c5785d9b1efbd9394244" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-linux-x64.tar.gz", - "hash": "62df9bca9492b3273830e098e787ec3664243989ac03550534599fc331693553660d3cf8bca655f2d1326070dbb7b20b04743eaba77fa9cc69f6f0fddfdebd06" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-arm64.pkg", - "hash": "b2a290d2bc6f0707acb0b98112c7aa812edb661a3819514e068a256110bfd56e0a3c5d163ce850b24eef8e0e430f2623fed435fa7d891e8c424276212ce21971" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-arm64.tar.gz", - "hash": "ac8c0b6e9d2235c8ee639c6c50b2f412f808a16f1616964f6166c7c57d899be2a0d8e83dd6f3010634f8f252da483c5d99cb083703996a99a6b9238cdc2cda6f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-x64.pkg", - "hash": "eda231c832dbcb4655948e1a735c814bbd724ee94f3089752b59e76f567b85c91c14ff02963c98522ea877816013fecbf2beef99ca44ad9a9168c7e9deb758ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-osx-x64.tar.gz", - "hash": "1ba293a9e07819aeb646c86f0db8280394c4a2b62f828d57a5ae80416cbafb1649a22e27cb12cc315dec1600cb825be645777d15e2f7c8d858fac3c55d0ed057" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-arm64.exe", - "hash": "30fba494089a594a1699b2ee8548d155d9fc00819f0b60838a3e95f7f46a9aeb1f9920c11c5988ac323a2b74b82057f3d5e488b24a578448fd07aa0e139e2a3b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-arm64.zip", - "hash": "86c3e88e1ff08d8e8ee61cb50d85fda4da29014284f7a8a26a012b232053356144335362cfee8d26c00c151f7569f93db1c3c4ae269de425b625ee94a5884a76" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x64.exe", - "hash": "29f99b73727fd4ddf3d2d7ddde4f4175c291a4626e474c28d804383e7cdca7ff3ccc91ebf421eb9ee3b167744347a1ddf2bf163a4e34d29d923c5885fc1e10a1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x64.zip", - "hash": "7334ec6d62053f14d0e5ae866dea998a2ecf305dc77336961366cf91f4a1ff8522a9d9951611ac379a09f4bb210f7f31c6840bc2497b076d277cd82f0b979242" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x86.exe", - "hash": "0ab63666899cfb233de6f11de23f54dde3f75aacb19943753dbc17c1795ccf80039e25747411891df9eed2d36877a25e110ba1efcd606016d068f1f466223e64" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.306/dotnet-sdk-7.0.306-win-x86.zip", - "hash": "d54f562b6869312225d1ed6e33541817b32c2b8a0dabe102cd5fabec5d679e91bb5becca8766036141a42f8c1d8b3f056914ed5ad95bc3026e1ebcbc7118f9a3" - } - ] - }, - { - "version": "7.0.109", - "version-display": "7.0.109", - "runtime-version": "7.0.9", - "vs-version": "17.4.9", - "vs-mac-version": "17.4.9", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-arm.tar.gz", - "hash": "07af150d5d9661f5d3bfbffd66ea15b01b13f2ab54e676d75e6e8b056652daea93a750ce722300f6c7e92f290892417abc72fb94edbab1618d81de30721a1dfc" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-arm64.tar.gz", - "hash": "9bb2550dfb2c311dff04d41808ee64ae026ca12e0240a7d0dd0891f73c26680cc547075ff58b343556d4a94aec31882f0fddc3ef4f18bcc88adf1ce48067b3c7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-musl-arm.tar.gz", - "hash": "783369d2815b7770e1e402bfeda311ba710279ce51c24e9e3eeefc8a2a34b97ae82c8dcbd227d563d52407878d63fdb79ac639bcf0deae2e61511fd75195a950" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-musl-arm64.tar.gz", - "hash": "34730336e57333bfc51f6800b4c695fccc554071a71b111c27effaeebe7e5975bfdffc02b1850320c57e7d39554f196ce27777be9d44f45d9f47c01b348e20fd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-musl-x64.tar.gz", - "hash": "3160f01c410db414483e6edbfda7d3a98abbb67c25a51e0ced8d9840b7fa9cced4cf47641e6012d3477de8eed5dfea32d5a6d85f34acf61562ae9dd48639980a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-linux-x64.tar.gz", - "hash": "4bd5b733b7a7471e493af3165e4a50f1f93e3c6df0ebbc884129d0b23677dfa87c40747d7fc1973c78ccd6adc17366065fa774adf3d9a9b399aba05e6d03b821" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-osx-arm64.pkg", - "hash": "5b748ee0eaf3bbf75808d1bf3b475eea9e59e5c0936b27228a02c3d0fbe65d22437a90abdc65b26e9f85d6fe807e7a0b8493c4754fccc223ff93cd28b05002bf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-osx-arm64.tar.gz", - "hash": "012f12f584c8d1e8cfb8e9c2996bff467b43776917bd0d98d308f2a473fb099ee7297a0a920d470d78cdb947f2a8a48c86b641901894267b1c50f2762017ea8e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-osx-x64.pkg", - "hash": "8fb0dcf4aa25728d4f1798e1961a370038ffff87a9a1a959cc8df79107950a347a637d4cfed18f644b6d3ddbc88c16885b59593d49b2400ce2ef6fc233c0586d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-osx-x64.tar.gz", - "hash": "2b3f2a1a052c5ed1bc5c807d3938d3354c1bc7824b36484f51c74643cc7feb037c971477c14c635e070417a88229f7d0c7d0e726e064161de03e86524755eea8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-arm64.exe", - "hash": "ec6808e2f0af37c7657a61d861d163ff520b37ee21b49b1feee787e679ee4ad76b5ce148643446a0d0608ed463599a9095831293d606df53d976b5ea7751099f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-arm64.zip", - "hash": "b2bccf1e81edb08f85a951933385af037bb7ae16934026321964b6e6cceafc0f272af89fd56c1cab8659cc0790bd00f66086f016f5613e1318f15cc3415ea3a5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-x64.exe", - "hash": "c75993c5c29dfd1f5c3fbfb4f44b571e508285083bde3e0ac670809c13fe145153e218ed945cc1e9cf4b865d5f522f75165112e23a153a57f38f4c22dc92c142" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-x64.zip", - "hash": "9106e18a0813f90f8d70caae86fc6b5933f9c1d6735b9048d3048d8aa1448833d729af91ffdb4ab54b295fc81171b834809e8107ebb0c0da68792c01b7bf636d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-x86.exe", - "hash": "a41698b6e94a32abbe910fb02c83a8834539085612f9667b37766597ff6783bb5ec5c761a2f220869d2c6724286b11da9b007c4a6f7c7b48214f1a56a08ade1c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.109/dotnet-sdk-7.0.109-win-x86.zip", - "hash": "2d97f96814fdc4a09da46facecff5adb9ef533e1d59dbb2a6109b8c6884cfea1e77b6ebdc32c9299a08236acf807babc31eba26a8a36d9cc8cfa8448bd52d2ac" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.9", - "version-display": "7.0.9", - "version-aspnetcoremodule": [ - "17.0.23172.9" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-arm.tar.gz", - "hash": "95d91577e0625505aecf095ebc18a86ea3b4d4c4350b23ac83e8bffafb7d2fbf06d5dcbb6faad6eea0f694989faecd77f57be60ddf3e4735be1cfe8f1a0cb9b6" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-arm64.tar.gz", - "hash": "447ebbd115b8d38eeba70f531010832db535cf3a17404491f552e99a5a59c8c63525640694a6753d27e9a7ed5bf1064998491c1983361c1c37b152b01a3b8f8a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-musl-arm.tar.gz", - "hash": "46939aecba78267d78218faab7ae00ca005c2a2653affcb39b0d8357166ae5176139ff5eb062cdca12a558f8f8645bdaa6c03f7096027a867c4ceb308bc83d6e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-musl-arm64.tar.gz", - "hash": "2947d01c38b9b23238a24c2b10174dc8793bb3c02fea34a9bb93811e865b189873c0a32936468d2a906639cc10d6d86ecf1929c0aac07081215b38a552876eb2" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-musl-x64.tar.gz", - "hash": "37e9fdd91f1ee0c6627d5d0fd433fb64a51f576c1dbf29a92d1f209f36e2c8eb2fbead5213567f85013d7fe5c2874e9eac54b84dc2788b89972c2b92fd9898f0" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-linux-x64.tar.gz", - "hash": "aabf4fa5ca726dc52774e5d644800ef7477815b22a982b7a2752dec6569186aabca93d5386e195e7ead377144601a786ae6a5d76ff28435bdabfad495cfe554b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-osx-arm64.tar.gz", - "hash": "fbe725a764b765f9954ae771b3d043d6d1a53e53149d0b4c89a4138793d9471f2924f68a5b8e1c107d9faa07946f2ac00584ded9b179ed8d40cf230ac7d34750" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-osx-x64.tar.gz", - "hash": "b2cf51cff120abda9b5ae213e294f73debd620bc8f3e6b12e1bb628df31457a5bb8c6dbb12cb1dcec24a2c04edd5ebe807d6761f6095e7a90441f1930acb8185" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-arm64.zip", - "hash": "d0e1e09984064804ea4f6e5b1eea8feb0c00363d53082a66710a182510d26603b7db58ddf8146c0e4d6de0890cba38e8dbed9656d80335984db34d94b7fc7237" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x64.exe", - "hash": "fdd469c95fc21f6398c3ff1aa54e5c7cea3a2c6a1434382f4a4d5e2255f507239defb99d0f7840d1eff1b97075a61d05885d1541fda8fbbcce49b0c3bd86af7b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x64.zip", - "hash": "77d97fcebbbe2c6b36adc5b7df369a3e7b5c83db3638a3dd72360d4f2019c731edff08aef28ff83982a718f541b1d5f234f463c49b9d9c14cdd71b429b613d05" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x86.exe", - "hash": "875272d72dc4cf5c0290d3282307415391294d05ee4cf318595f5b1afdd5732520442deb4a1bdd11be6bdfd25a0f74a60e7c43fef30eeac2828e5090bbfa3ff3" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/aspnetcore-runtime-7.0.9-win-x86.zip", - "hash": "5bb82c955bfd6ba387bcb5e93529a34497b8ee91dd5ef2ec1c395a9c7aad9abe931f760677f28a04b9912236ec1ccb05e2612f4d44589110e3227697beb3f58b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.9/dotnet-hosting-7.0.9-win.exe", - "hash": "898ac87894c53332c0273ff627f86b36374bec4ec26d622a728877053e08e6d6ab3463f1b078f03f0b125908da0c5628b952b5cac101bd21c119a7a7818ad736", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.9", - "version-display": "7.0.9", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-arm64.exe", - "hash": "79f5555a2b0f355a1cb56b896fb41a716a1e83958faa3d23b4c65775ff59d6b8088036ee4d48aee89de6f76358ca81c7a627bdf2b464c2e5f667c11f39e3fde6" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-arm64.zip", - "hash": "21858dc2fe65f5b6b3f93e3423fb91c7d28de367b55f2d1c16ec0e702a3a70be1359f19b812e5f5083629f1902291cfe21c1140a1030e9950c7f47ffce171c92" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x64.exe", - "hash": "e0f119cbb08a1ee5181d294ba135c57b9ebef642d1d6f356c8d6bff9164e2ec8b36bf0622d0abacc0ce872735745109be025cd34a544c5a03939ae546bb0c3f2" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x64.zip", - "hash": "67731ef219e0d6a742c468b6354459e1169dcf8512ae6f090be70870ff85a66c4485077548897dafbd4a4da5e57ded0cac5337c655291177c80b883c1579c989" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x86.exe", - "hash": "e0bf397c1740d2ee6a08c57195a4d97b4e64635d0833368d25675561509b7b9b98ed5acf3e9ccb1a5a21508bdbc951ad7dbfa9647858c7c6e662c49be2763af5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.9/windowsdesktop-runtime-7.0.9-win-x86.zip", - "hash": "8056915ed5a0f5561ab52ec1aedae71c789681a84c35570a3f4dbb8b1abfc6c01c73caaedf1eb585081a4e31438ee36bb424229e8506a43e53b8ee7082287e43" - } - ] - } - }, - { - "release-date": "2023-06-22", - "release-version": "7.0.8", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.8/7.0.8.md", - "runtime": { - "version": "7.0.8", - "version-display": "7.0.8", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-arm.tar.gz", - "hash": "b21be61a8504f06c1930c5312c7dc63e2eb9beb6de56ea2e557004e712c46c8b258969ac32b8d1aedf6a61b2854ae31c59c635123e3ce63ce60b7398b83d9846" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-arm64.tar.gz", - "hash": "92835372558bc9913e81617d0c396a60427fa30eb2dc9249bf73772ee8c221cce7358aaa4cfe5a261849f9b1303225f6052d29187cfbb15cbe3caffbad4fe3dd" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-musl-arm.tar.gz", - "hash": "b5b247f69a9998e357912b2d4b51d6886c3e38a92d55567495e2f4c92f511ef8384cf09201e5d06690011110af0cc2157b602479e49801adc5e9cd853f95e807" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-musl-arm64.tar.gz", - "hash": "f165b0dcd87bc4210a48cccd363761ff36afc7b0ce4259d3f0531d7e89049b00218c980b310d34df85ef0159d704e9473c53cd2bca3835c7ed26330930e30791" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-musl-x64.tar.gz", - "hash": "4a30cdf834733fa92c15d23df15a58440623ce471f4afe4986e5c32722d81215adc418a3b953712fd1bdf41eb9b87893ace7cfd1c35d781b1075bf69b8b64e12" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-linux-x64.tar.gz", - "hash": "50463de25360aba18c29ab8a3d31896793a7bcf899b40249fcac77efab24888e93ac906dac04ea5b72026c89c07dd371247ff89e8613123dead7e889906aa876" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-osx-arm64.pkg", - "hash": "90e13527940f7d14b525b607daa08fe992e1301736716e9308fb591d345cea0d5a4c83ba6390064d0ab7c1cca2b132a027041e1b23daf17c98f3d4b2bda4f31d" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-osx-arm64.tar.gz", - "hash": "bad440aac7e065c88685de902e5328990d44e60fa8f583d2fcaa38cc9d3cbaf01810cbc40b7cf9275e53f386b59cd88e563f96e907c8b0c0668fa6a905a5eaa4" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-osx-x64.pkg", - "hash": "dd8ae186668226ddc9164fac6fbc592f423116452eb6d635d7759b6dbf578c44c9d4808eb552434a14d5d32cbd0fb347a63d7a0e5d77a229b84c7ccfaa0e4c29" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-osx-x64.tar.gz", - "hash": "e2c01f09a7532d72578dbbc27ea0156b5e0ee0c636eb0503ec34bf4445b0263857063dbd7701a29baa5e74129ec9c7593566f66cb33cccd40ae64ec888d7ba3c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-arm64.exe", - "hash": "3d21ca8d545766017da8b49ce6dc4672f7ed5a7b5218818882659d00dbed684cd6921cec4c81e96897fbede263c4201ca27831bac9c86fe9a11f1cf6931b4004" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-arm64.zip", - "hash": "8e8e751b5fd30b83347646545675eb1720ca0f702a3e53692f8f543d5a85a5a485526a6541a9f0e333c0f8054c7e64c7f842cab8c29ce9f643fe9a20720927c7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-x64.exe", - "hash": "5a938585f0125b6db1518a9ba12a8ee640946545c4202633a949f506c24db915e2eb1a6a2c521f73d0625862e0259195343bdcb2d1233c7e10c2d9ca4d6f05eb" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-x64.zip", - "hash": "52b2a4179cae5a7c74470068cdb89d1e9cdb26c3a9fad0d362e0d16f2a203d8bcee8d88719dd62fddb4f50094c9820a765c75fc5188e8fe6b94cdcd84d20b39e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-x86.exe", - "hash": "fc187fdd67dc31089f7af25645e2bdbe40a40af01d22a96256e7fc5e8448179f77a73deab87f76bd991e59e20d58eca1f8d2e218b1738887edf83ef758472007" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.8/dotnet-runtime-7.0.8-win-x86.zip", - "hash": "c2905ddb5f71fea9d39c734f431efe61240e74478ae9162b98296ca5eb46d775478133ea7e6835c6efc27f43616555146a7c9e41f5a9e93708671dad61401826" - } - ] - }, - "sdk": { - "version": "7.0.305", - "version-display": "7.0.305", - "runtime-version": "7.0.8", - "vs-version": "17.6.3", - "vs-mac-version": "17.6.3", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-arm.tar.gz", - "hash": "30ff42e7d9d611f6036376651fc447c1b413f2ab1a555139bcd4755cf14b9691dabed53e12a78badb9c785d76c9a3ed43fc7293a0516ddadd09294d2baf1113c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-arm64.tar.gz", - "hash": "451622fe88ed6c6619be6c27f3e9eeee94ae61db3c9a0b8eab7cf1b14a62d41681181748d823a1207ffb6da6e3a098615aa2f59be8e60d403ba4cb98ab267a50" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-arm.tar.gz", - "hash": "680a7d1df11ac5e947c2886ea62c26bc241e7a434d35dd9a40b6911ed8c8fd0a1cec32f64e017060b8c0f7fa5e882dc3d10f474a49a8f73624c148c20b7b30ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-arm64.tar.gz", - "hash": "c448a80355375c119604916dbf06ef21ca86949c0f859a54e0c6bfb673d36ab9a93feb239a033740e08ebbe64df106ef3764d6a33b58fd9210649a752fbc0fc1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-x64.tar.gz", - "hash": "ed64c752a3d8f62e56f248cd56f147f9536ebe9383fdae2d09bacf57e0cb8c7791a89354b3d55c2689c0fec41291da6a605e10b8e0c3fb8743fb8ba5d5de348d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-x64.tar.gz", - "hash": "c63e6baf3760a9949089d78920531a1140f4f31fffe13069b2011c61c3d583d585f5ec8cca973b414fa35d48ccbfea9c1ec1c88222b53afd2af5974be3b5cb1b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-arm64.pkg", - "hash": "091e104d6ed542e6bbcb4463bd6c22b68022750e373ccb6ba23b86335cbb55bdcec47ba2d5b4278fe1cb58c21a5aadf8bacaccde6eaca15879601e684ebfbc63" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-arm64.tar.gz", - "hash": "4567aab659a1900d60f2dc07f6c24954b9fc2c49ea54a75c17825d2b9e131860de33bd79195ae529af1df884a25c7e626d7463d13e340ce6e99a74c8ffe60653" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-x64.pkg", - "hash": "e34e39ca376edd0890e415a27483d7ff2096e092bb5e3e2e9ea36189bd3c3caf6af0067a78e3e3e88f4edfece7ca4738ddbfff926d73a64ada6fbab1d7bc88a7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-x64.tar.gz", - "hash": "27762a9104c5f44c189fad2cf81984369503add9c6cbca604a4e539f9957db81d807981ce23c025a74feac1a978b9d679eda66f4078af2de7e0bad5992177700" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-arm64.exe", - "hash": "0d95b2842ae855565f340768f79bbfac47fe25a4d717c8d4df3bb10bf0eb2068379a0611b0d30e9e9d57ff7f1e50de30968784de20771b1479f9f49e25c9d67a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-arm64.zip", - "hash": "ab2c45cea3e69527b1e5dc5097b7e22f777c50d943de364e18510ac7e6c93cfb87f628dc0c3b221238f9a3def67304a88b81b7a76ae44484690fd38f15c25acc" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x64.exe", - "hash": "d0f106f330e3f529499d5288ad8310d6cbd436787820236694866e147e3d8d8e0aeb6447e297f8fd2e961ec183c4602d39785c5322330d7503209193d188bf1c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x64.zip", - "hash": "9cad4fe5efbf9d37bcefad88a1623da12946958759a6ab7795602598a9e2c7e9a948c335e7fbb002b7c03af877798f24c97546857e8822f639cf92ae81006221" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x86.exe", - "hash": "34ba368923593c95571c7df001917c1211113aaf60472d996305344e72a16ab2c2fc4bc7b8f94b8206c48885f2ef17774c6d5ef83937ed32205b79374a61224a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x86.zip", - "hash": "7dc47ee39b5805cfdf460254f35aa8181a449f9f923127760500259bc635bce912ef20c7602f1e283830e44cf711ddafd4b1512c5ee81e95a3e1a474c64b27e0" - } - ] - }, - "sdks": [ - { - "version": "7.0.305", - "version-display": "7.0.305", - "runtime-version": "7.0.8", - "vs-version": "17.6.3", - "vs-mac-version": "17.6.3", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-arm.tar.gz", - "hash": "30ff42e7d9d611f6036376651fc447c1b413f2ab1a555139bcd4755cf14b9691dabed53e12a78badb9c785d76c9a3ed43fc7293a0516ddadd09294d2baf1113c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-arm64.tar.gz", - "hash": "451622fe88ed6c6619be6c27f3e9eeee94ae61db3c9a0b8eab7cf1b14a62d41681181748d823a1207ffb6da6e3a098615aa2f59be8e60d403ba4cb98ab267a50" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-arm.tar.gz", - "hash": "680a7d1df11ac5e947c2886ea62c26bc241e7a434d35dd9a40b6911ed8c8fd0a1cec32f64e017060b8c0f7fa5e882dc3d10f474a49a8f73624c148c20b7b30ac" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-arm64.tar.gz", - "hash": "c448a80355375c119604916dbf06ef21ca86949c0f859a54e0c6bfb673d36ab9a93feb239a033740e08ebbe64df106ef3764d6a33b58fd9210649a752fbc0fc1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-musl-x64.tar.gz", - "hash": "ed64c752a3d8f62e56f248cd56f147f9536ebe9383fdae2d09bacf57e0cb8c7791a89354b3d55c2689c0fec41291da6a605e10b8e0c3fb8743fb8ba5d5de348d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-linux-x64.tar.gz", - "hash": "c63e6baf3760a9949089d78920531a1140f4f31fffe13069b2011c61c3d583d585f5ec8cca973b414fa35d48ccbfea9c1ec1c88222b53afd2af5974be3b5cb1b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-arm64.pkg", - "hash": "091e104d6ed542e6bbcb4463bd6c22b68022750e373ccb6ba23b86335cbb55bdcec47ba2d5b4278fe1cb58c21a5aadf8bacaccde6eaca15879601e684ebfbc63" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-arm64.tar.gz", - "hash": "4567aab659a1900d60f2dc07f6c24954b9fc2c49ea54a75c17825d2b9e131860de33bd79195ae529af1df884a25c7e626d7463d13e340ce6e99a74c8ffe60653" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-x64.pkg", - "hash": "e34e39ca376edd0890e415a27483d7ff2096e092bb5e3e2e9ea36189bd3c3caf6af0067a78e3e3e88f4edfece7ca4738ddbfff926d73a64ada6fbab1d7bc88a7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-osx-x64.tar.gz", - "hash": "27762a9104c5f44c189fad2cf81984369503add9c6cbca604a4e539f9957db81d807981ce23c025a74feac1a978b9d679eda66f4078af2de7e0bad5992177700" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-arm64.exe", - "hash": "0d95b2842ae855565f340768f79bbfac47fe25a4d717c8d4df3bb10bf0eb2068379a0611b0d30e9e9d57ff7f1e50de30968784de20771b1479f9f49e25c9d67a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-arm64.zip", - "hash": "ab2c45cea3e69527b1e5dc5097b7e22f777c50d943de364e18510ac7e6c93cfb87f628dc0c3b221238f9a3def67304a88b81b7a76ae44484690fd38f15c25acc" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x64.exe", - "hash": "d0f106f330e3f529499d5288ad8310d6cbd436787820236694866e147e3d8d8e0aeb6447e297f8fd2e961ec183c4602d39785c5322330d7503209193d188bf1c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x64.zip", - "hash": "9cad4fe5efbf9d37bcefad88a1623da12946958759a6ab7795602598a9e2c7e9a948c335e7fbb002b7c03af877798f24c97546857e8822f639cf92ae81006221" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x86.exe", - "hash": "34ba368923593c95571c7df001917c1211113aaf60472d996305344e72a16ab2c2fc4bc7b8f94b8206c48885f2ef17774c6d5ef83937ed32205b79374a61224a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.305/dotnet-sdk-7.0.305-win-x86.zip", - "hash": "7dc47ee39b5805cfdf460254f35aa8181a449f9f923127760500259bc635bce912ef20c7602f1e283830e44cf711ddafd4b1512c5ee81e95a3e1a474c64b27e0" - } - ] - }, - { - "version": "7.0.108", - "version-display": "7.0.108", - "runtime-version": "7.0.8", - "vs-mac-version": "17.4.8", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-arm.tar.gz", - "hash": "98c68d8546efcac46a66860be8a1d5b84587c7d1c36b18e52f61159340b4f9772d72dab723b1cb85ef9df6ccd513fc1ce23407fdd1fed60eea0ffd135140d9b8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-arm64.tar.gz", - "hash": "b8ad0f25641bfe5befc178fc0beb8a556901dc176782d5031c4fa5381a19b3982cf0e00d811d8adf30c9d0b82399080582b9df876a488d69fae8f67c1fd75bf9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-musl-arm.tar.gz", - "hash": "a475e4936142f4092980c1134d349a1407469aed7a2839748df6d54f4bfd8b899e3fb27a8b939bdc352b91a08aba7fa4f74220a2de73079d01879c823d6eb556" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-musl-arm64.tar.gz", - "hash": "bffa88d273f62da280e4e02b883a44754e2c44f8ffc48bfb69999fb6fff7e1350a8a425263ae56a271c976563647589a9e33407314d13727cd83d190b576d44e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-musl-x64.tar.gz", - "hash": "5f523cfc2798597f3979b9ca704d14f4b06e3c32df963f889532b5be8e975dcf077b8a29fe29e9555676fbe67cb6fe129796b25046977d8b290d294b4494e4a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-linux-x64.tar.gz", - "hash": "fa9573271be33574f5300134e89f64748eb700eecc361b6ffad5e383a700fd4c0fc28fa15758279a2d3321763af606d0c50007b795159a4cd82a03e8bfbc81a5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-osx-arm64.pkg", - "hash": "4d085c767725c397e118d7c6b0a961726a3c7f279cb1417de3207dfb46a26960ad579621fa2f8940689a3f5b655f40af4e1a77070ebeadab9457121981a5be53" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-osx-arm64.tar.gz", - "hash": "9e99c3933878bcc6f5423eaf253584fafdec4d5bbbc437b027d70ad3aaa6be3dc3b7c3481e6c70df55d660bf32b751ef2000bbb94be82ddb60763a81f0ac05d0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-osx-x64.pkg", - "hash": "a2ac0b05f8d4c6905aee215f6edbfc9f6dc3451b796772a973185553d6f7fec9636de222c6541120ce37c21d9be2f9739bdb9311800b706843b4093daffceefb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-osx-x64.tar.gz", - "hash": "5196b12d25497d67df5822fea35b1e096885d1a3822f512839d69ddeb3dfcf57ffe68a59c638307617e050f1a1784bd7c83ee7fa6ac48e9ceab092d08f7bc0e9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-arm64.exe", - "hash": "564c8b09f3544f86f81b2e88b1aad35d515bbcc723cf75ff92842a775b8fd91c88d2321c8905fe31fd0d9630de0586c9387a6e00c551c9294d0a07d8ba04c904" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-arm64.zip", - "hash": "bccb1295aaec086457279f284d9ab8906fe73fb6792fe214716b2aef76dace7d53dbcd0623bfc3ac1dc5ef6cb388297dd6073851db622223849ca6b17750ef53" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-x64.exe", - "hash": "654218fafd2ae169211d31bbf2e42f72ef9640d298cc29dab09dc0ae619f8eb0f7b58aa35e135b165cc1fbd3613aa549a9b4febfcc39b3a71bc3f0b0a7e62b10" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-x64.zip", - "hash": "e7d41a06e527f7b388c3fff7924f84a34ef14d4577961d154b3fd351639b5b60327ebb25e6dab53a757fbab6857cd872677afd4f38624e48008b61c3a7839329" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-x86.exe", - "hash": "2d5277a2905e2954390a761c803fcde1a6cd70c82d1458d5330854dca44f56a3897cdfa869224fce5341aad10f81e125f1e0df3eec2905cf52361a2defad8c29" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.108/dotnet-sdk-7.0.108-win-x86.zip", - "hash": "8a1f3d9a8ac64cd27049c390fbcf9f6f0147b5c231d523db8ded07f846b479054d44d78ff57bca987312bab486202d56c184e18f3840eb97ba67c4f932848d01" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.8", - "version-display": "7.0.8", - "version-aspnetcoremodule": [ - "17.0.23170.8" - ], - "vs-version": "17.4.8", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-arm.tar.gz", - "hash": "b4c73f8b8b146d81d38b67d061ebeeb4dfcf39584208ea4011ab2aa9e2edf54cb3064cdea42aac674c69c68fa35146654ba347936864f8317563bccb02a72100" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-arm64.tar.gz", - "hash": "ce521f56d95c39be6b8428086fb4e0b13ec49b08431bee151a625aeb2366622e6c688abc79b76810bf5c17a8547b894d5ae57539e15ddb3bfbb0e11022c995ea" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-musl-arm.tar.gz", - "hash": "834bb2af89d3cfb7c4865f376769428ee4896eaa7a6d54c9985b8808519b448c2dd73427e41dfc1bd1a6f390752feb3c92575fe7fa324a69f8eeeaaf50429fc8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-musl-arm64.tar.gz", - "hash": "df8156e9b74cc20e1d493bbb19c5840484878e67aab6889c3bc14c0066646ba2652785594de746d43a864532e062731f7ac13e4233dd3214163dd38cd725c6f1" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-musl-x64.tar.gz", - "hash": "2b1a0827b014935ce9420d698ec3f32e06d2fcbc3492cf09a1557e9ba9a84cb388c675160f8bc8a6422e236050f63e2bca1cc83703779bd97ac1cdc2fe0f74e8" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-linux-x64.tar.gz", - "hash": "b75cb42ecd1936b1b2af5ed59d7f3ef3eb0a602b23f5a272e62c42de9c75db1ae54878b2f9f28d72dac15bdbeaece81cc6344d0df5eae845bc130534ef1bfbb0" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-osx-arm64.tar.gz", - "hash": "31b9806f7c3d327008fe505dbd627bcccebcc7db7179b7010ac814844782d054975cb4c1a35f6ae447fbed3227d39def95bc99169032f4fcffd35916896ed4cd" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-osx-x64.tar.gz", - "hash": "46d4e2f36240efa316c15992646d8b93d6750b987aa6bde88529e50c9cbfa69f250148ed6dfbda93c28664c555bda62fac7182a76e8ddddfa1962716169ac152" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-win-arm64.zip", - "hash": "cf490030db796ac46385618b9f479cd008a4bd1f01469fbf856fe9f28772893a238014ae02db50280de5b50776a3d382ab5ccae6de1625fa61933033b6ba9f01" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-win-x64.exe", - "hash": "afba08613cd7b4d23f91599decfeeb28c859167f0fcd4474668082eaf13a94da00d8be158203d927a21b93ab828fe479a81044a93081f1d3acd84c873a3e955b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-win-x64.zip", - "hash": "c383cbb29d2d028895f689f8b0621bcab548ec2dfb0a67b3cef788d809f1670ce0f8afc1de90fd465abc0614fce9af829fc2f249d166958009c0479d4ecb88c7" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-win-x86.exe", - "hash": "b82591bb23b1ecad2a6875dfea23caad19bee6561ffba14d9ec96dceecd057781aba36f8a4cd97032006cbf67fd4e2bc69810f2aff43eabcf729b13def3a6bc1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/aspnetcore-runtime-7.0.8-win-x86.zip", - "hash": "2241eef78f7c49d481721be7c0220dd21259ebbcd675ebbc5ec2be8dd212477115614c9fa34d5b8bedd5bc459d629729610763f700a4381d78a6372bcfb76909" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.8/dotnet-hosting-7.0.8-win.exe", - "hash": "f3ae379e1167a170824796f245221ce787e42f3a8abd203b77b4890b72e82473299130079847f43f20dc29842712cd9e572a94de2daecbb596889581c6702b00", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.8", - "version-display": "7.0.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-arm64.exe", - "hash": "6a68cb4f2b9dff00b4243deed0f7c4537c21d01b10078765cb596b2bf3fe6cd309596ebb95a60969facf775490bc080d73d24f8da5249f2ddb5983b6dc58c75b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-arm64.zip", - "hash": "fc910af51c3cbd10111a9f3addd7422f7f216ed62b2cf51effd6963a80375ee9616144abb7451be966fd63f77cdd2a7455ae2f4acdeb27631dca5b781b4c02fb" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-x64.exe", - "hash": "68337ebb614049596cc80eb2a4a3803b403e1f8268af00a367e99b0af28e6934e2de4ef3985882b5a06f764b287d7f6df3a98ff49132288cd5b3a491e402f7e5" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-x64.zip", - "hash": "2f64c05960d111f827a91aa164ba93954e12377bf75a7dfb6d71e57454ff543e36de9b71aea8f35e1453d5732a478f913b60f16f60be2d73ab2d58987663d7cd" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-x86.exe", - "hash": "2242a923890050d71b14c54fd754066e1ec78877764649f36c47050f7232638d9f954bd726519f0567b61bcc150e9637e6040a8ce8c4f19a659d9e136541f050" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.8/windowsdesktop-runtime-7.0.8-win-x86.zip", - "hash": "30952b5ffc507282d01857232ad7da54b6b259b83edd2aebc91b26e20afe41a839590e4455dcc6f241018b70ac8bcb3e0c18be002cb4ee5b6fda97a6f84c8273" - } - ] - } - }, - { - "release-date": "2023-06-13", - "release-version": "7.0.7", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-24895", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24895" - }, - { - "cve-id": "CVE-2023-24897", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24897" - }, - { - "cve-id": "CVE-2023-24936", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-24936" - }, - { - "cve-id": "CVE-2023-29331", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29331" - }, - { - "cve-id": "CVE-2023-29337", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-29337" - }, - { - "cve-id": "CVE-2023-32032", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-32032" - }, - { - "cve-id": "CVE-2023-33126", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33126" - }, - { - "cve-id": "CVE-2023-33128", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33128" - }, - { - "cve-id": "CVE-2023-33135", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33135" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.7/7.0.7.md", - "runtime": { - "version": "7.0.7", - "version-display": "7.0.7", - "vs-version": "17.6.3, 17.4.8", - "vs-mac-version": "17.4.8", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-arm.tar.gz", - "hash": "ef380d2369fd2ff973c6f9c54f58912386f6ffb6560c772a5a324a7c2e759b488bd783e2d7e531bfa89a9519534c178576e40f1d84a9d8ff6307a1781567dced" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-arm64.tar.gz", - "hash": "95d2b4cceecd1966bf61fa016b4deb3241c4ffd80cbe6ea1a2ab5158401493e87426b8f41e150e595757fa8e8fb06a8e4631ffcf6bb1a04eddf5ebd9b5e0eb2e" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-musl-arm.tar.gz", - "hash": "bc626b4a9794bb275adfa02de69ef5a686cc886a59eed4e3555fa23520332e8949ad8b32aba3ff08703fc247addfe75c6f25487dc5067b0762a7f2a84c3083a0" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-musl-arm64.tar.gz", - "hash": "4395b004c8e91686d35c5c1edf0922e4c4162c1e0454d244c927a5200001d2f573a32f83c535e6c7975f1451109fb6402638c545ec0bb79aefc86089c9634005" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-musl-x64.tar.gz", - "hash": "1cab2df1c4223b43d74cd40391c7bfbd0d226e170ee514d3c0aa4287a86c175a3cf6bb3e8a29b09cdd47c5258b3fd5ce0465d051b5b8ebf3e951c87c21ccda09" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-linux-x64.tar.gz", - "hash": "02c4949f2edd4c0e63286443e11f961ee2cbd173eda93b5ba192e7c95dcefe74754222f3986d00f71b213271c184d5c12796a4345d19936a38c45293ac76dd94" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-osx-arm64.pkg", - "hash": "da4fca346633d032f7c5c342220fb9756debddde1042461b153d8b7ad416f88de8b2608bc24e5f9d5bda888d274c64b8aa229ea29460e18b4e0f0615d2ee000a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-osx-arm64.tar.gz", - "hash": "440338f74bf45f143e160eb2443134d9d8833f9b0a9507443075898f23e8dff94acf17a41c8e2a4c648a977dbf977b4fb568e2d5db8c9999d7d67c7110d7d3d9" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-osx-x64.pkg", - "hash": "a424bd4eb825606b4e79880c9b38b7c499bf5944b14dcfe96138a4915ed4851373dc21d5f4d5f526b708750cdf16c509284c6a67fc37c8fa857f85db65225050" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-osx-x64.tar.gz", - "hash": "d1f76a39af4d516bb5670b2e38b0dd4775e7980a5b312c069cfe7016b567521c0a98608d550431337737cf6510f0be1f6ec74f0cdf30c948c0177a7543835d80" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-arm64.exe", - "hash": "c592cf5f43289998fdfa67a5093a210b500690c96287001af95a9d5db3e46dd0e24ff2fc088721737e5a154852a9b6afcf87e5b469e5a59fec6e580f5097d050" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-arm64.zip", - "hash": "4857834b27e5415ec05f0d2d7e49cba6b29719b7728918b6c423ee3cb358e1ed5ec4dedac6280ef047466a161894635b79853a175e9faec7f67c07782592674d" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-x64.exe", - "hash": "1af05400790a7cfa04afdf67fe0229b9fb76832dcfb388c3b18ce5622d78ed642fc01de54a1e6537de217032cac6a50d4ebc9acfad69be3d06af6c17d9230b58" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-x64.zip", - "hash": "22435dd169488028feacf9edb6e115f2e9ce2b878161a89c1b30090f051ea02ba90cc466d126815d37059cd096a4b9b542486b2597f5faa248ffdbcd7fc4f2e8" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-x86.exe", - "hash": "ffd59f0585e4a2cbf9069878df83a6d600281062b2277d20262cda0c411ed8b60fb62b1120b6b574b2e26e56ef401a52888c65da80dac7ae7fc7025a0733903f" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.7/dotnet-runtime-7.0.7-win-x86.zip", - "hash": "22364b123a4600138e115a16f7cb3aae46fdd9108cac528a9a99dc2330c108a3a863d7b4d524befab0db22503fe20b09e8d7af603d06e4d5b9fa173599252835" - } - ] - }, - "sdk": { - "version": "7.0.304", - "version-display": "7.0.304", - "runtime-version": "7.0.7", - "vs-version": "17.6.3", - "vs-mac-version": "17.6.3", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-arm.tar.gz", - "hash": "11ea570d3d89ab947d38b362793dd2d59dca0d5d4acb3d7dc595cfe3dd158ffbf8c31d5a0b8ad21f2deac8fc0e95dff609d20120ff88feacae60d6503f3fa625" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-arm64.tar.gz", - "hash": "eedfa933039e749df49dc80bc5ccb6d46c2799ffff2f634924ccc699cdbb8e08c12507ccd4f5392fbd05838696e5a642843c2da04ee7bae80e4eab5195138f6d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-arm.tar.gz", - "hash": "3639f899413811f987c95136e416ba5c069cf153423baffcc1ad62adfe79ed6358a6359ce9040e6e5f50128113865347cdd54cb3a09f6af7a8f8d6e85d9339f2" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-arm64.tar.gz", - "hash": "1a0ad920bc78e3ccbda580dba64a31d66570aeba91e2904cae54c474e809f7dd529dd58a2c990b3739aed796319cb0397359e39f8b41c1e33ffd6d456971a5fe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-x64.tar.gz", - "hash": "33a5780184017a411436ca896188b92feaf7134e9f130431305a4d346298086bd123c23c14a2c42b8aed232d6f392132ce5de3ec1f56ddd29741475bcc601ee5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-x64.tar.gz", - "hash": "f4b7d0cde432bd37f445363b3937ad483e5006794886941e43124de051475925b3cd11313b73d2cae481ee9b8f131394df0873451f6088ffdbe73f150b1ed727" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-arm64.pkg", - "hash": "75af8a3df4d92de265703c5a33a4763be791392ea7f3c5b185eddb7db029c4988278e31e796f063ad19ad1f29eb54ce8a145d3ec5119b2b6bf381c8e015260eb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-arm64.tar.gz", - "hash": "c71bd602e964a9c000c2a7c336039497a41dee8355f37bcb687ab5d27391ce4affe5f1d520ef46f7ac52256d0695c8296f8146686f754af4f198ad54b92031ef" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-x64.pkg", - "hash": "b49605f344bdad7395e6879213a5390b319c07742c210ba97e6780e424a3cf63a88c46f0b4c6604f0f95bd5eef6f29abcdf60aa7c6561072db76f499c6cc5aa0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-x64.tar.gz", - "hash": "8ac32c684d9a9691eb2847db50638e7a7179d52882d8a364e8a7b9770fa57a2119141f3871c59556e386709c895ac7b580ae374a3a32fbc652d583d414b3e29f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-arm64.exe", - "hash": "81392fbde97d3d777bd3e39e200b3b3da416dee213690a185abe417d44b05700d2669c85b2455cbc12b2c2afc97dea82e4a6acd83e52ebb94ea84f1bc71f1d43" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-arm64.zip", - "hash": "a3df6bdec69c89f8dc4b34a1663b76ca2cbb956537cb245c6613941f1a9d412508d5a9bae819840a61ff891bac1fecdb663d9b03d56e1bb22c7c0e1589611158" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x64.exe", - "hash": "648732c79f6276c37a92e211b4c5b6cf84a0a54637c0f85949ced96d31838b43a4dcae905ef70bafbc9edd3542400746fb1e00c4c84679713e97219493a45938" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x64.zip", - "hash": "b6201eace40b18f7de2b8252e9c70b3f1ae9109ebcfdb5f853df06c0e7997256257775a024e5696656ba8096e152e833dab5afc28b08f3f68cfff8ae50451c3e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x86.exe", - "hash": "617dc1e88d7d95848fedd65520113725db8f8965ef54a3cc5b314f2bf644787863753797880c5e6a48872b84f695e5893a8abfb8d13ff70183161958bfe63485" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x86.zip", - "hash": "6fa0ca90dce04e5238b9ffa0586d97e94723753ccd22b04497fb449c72f67e14a3c7f9a1e7b1fdd85e6dbb9346945778824924610fc9cb3afeb9d745b1f874cb" - } - ] - }, - "sdks": [ - { - "version": "7.0.304", - "version-display": "7.0.304", - "runtime-version": "7.0.7", - "vs-version": "17.6.3", - "vs-mac-version": "17.6.3", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-arm.tar.gz", - "hash": "11ea570d3d89ab947d38b362793dd2d59dca0d5d4acb3d7dc595cfe3dd158ffbf8c31d5a0b8ad21f2deac8fc0e95dff609d20120ff88feacae60d6503f3fa625" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-arm64.tar.gz", - "hash": "eedfa933039e749df49dc80bc5ccb6d46c2799ffff2f634924ccc699cdbb8e08c12507ccd4f5392fbd05838696e5a642843c2da04ee7bae80e4eab5195138f6d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-arm.tar.gz", - "hash": "3639f899413811f987c95136e416ba5c069cf153423baffcc1ad62adfe79ed6358a6359ce9040e6e5f50128113865347cdd54cb3a09f6af7a8f8d6e85d9339f2" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-arm64.tar.gz", - "hash": "1a0ad920bc78e3ccbda580dba64a31d66570aeba91e2904cae54c474e809f7dd529dd58a2c990b3739aed796319cb0397359e39f8b41c1e33ffd6d456971a5fe" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-musl-x64.tar.gz", - "hash": "33a5780184017a411436ca896188b92feaf7134e9f130431305a4d346298086bd123c23c14a2c42b8aed232d6f392132ce5de3ec1f56ddd29741475bcc601ee5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-linux-x64.tar.gz", - "hash": "f4b7d0cde432bd37f445363b3937ad483e5006794886941e43124de051475925b3cd11313b73d2cae481ee9b8f131394df0873451f6088ffdbe73f150b1ed727" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-arm64.pkg", - "hash": "75af8a3df4d92de265703c5a33a4763be791392ea7f3c5b185eddb7db029c4988278e31e796f063ad19ad1f29eb54ce8a145d3ec5119b2b6bf381c8e015260eb" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-arm64.tar.gz", - "hash": "c71bd602e964a9c000c2a7c336039497a41dee8355f37bcb687ab5d27391ce4affe5f1d520ef46f7ac52256d0695c8296f8146686f754af4f198ad54b92031ef" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-x64.pkg", - "hash": "b49605f344bdad7395e6879213a5390b319c07742c210ba97e6780e424a3cf63a88c46f0b4c6604f0f95bd5eef6f29abcdf60aa7c6561072db76f499c6cc5aa0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-osx-x64.tar.gz", - "hash": "8ac32c684d9a9691eb2847db50638e7a7179d52882d8a364e8a7b9770fa57a2119141f3871c59556e386709c895ac7b580ae374a3a32fbc652d583d414b3e29f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-arm64.exe", - "hash": "81392fbde97d3d777bd3e39e200b3b3da416dee213690a185abe417d44b05700d2669c85b2455cbc12b2c2afc97dea82e4a6acd83e52ebb94ea84f1bc71f1d43" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-arm64.zip", - "hash": "a3df6bdec69c89f8dc4b34a1663b76ca2cbb956537cb245c6613941f1a9d412508d5a9bae819840a61ff891bac1fecdb663d9b03d56e1bb22c7c0e1589611158" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x64.exe", - "hash": "648732c79f6276c37a92e211b4c5b6cf84a0a54637c0f85949ced96d31838b43a4dcae905ef70bafbc9edd3542400746fb1e00c4c84679713e97219493a45938" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x64.zip", - "hash": "b6201eace40b18f7de2b8252e9c70b3f1ae9109ebcfdb5f853df06c0e7997256257775a024e5696656ba8096e152e833dab5afc28b08f3f68cfff8ae50451c3e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x86.exe", - "hash": "617dc1e88d7d95848fedd65520113725db8f8965ef54a3cc5b314f2bf644787863753797880c5e6a48872b84f695e5893a8abfb8d13ff70183161958bfe63485" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.304/dotnet-sdk-7.0.304-win-x86.zip", - "hash": "6fa0ca90dce04e5238b9ffa0586d97e94723753ccd22b04497fb449c72f67e14a3c7f9a1e7b1fdd85e6dbb9346945778824924610fc9cb3afeb9d745b1f874cb" - } - ] - }, - { - "version": "7.0.107", - "version-display": "7.0.107", - "runtime-version": "7.0.7", - "vs-version": "17.4.8", - "vs-mac-version": "17.4.8", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-arm.tar.gz", - "hash": "68086b364d4ef25b8fd2022bd566a2048e78538a1a9427087c909cd14da179e174f0240df18d974f2d14dfe16c1a061c1c9a24066708c61a3aa0f9923f9e8be2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-arm64.tar.gz", - "hash": "e35655fb6244bb1e86998cb27849f35f621287aa348606bc980d0d4ac410aa66d50ebf4bd3c69bf9656d314c78c38f2d3661b8afa2d7d0b73637b7df5020fa18" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-musl-arm.tar.gz", - "hash": "87c83f5ca798e51c59f9ce18e8faecad681671d3d12ebd90f5977c71c586fccf40015226d868907a9f8f78dfd8e98467a02f635df2a6319f6e0a4ef6a4b207c7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-musl-arm64.tar.gz", - "hash": "3496b2850720423f14d8e88903e4d167a3d5e1044fe06e50ef597f7b51c7596a48e23b9bc3f2543eab776d324bdfcea3f1a13d037348d5da6d9516fa450dccb7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-musl-x64.tar.gz", - "hash": "14cc9d6484fcb50d92ad9812ad939d1578b267985c58c7604a04b1c9cff916b38ddb57f96b4aa129777b9449630ccdede8330a2bc23778407233f99228160d86" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-linux-x64.tar.gz", - "hash": "ca88563e6dd44278668bce06a4392ea8e717bb141021b55ab8b742c6fe776e7e962197c191a89d37c0caea884d170a0e9574681a5d9246ee0eefc851401c45cb" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-osx-arm64.pkg", - "hash": "ea6eb4c98e8f41bd1b5d48d8e317acb4d86e2d2c6b451e741c6dbd21dce1ff7c57cb4f1642f8978dd1b9dc9bea9328af245a7a8c995a93116b50c405b8ef39bc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-osx-arm64.tar.gz", - "hash": "dbe4a00312d4898f9bd415cd1096e96949aeb72bdef4dc3e70cc655062dd92818eb8edfb64c045b3dccb88cdd7414117d30e45309ba6c89471fda3682dd4596a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-osx-x64.pkg", - "hash": "348ba64bc0f1a44e7fc337e5096677ce7d8b925c4dc7140d6c859a46b42a006fa64836bc8bfc489ece774c57ac222084be3192af2d4ebe01608accb4b8bd95ff" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-osx-x64.tar.gz", - "hash": "13d047beea91609dcf9545f449cb924d810f7082eea4c70a98c9d1a3fbd5f2b38da5565a5e4ed5d8a0bf64b7b7fcdd9f0771cb36f19efce19c7ddcf3be4327b7" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-arm64.exe", - "hash": "0efee918435a18901fae491a8482df9ad8e87beab8553dcd699d88608965edb9caf0ef0cc1a74cb462ff09daf61ba50e34377dd4d4e975eb70751fdfd43ea5f2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-arm64.zip", - "hash": "68e78c4d71e431049264e641c30c72932016a1e7ab815c550f62e54afe19f79f566f3186759bc5c0c210f3cf27d284b57fc117b916a7e783618cd7740226772b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-x64.exe", - "hash": "61f840c968f039f21a1d95b61990b2af1f42ce79f3b6403507431e06a387d76f01370db58fed7dfe4affebcea82c716a9f5d87012773c7404dbc587f88a095ea" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-x64.zip", - "hash": "f6066ddd95ad1edf55b8ec10230881871be517b7bbb5ecc77617f02c1f6302b82133dd867688ba214d7c32a035d6b785bd1bffca3f34368d8811d9582ce669da" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-x86.exe", - "hash": "cfac95de6113e5cc787726484655dc8d45aa5453c60077ef93b5c707ca49f2a43f4cf7e13e5fc0821462e7ff6a675d4cbd536527b4a584a99a38557d4c7ad5d8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.107/dotnet-sdk-7.0.107-win-x86.zip", - "hash": "b79067476b85754c1f7166b1e4a19efc314408e1f1862bc75efd0e1c8d1c7d32e4647010911ca0670d96045782b80b63f432285f1aae7a10683a63e5116d8106" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.7", - "version-display": "7.0.7", - "version-aspnetcoremodule": [ - "17.0.23144.7" - ], - "vs-version": "17.4.8", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-arm.tar.gz", - "hash": "3d0216b153a74689d9ea1986b33e3747e62bf76a938769b913a32a7f6b9d83a0b520b125e9f2496fbf9c60a1fdf87a132a0961317cbcf3d406906a111ce832f2" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-arm64.tar.gz", - "hash": "814db12231db89d9935404ec6693b3fb50ad022c0affbc131d657878e194274f1af5e92dd32c2c4f2a78a7e38d0c18a46ba4ecc67630ca3adf5b7550367c2366" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-musl-arm.tar.gz", - "hash": "9d86e6815c55e9caf73e43f7576aff85e116fbbe4ebf600d95013616b623bfd8c49204d61e66a92c280cb578d78b99592fc0f3c8b43cd4d4a64f1cb2cb1a8d3c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-musl-arm64.tar.gz", - "hash": "2a1c5f92766d84fa0976de4434c7d828b0a98ca2c50e7cb672674dbc84f1626c855be1bb00d67e900d91485e6389317b478edd9f641f9350dc2726ab8fcb06d5" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-musl-x64.tar.gz", - "hash": "78c363b47316727e92fd4d4a4d60778fe4833a619f0b3caa49a7aa26e70532558792ded79620d9bb8be6dab37afd39fb097723b6e6a311f1cc5c765c1f878891" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-linux-x64.tar.gz", - "hash": "e56ee9bc458214bce461e9688e5229ba5b69046ec38a27bfdb2b5413d4b41500cca40152d182793c2768318719d97980b62ae9724de75d6d02874c25e938374d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-osx-arm64.tar.gz", - "hash": "e6979ab34bea777f1f48bf9208a024b33b1685ec236f13c609975ebc7e1f641806b47daefb9ff1f74f675ee6242b628edd615982bc9c014d18e18cd2662171a8" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-osx-x64.tar.gz", - "hash": "142fc2136112ba4397409a9eda67ba708611d5ac3d019bbb86733c89138d285d8bb2d02fd2bd3b2a027b76b6a7fb8369745ca1ee4740f046a9d0867c40271c38" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-win-arm64.zip", - "hash": "902488cbfee81dd5e1009eb86ab82d479ed7d9c44e4e4b6bb3df90a68eea65c0140978b02f46f9f6d0847466e1de73e9551688a79082e0679350a46276f441f9" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-win-x64.exe", - "hash": "942b9b3eb8a6a676fe0da097f7694de5bb7de27b16d2b32ace5e95250eb6587a3a2271480ab4b70d874960140eb4a016cb62eaf768ad2fedab3b0bdd89cbe0df" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-win-x64.zip", - "hash": "e9966377d5aa3887b7cb88328e6e60f2c5f1d2a434bf16d6d23018ae65dd76a152b98fd9865b886035ba0c57e1b9526d5c641a3c11d49a37c4a902a59f688f65" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-win-x86.exe", - "hash": "f6329de5bd21932df7c101dddcf70e54df6e4d4872e4b3712e5f7c9d77834d1455ca746ca27faf2e4c9287e782986d1e68a4bf83136d875b6d1941ad815382ef" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/aspnetcore-runtime-7.0.7-win-x86.zip", - "hash": "572d085e53f26f78581fe3f51d73411cd5ccd39ba8da0d96795ffa48de21f19380fc86ef3916672eb0c50f7b7305827746b63515885eeb8308c374766766edab" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.7/dotnet-hosting-7.0.7-win.exe", - "hash": "647a814a7d3483596a822f4fee7e4f58795c86847524dd00a71e00aef28fba8aa5530e917f3c1d16f995f526f52a9e47bb2fb0a1614a09d8b307974de5fe812a", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.7", - "version-display": "7.0.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-arm64.exe", - "hash": "9d9a2f86decc349776da0fae1dee02c3a265e64356d6b205c1883f1095c72636449059fd53bf016737f23603267d4670c78d206f32e7063a8a28495626c460b1" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-arm64.zip", - "hash": "9cd1181e7b9c316dbe1be19d8809ab4e099ea182092019462094130e53288119868287c098a6949efd054379ad7fca4de8a653c32d68f317c8364fca14c45f19" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-x64.exe", - "hash": "d59e8716324bd8973a95a9fd42a58ad0b176f4b37e8b8ba732be0e13d6f7ffdea79a52aa98363ec86860d551e124bdfaf71ac979b8f41f398e668fd12aa8483e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-x64.zip", - "hash": "cf4f1aafaebe03e607def7a499ae2e34873a7ec530fb90c98b6ddcbaa9705ff9ddec585d7967421be3f514f1de2d4d867dad6c7b1bd1c7114107230fef8f7c43" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-x86.exe", - "hash": "c219b72b5d628668a70531e8ce0776c2e4533d79f33cae581b29617050013bae75cc7d967def064eee8625dc141209e8c0ab53b2262a5c7815e7e2c5898c96a8" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.7/windowsdesktop-runtime-7.0.7-win-x86.zip", - "hash": "d28e5e86aee301682cc5ce6e2e421324b6bd65072756b47a82721fdc5d6221208265c77c66c59e34f382e7302355499e6428b14346266ceba5b7318967fec5e5" - } - ] - } - }, - { - "release-date": "2023-04-11", - "release-version": "7.0.5", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-28260", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-28260" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.5/7.0.5.md", - "runtime": { - "version": "7.0.5", - "version-display": "7.0.5", - "vs-version": "17.5.4, 17.4.7", - "vs-mac-version": "17.4.7", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-arm.tar.gz", - "hash": "34afeebf2d6fc2b8bd381578449ea088bf8adb5619686c82d7825171c0a9f66242882c21435579628ae859f060c5adb035bf0ebd0528b8421aef2f7534a1cb6d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-arm64.tar.gz", - "hash": "983b8123db0ecddee10c00c455c740e24793c3a7d1d400722cbc6183ca9a8916404d81dde07e43b9a6b1ea6ea160055b871845a789117ddc023eb07f3685f4cd" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-musl-arm.tar.gz", - "hash": "082d24b8e7ad015a04ef3bc0c1556eaef588c5952acb768d9c8292bae42e1a9bb777136e126dcf6f34d4025d7b2af291ebfd5c7b7d821b1f426ce4524b3137cd" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-musl-arm64.tar.gz", - "hash": "77871fef3a4d7c03c12bacfc7d6dbc17586233a72d874a9f850184262d986dbd270521ebf254c1d96dfd5d275b2c96cc45f7ec28e1ec5116f90eca80550b85b2" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-musl-x64.tar.gz", - "hash": "f853175cf9818d71f575762960319bf79d1a35bca7518de4594e8a9468ad8572328e2412eda091d989083b70001fc9b65d478314a58d67f0aa57a5da60e86fbd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-linux-x64.tar.gz", - "hash": "68014bdbf55bf455f59549c7d9d61ccc051e09fe74a975ca6b46d3269278d77c9cd167ba05760aef8ab413df4212f4f5cebdd1533779b49caf517eb4ec50cce5" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-osx-arm64.pkg", - "hash": "a6fe3119f8e7a7624f7dbcf5f7b267f9a234b65462d0dd4df0b762b1c0cca1289d01fb870019af1af6e238f41ef9902ee2978ff8e88f1facd2ebcb31b9fe9dff" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-osx-arm64.tar.gz", - "hash": "2bbf02e8001b700cf6badcabedad148a3b799ad0404b2e1e17bf80eca5eaa7a7939df135898f2aa5ebe7892f09d6fa7840118d3f360c2f4aacceb2cd8067c15d" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-osx-x64.pkg", - "hash": "db1cc19b3c839ed542c4ebb46563cdf1670da0714eebfd36efe910c5656d3af59ef439f844c4a33e00855eefffd5d4c1434a5bcd74ea04d39867dca22ecf4afc" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-osx-x64.tar.gz", - "hash": "4053c79ef80dae8f8ae1958215def910490b3c754ef088f02c81263c790eb8658f1845de916827755d62af37c6d090d59c9a2219c961a29b469a7bed74ba950a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-arm64.exe", - "hash": "1a0175cff3aa36a8babf82aac627f270cc188e52f749485ecdcc22b064d56eb264beb8886a161234c87f36e431090df69117a3804417e170443f2b36a2325102" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-arm64.zip", - "hash": "89fb5acc88d2b0ee53929e42c7d45cb58938d05c0908ce3770d921f87e85450df4a83cff8f19a9b1d1df7b0b10e4d65abf48d0cce0fb4025c3b62943ab22815f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-x64.exe", - "hash": "8334857953169d90b44bd6728dbead7954aa740db5ed8c5ef73a2fbbe1ae45a15a59c25161afd61fdf61a959becc5346e2e4853b73a589f7ebc2b6a8d24d7676" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-x64.zip", - "hash": "3a11bf5866f78df6190a7886235461d31eb5924d5abf43631ee58325efe0ec5a7a6f63ee53a3a322fcec605e9fe525c9e9b1bdc3ba9358aa7c76b8ce9a5122fc" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-x86.exe", - "hash": "9837f453e7c4e8e8f628fa72e7a6bc3d7dccf51bdd4418453c34fea0c911799bcd5917f9e59e06949f58d693894f4e50d71d0cee48ebce7bd79f0bd3b22d9d62" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.5/dotnet-runtime-7.0.5-win-x86.zip", - "hash": "1dba5c83dacfba3f4830a2e238bbab60f79118c36ba9db9c2e67076d7515ae223b7773f43628f89ba0392a6d0d851fa9eb818cacb6da53aca8b1632fc7b08f83" - } - ] - }, - "sdk": { - "version": "7.0.302", - "version-display": "7.0.302", - "runtime-version": "7.0.5", - "vs-version": "17.6.0", - "vs-mac-version": "17.6.0", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-arm.tar.gz", - "hash": "f47a0bbdce4aca0fcbde09019def5eb017dddbb6d85555e1513e72bca876e1f73a44fe633d5217bdae1c9a53d12054294116d28bfb22331b22cf6d6446f6c119" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-arm64.tar.gz", - "hash": "7f6372faa348c84560e3f1139605dc08d888b14b98c400724f628b52156fe31c20a50dc2a2f8673e29239d04ef06744e16c6f8bd8eb1756f99274c73eda74621" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-arm.tar.gz", - "hash": "2f1df7b51d5f072f66ff6f0cb738e3f4d0478227470f10d5c6c8d46e424185ccbd0d70d81f3ecabdc9ce1d6b74069b6d30547918234b98aafdec05561e3d03f1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-arm64.tar.gz", - "hash": "9c2814f59c91cea6c4c649e3c064de6123389fab9f44cac9d3d037c9229bbe949edb7d71c8aa49fdf1a3646866be1ae39809b3dd91db7134ff02bd4d459c253c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-x64.tar.gz", - "hash": "e05fc1053bf668df6619d68ce6c909d87a42c37175fa5b2298cde6746353545dfd81eaee177019de08e41e9f52ad65d01f07cab8eaf3e2bf4cd20b460fe0b72f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz", - "hash": "9387bd804ed980ba1bc33093598ddbafa3a761e07d28916c94442cc329533d78a03bfc59d3066a1a861244302414e7e658b4e721b5bc825f623f8f908e748b7e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-arm64.pkg", - "hash": "93a954243b7c8639d8166be128a4fa2c53664df399f62c299cf24a2772f489dcf0ee3928551db746652001677774613bec263ed978d0ac7929ba05d55de6c1ab" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-arm64.tar.gz", - "hash": "28cc5fcc9651fc75f9b2f864672e5fdaead28feb262696c305d00a71c828004e46f0b9b4a6bb6b21b9ea475b1c601e1724df302eea4d63f604e4fcdc9c97dd63" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-x64.pkg", - "hash": "f092ce6aa22f70aa4b20de22a2a17cd97a541b6f01720cc6dacbc95ebf8f3daac5c156fbe9684dad4a9001b75c405069081c28f1d4fd4e166f941c0e6ba0f7f1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-x64.tar.gz", - "hash": "cafb8e2839a8c91f58e8bda519d27f622a7a4062aea9247d743d64a3de3acad6ddd4f80d011fd416a3e3622f0ece8cd2e70e65f48331ae321b5ff23d282787b3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-arm64.exe", - "hash": "cb086200714619f76060a86020aebeda90431fd61cb4ccf7b7be2a97b7b8c5ce55cb9fd61e522ab6d525e41abd949973aab5ce0c2983ebe5b048a2befa0aca75" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-arm64.zip", - "hash": "ea9d95f752eea1c180c9d09ec7412880a1d2b069cd46f93bb5ee26ecc4632d151f3ace78435d4b2dcbde9f3562b7a55121be02832eaf4ed7ef3041d672f709bd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x64.exe", - "hash": "347e362879ef7e672212142c1c54c4c75b6d51aa2e0471be7b90927544fe40e7204dd787d59cfaa35ebdd9bd4d5151bbe44fe80d37fdeb31919d42de12397983" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x64.zip", - "hash": "6cadc278b4bc980796d255062d0e2f786e82cde8f5ca591b81727b2a808496ea0abad73f0263fc80f9f946235e9aa6fd42640b4908aa39a92299c713f159abe9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x86.exe", - "hash": "5d3128cfd346d008461cd5e9450dc76aaa8ed1a31061b3a4f658baa846b603ad9cf66b783336d6664fdf2f78c2d9b4913ed62aabd0df725ed97f6c90a7e14bde" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x86.zip", - "hash": "e212ab4530a95067d2a68708aa14174a535598d0a5eb4f572a56ba05d608f32cd6d5570f767b845a8eb0faab942f54aeead5c1486fd1e1606ce92440a8f998fb" - } - ] - }, - "sdks": [ - { - "version": "7.0.302", - "version-display": "7.0.302", - "runtime-version": "7.0.5", - "vs-version": "17.6.0", - "vs-mac-version": "17.6.0", - "vs-support": "Visual Studio 2022 (v17.6)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.6)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-arm.tar.gz", - "hash": "f47a0bbdce4aca0fcbde09019def5eb017dddbb6d85555e1513e72bca876e1f73a44fe633d5217bdae1c9a53d12054294116d28bfb22331b22cf6d6446f6c119" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-arm64.tar.gz", - "hash": "7f6372faa348c84560e3f1139605dc08d888b14b98c400724f628b52156fe31c20a50dc2a2f8673e29239d04ef06744e16c6f8bd8eb1756f99274c73eda74621" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-arm.tar.gz", - "hash": "2f1df7b51d5f072f66ff6f0cb738e3f4d0478227470f10d5c6c8d46e424185ccbd0d70d81f3ecabdc9ce1d6b74069b6d30547918234b98aafdec05561e3d03f1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-arm64.tar.gz", - "hash": "9c2814f59c91cea6c4c649e3c064de6123389fab9f44cac9d3d037c9229bbe949edb7d71c8aa49fdf1a3646866be1ae39809b3dd91db7134ff02bd4d459c253c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-musl-x64.tar.gz", - "hash": "e05fc1053bf668df6619d68ce6c909d87a42c37175fa5b2298cde6746353545dfd81eaee177019de08e41e9f52ad65d01f07cab8eaf3e2bf4cd20b460fe0b72f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-linux-x64.tar.gz", - "hash": "9387bd804ed980ba1bc33093598ddbafa3a761e07d28916c94442cc329533d78a03bfc59d3066a1a861244302414e7e658b4e721b5bc825f623f8f908e748b7e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-arm64.pkg", - "hash": "93a954243b7c8639d8166be128a4fa2c53664df399f62c299cf24a2772f489dcf0ee3928551db746652001677774613bec263ed978d0ac7929ba05d55de6c1ab" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-arm64.tar.gz", - "hash": "28cc5fcc9651fc75f9b2f864672e5fdaead28feb262696c305d00a71c828004e46f0b9b4a6bb6b21b9ea475b1c601e1724df302eea4d63f604e4fcdc9c97dd63" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-x64.pkg", - "hash": "f092ce6aa22f70aa4b20de22a2a17cd97a541b6f01720cc6dacbc95ebf8f3daac5c156fbe9684dad4a9001b75c405069081c28f1d4fd4e166f941c0e6ba0f7f1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-osx-x64.tar.gz", - "hash": "cafb8e2839a8c91f58e8bda519d27f622a7a4062aea9247d743d64a3de3acad6ddd4f80d011fd416a3e3622f0ece8cd2e70e65f48331ae321b5ff23d282787b3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-arm64.exe", - "hash": "cb086200714619f76060a86020aebeda90431fd61cb4ccf7b7be2a97b7b8c5ce55cb9fd61e522ab6d525e41abd949973aab5ce0c2983ebe5b048a2befa0aca75" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-arm64.zip", - "hash": "ea9d95f752eea1c180c9d09ec7412880a1d2b069cd46f93bb5ee26ecc4632d151f3ace78435d4b2dcbde9f3562b7a55121be02832eaf4ed7ef3041d672f709bd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x64.exe", - "hash": "347e362879ef7e672212142c1c54c4c75b6d51aa2e0471be7b90927544fe40e7204dd787d59cfaa35ebdd9bd4d5151bbe44fe80d37fdeb31919d42de12397983" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x64.zip", - "hash": "6cadc278b4bc980796d255062d0e2f786e82cde8f5ca591b81727b2a808496ea0abad73f0263fc80f9f946235e9aa6fd42640b4908aa39a92299c713f159abe9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x86.exe", - "hash": "5d3128cfd346d008461cd5e9450dc76aaa8ed1a31061b3a4f658baa846b603ad9cf66b783336d6664fdf2f78c2d9b4913ed62aabd0df725ed97f6c90a7e14bde" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.302/dotnet-sdk-7.0.302-win-x86.zip", - "hash": "e212ab4530a95067d2a68708aa14174a535598d0a5eb4f572a56ba05d608f32cd6d5570f767b845a8eb0faab942f54aeead5c1486fd1e1606ce92440a8f998fb" - } - ] - }, - { - "version": "7.0.203", - "version-display": "7.0.203", - "runtime-version": "7.0.5", - "vs-version": "17.5.4", - "vs-mac-version": "17.5.4", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-arm.tar.gz", - "hash": "9617060ed134d70a561ec8439748a09d54e67dab46c5f362dc749b37fee9324de50a2f8990b5b3745a1b6caa54578580afe7ca8791f276e8e72aeb21ff4abf27" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-arm64.tar.gz", - "hash": "f5e1b5a63b51af664b852435fc5631ff3fbeafbfac9f34c025da016218b0e6fb9a24e816035a44f4b4a16f28bc696821b1aa6f181966754318bc45cde7f439bf" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-musl-arm.tar.gz", - "hash": "b391d6d8ae2411450ac3d4b3ba7a8a402b95403d9c9a9f227dd504492fac7311405181f4aeda05390149e5c2363bf0a86d526d7ff89feac165c97e9d8ef39327" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-musl-arm64.tar.gz", - "hash": "ad94a557cb7a319e641ba09f3ee63dce74cae3ae668011c009b7a004b1b28001942ae4c7a82fe80ba2467f5ac44731bff81a1edd422c0aaaf95d7206b715dcbf" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-musl-x64.tar.gz", - "hash": "0d7bbf8f8e517aa4530d2bc590978394f0fd568a866b6369ab349aaf43412f820391ee3bb99d3f5b7f149bc7dfc1baff7658d928caa931e37c69e149d3667741" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-linux-x64.tar.gz", - "hash": "ed1ae7cd88591ec52e1515c4a25d9a832eca29e8a0889549fea35a320e6e356e3806a17289f71fc0b04c36b006ae74446c53771d976c170fcbe5977ac7db1cb6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-osx-arm64.pkg", - "hash": "093bad46eff19a96bfbf9a8af60d22d40a5562048257a7460e88c4239d9bb529935f84ac2142ffb087e156af852205a87084bd3e7f085f31affd3fb72f380058" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-osx-arm64.tar.gz", - "hash": "e41de76f6be00de587cedaed2b0c6e2c2871b2ebf03c89375b4c69cd3fdd14df0dc49b5fe83970868a25d14aa19deafbfe66ee6790383b77f7da3d8dea939664" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-osx-x64.pkg", - "hash": "1da8e2c4cec652d3528ec008db6fdb0514500233b119b1c1a9d8eb71257f17bc14d3ea390bf45f2875c2b9ed7653090fac46b1f7a807632a8a07fa42bc980354" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-osx-x64.tar.gz", - "hash": "a69ec597bc5b0a59ccfc9cc63c4883037eb9293600e98ea420c879242ec6c3fae6a81a3a08bf7d5d2ab93f750debffb224ad5628c9abd53bc44cfcb02ca77136" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-arm64.exe", - "hash": "f48c72dfb05488b4a86e05e47da7b11ec683321d3d124bb87045fd02a02b538ee662fbd588fa8f824be6068c8979d842e115e184febba420feebe54cd5719dff" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-arm64.zip", - "hash": "20cd360a7b914959757a21c3140092a78718622e7e88daa61cabd8d04176f827e3b93e0642e4dee497c790695d0c8e27ef7a07ffa311dce2951c702cc38676b2" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-x64.exe", - "hash": "b2c09ba8454da835304075760c4f355ee1e394c47402800695c75e2da964c5dcd0bb70c1f0c5c67c425369d7fdc9eb060a3936ea755a140342ba12ea47d7cd8b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-x64.zip", - "hash": "d675c05c6a30fcc2d5512f37e56fda19ee5e0d22de3b2c410c7bee58d3e565a2c87af7ee522c17a51b0f8562de6610831b7f89c1d22586e8be475855b3a060e5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-x86.exe", - "hash": "8e6defc8ad73be03c28121656a7bb8b4d8fdee93e12916ff3ddf03518d1e142a42750ed3ac49a15ec0c5f5c48f9c9362648624a14e12e8a53b127bba8d5705fe" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.203/dotnet-sdk-7.0.203-win-x86.zip", - "hash": "0bbd156db6337629e100218ffe6c9a12633a5fbbcbd02b4283fa29eaae9c293b05a57d5ac7a44c6317e3ef0ea35730c9fc101d054be8d713f676ed5006817118" - } - ] - }, - { - "version": "7.0.105", - "version-display": "7.0.105", - "runtime-version": "7.0.5", - "vs-version": "17.4.7", - "vs-mac-version": "17.4.7", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-arm.tar.gz", - "hash": "21a34dfb031ffc667f37b491ede6e9e4dce1cf5e83663174270af72245e8e9a5dde4483864253f4fb48dd36ef546e93f4651f31a82a4e7310b8dd1b02afb25de" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-arm64.tar.gz", - "hash": "3b401a4416b5b5a6ad90a9fdf7591a00f7f2b27cd960821dc1445b0a17c1c6ca08a92497d48f20ceae788f04f64cbe4416847fd98ab694faef21a9d22c475f9f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-musl-arm.tar.gz", - "hash": "9ffa724ccc02dc3e40afe22f0546a9bdf68b6314cf6da03d9387fb010fe3e5935154a5c06c4a2d588ff4ac77f34120a4ae9bc0237fb24452d78e6698435acf72" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-musl-arm64.tar.gz", - "hash": "c8120c20939232b53a3cdc607d812d93fadd6dea9466f9454df559f8b7eb334c69fdfd31bc60e4c70b6cf4fc519a25a0439902b04cf5c5bd0c29de020024fbe2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-musl-x64.tar.gz", - "hash": "8fb7d1754359e3fda35b7a07e13d2a5e9e723196b980dd922b30919aedaddbedd4d82e28b37471437b69cb93e4b1d136ac701e221924e44d0be6b6ba94dc3654" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-linux-x64.tar.gz", - "hash": "704c54efca6c4e40b93e31d92b9116407c5ff557b7f04d974df90dd56041282b26073f32719e99cb2afd29cdbf251b3fa7f05d52335f37fc1624c703005a2d3b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-osx-arm64.pkg", - "hash": "5ea2d251e293f623b2cbccd063f5c8c12ff9de9e7d93681f9788dabd80457fc1afce0ce251437b2b3f1ef9f422481cd157f70308df0753972c615a7bbd8cd021" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-osx-arm64.tar.gz", - "hash": "555691ce8ee49cb6566cca79fbd43e47ad7e557f35215544a51a1a76aef625711f572dd9f5dec622116113207a9f473f54fd07248661359ea65aea51e4d2fcf3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-osx-x64.pkg", - "hash": "f406aa26174de874658b21228a397018ccae83406a63901febd8bc0c6641a3347a069ef7e14ec8584ecebe6f03ac8f09cb7e209eef782a584d9e57d865222a13" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-osx-x64.tar.gz", - "hash": "8701327bb2fc729b5ae9571129fcff74a3ea7133ea2822f6e793fa4c5f0fe9ca00b7025b68039e53d67fa8d244918ca52e6580d641d7e500e68c85083bd152d4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-arm64.exe", - "hash": "916c4c23d721ddf870e831b72e53ee28fb882c1d5cff83f00ad342421082e111feb711d5b0c000c7d9e0ae149c70975c2f5dd77fc5bf4770633050888e117f88" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-arm64.zip", - "hash": "13bb40127f46174d31e3c0f7505abb020785848d12815f2513ff224488cdc2d9705fbeb36b6536193ea66fa5e7ba34dc7f24b83a456e74392e3808b9ec0dabe8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-x64.exe", - "hash": "f3a26982239f5d65d3214814618fc374a4aa6edf178b01da351c82317442cb5e0616730836edaf5a3c0c258233c8bfd100092318bb38624bb507d02c5006430a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-x64.zip", - "hash": "3cbc3f3ef1518ff910a42ee31d952fdd011921cdaafcc5bd315cd9897d3f2f3a7c872f537a91dd1cc9038387c28603497560e51b42585004030cab2effa43d3d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-x86.exe", - "hash": "ca95eb8ddf5e1e71ef5719af11e5935aa8df60a0ed4c1b9bbc63fc4b7ecca56bab2cd0adc081bb7b60032303becd4c464208f55a4b1740fc53982e280106784a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.105/dotnet-sdk-7.0.105-win-x86.zip", - "hash": "4d89aae9d51f904e1f366cd3149270907fc92707dc03e6f1dcf957d001932efb498f4b7aec3c12203765fd8d475e3fd2073dd1a8e4503368e7049c4d0c1c4b0d" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.5", - "version-display": "7.0.5", - "version-aspnetcoremodule": [ - "17.0.23084.5" - ], - "vs-version": "17.4.7", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-arm.tar.gz", - "hash": "973ac412ae17e50385d8e18e1b9e307dfcd7fb19f6da8d1ab6b959596093b6a46caade82be81d9c81069c86d78e1690c9418029403b2a70a436a00d7fbf1fa6e" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-arm64.tar.gz", - "hash": "2c35feac6e8a55185767714eca52912bafe5c6255cc0eb0b93aa245255e405ad1076ae018b7a3cd845b159bc2d87d950ebf5305dd52b1215adbb35ea9cfcf551" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-musl-arm.tar.gz", - "hash": "43a168a0e6f3c4386bdf6e1b002903de1d38e97ba1e2cf580c49f6d280e15edee91efa8fa2ccb0be468bbdfd17046519322fa3f34032b5bbe1c26d231fb79e69" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-musl-arm64.tar.gz", - "hash": "3aba51e65739677db4e9e2735d78ba814022bc514d467e27c45775f9f6847c91804a798a9dffe550c3fccc4ce972266e0981a220f227414c9b45b79da0cc3c52" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-musl-x64.tar.gz", - "hash": "77bcbc7230779d741f5a18199f18e4eda1b21d3034eb5ab37b20eeb40c4e15ee7556f2ffd4d512be05c3c063095e3e2e2c46d1f2758bd3f29082a6b40ce88f24" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-linux-x64.tar.gz", - "hash": "859d48d0f29e014d56e89161d8001f75b3b0b03ee04f86641066570cfbe267b06798232500a86fd7bc31edf022097278dfeb496874778fead4476863aa994928" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-osx-arm64.tar.gz", - "hash": "855ae3cad226fe4429073a54825ebadf2c3bff84ef811d602f4d4f259663d6648b7b0d3e1683e50ec5caf82417ffab47599a928cb635f2149661731cf27ff698" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-osx-x64.tar.gz", - "hash": "69c473ec116de84bd5cfc27972890f545952a83deae1c3d298152a2dac892f1a70b0a3e10269bbd332fa8d95f2616052f07597adf9279a0d2d2ffad7382602b2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-win-arm64.zip", - "hash": "fda8628bbfd178abef246fe09398775ea25c064bf6c11f4f41bb5eb420726fdb92a4207c694410585cbc58efc13d5c6d11b9aa486fd106389fffbfcbb9f0df2e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-win-x64.exe", - "hash": "2f62d0033f89473e8fd22b5134fa8a26163b0d66dd9256cfd0ed8ef1eb0ef6e72bbe107e64491c50c322c738ffafa92fdbaedc5f2f3261ba3bfb2060c8261ab0" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-win-x64.zip", - "hash": "101964c1789cca6f4f5209092294c76bc0a9afe6ed2fbebdfeb07b768475500fd36b65e3ab0cbfbd252933e318985ed9ec994efbfeb011a37245497c8e275636" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-win-x86.exe", - "hash": "ade0aa076e5a87387c1a181859c2cc92cfb440d9db7b75613414afc209e8f107d16a02d574284f417df0899ce4f3ee9227fae0a7e2365d36fe09d88a7fdba44f" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/aspnetcore-runtime-7.0.5-win-x86.zip", - "hash": "b2317339a1c05d776363ea27869242fe070b5adc0ab92f88207cd7245cad7d755dd9ff0cc108c9f63be78877dc09dd9f0e65964170bd167280a7d062e9a58a9c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.5/dotnet-hosting-7.0.5-win.exe", - "hash": "b4fb11e0027c295ab879a0db8b3bd34069a0f351fe1968c2fab2f6fba6886f4b33b847f0aca52b7dfe548538105cdf9d83f15b1f8a5e8b194c9448340a09c768", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.5", - "version-display": "7.0.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-arm64.exe", - "hash": "46426250a93615b531d0dcfbef9c98747bdfa6b31a773e6efe640a30d063efd51f880fb80879ed2a9339588854402ea172952b5318a0810f038eab208aa4905d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-arm64.zip", - "hash": "fb394e909b7f2690806f222a1fa343429a95f8f08665b739562c03011910fb10a204d57af3d43d24d2eb30c7e8ab46893ed69b8afd2f6da1b1d47b7c98308414" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-x64.exe", - "hash": "8907aa0e934a31c63f0a840bf9e734c2f5ba109b766c1a775f8adbb169049753664790c0a15b216f02a942392819a3500e4a33918df10fb967341dc167f82d11" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-x64.zip", - "hash": "237c0e5e4985aa0831b70d5fb074b986e09c2e536c34d9711cf8223ce3020fa2ad10788694f694f32297c4d39527a30ebd6e22ba92549e058a1c38faaa3cf92a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-x86.exe", - "hash": "a2f776cfabcfbd4b9278198301d289ed1c56febd47259520c50b8b8d130a79d0ea99c857aec96865cc635ddf078fd575368c030ce11d61bb9991d296df87a4a7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.5/windowsdesktop-runtime-7.0.5-win-x86.zip", - "hash": "91c72f3a5fb0f980f6987590629269f2280fa890744f514e6c5c9ed0e1edec290a75d1ca17eee62e47ba495a3ab2cf00ecd06d0dd7a8e274dc6180745dbc0064" - } - ] - } - }, - { - "release-date": "2023-03-14", - "release-version": "7.0.4", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.4/7.0.4.md", - "runtime": { - "version": "7.0.4", - "version-display": "7.0.4", - "vs-version": "17.5.2, 17.4.6", - "vs-mac-version": "17.4.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-arm.tar.gz", - "hash": "4d1774ea5e9423b8ed7ec923d8155c1ba4ac7c4cffa5b21f10b9473f4a64471bb31692a33f3e5300ff32015e2117bb0601cfe4767389b2ef87ca58acd76bb728" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-arm64.tar.gz", - "hash": "2726dc5a0b7b97c0e1ad22990b31133a1af46cb62d625778a9864a0047462d12ef705eebe08e73514bd10af50c06b5c9714df070f29c5203cf1c2587645d84ce" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-musl-arm.tar.gz", - "hash": "4935aa87fe9677635224daac61e039abd8d62c13b78d79faf9b614686f37fd0a856f6e3e047955d0fb7198c617d582092b4f4f8d4d1e27fef41dc29d9a1dc565" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-musl-arm64.tar.gz", - "hash": "fdd897edddeaa3c3b11f9b8db449cba8157f14450bf2eefcad6cff7e71ecf13b6248aa343a680384b9708091deb9ab4722a78bd4aacdb6e219d2a9a40a4aec1a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-musl-x64.tar.gz", - "hash": "bdbde59fe535f450e34a323c42c5e7f404cd607969aa01a939895a23ec99778badbf653678f158232c3d9628c5278361a3e322b5662fc597917402227078da01" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-linux-x64.tar.gz", - "hash": "23e6aa3714410d794bd25af781046757003e3326cb8b13dc256649011815038893718b44ec2162767c7da76f1e16b170656d5726e7c01e99b9577682ecfe281e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-osx-arm64.pkg", - "hash": "9ec241941959e960b459260b2736d77fb651767a9cfafad9680d808e5ec4c969a46b2c99e511e35cf5176ca05abb6dccb19f3401090ddea00deb6a1149070af2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-osx-arm64.tar.gz", - "hash": "4451ef94395eba2dfdc1af4b43f619d58fdfdd444fb122ddf1666d6f9002d792a52c52f64940433797920fde680b999095872edc1233c5721994c2092978cc85" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-osx-x64.pkg", - "hash": "46c0f0ea4317bc27dbd48801fe97de741ca075380e5572a37e2d6fa3448e2d33c4579f078ba41ffe18df49ac40bb99aa9087d4459757a72103f3cc814841d377" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-osx-x64.tar.gz", - "hash": "3042f6c711da88a669c92101ad3f6bd008e475230d68802f52b2748a8db6eecfd2af40665669a3d846910bcaf63ea27277f6a33bb76ec6fb3e256320e2f6dbf0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-arm64.exe", - "hash": "5f26e8e1dad5ac942c122627e0cbf2735fb4d8af8d91362f1b83518dccd34f1baec5973125111f3e4c8273707ea04ad4ef76e841ed0612ad099dfc945cda7288" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-arm64.zip", - "hash": "da0a1a707d79280d78f423e2bfced4e47142165fc8514bc89a48ef8c21c4f4bce0f7d517f357fa0833576d36276453eef1fbbce2c034b81ecaaf23b01c38ff4f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-x64.exe", - "hash": "f05521c5b11f57c4d32468c70e85b2c8246ed27dddd9d1fab71079ba6e046ecb5d5917b762909cbaa50e334a937b9c027a09f6cfc8cdd8ce5f5ba1a975d5b46a" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-x64.zip", - "hash": "5ab410f3744fd2ad593f5fe33a0dfa9f987f93491482efda9eca1b784e0ca131b8f41e9e98d1ec28d3326a37690c5455ab31a5ef2d74ddc1e5e403ab48120bfa" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-x86.exe", - "hash": "f794ec3df9346e1874008276b5a9e414152ad45670793d6303d362bc9eb78060ca4cbc4fd63ef5cbba30e5312e60c838bbf23ddb2834ab116dff526a94405391" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.4/dotnet-runtime-7.0.4-win-x86.zip", - "hash": "040552570900941c934c42427a35ea960b7a0a4ff1831847d70e759bc6b540995f2b321abc639dc6d1a2320f3abefb906417e81f5a40eb4c406c5890d9535896" - } - ] - }, - "sdk": { - "version": "7.0.202", - "version-display": "7.0.202", - "runtime-version": "7.0.4", - "vs-version": "17.5.2", - "vs-mac-version": "17.5.2", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-arm.tar.gz", - "hash": "242c3b93b6ca39e89a7f30f0c29d71294200a2eb14a95bd3f017ed0cb83f3c5ecc6a0d0b0ffab3687d1f925419619a8508f96d1262bd522f6c876a75d929e88a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-arm64.tar.gz", - "hash": "6f03de4ef1d0f67bcf8f794beea1a1497c9b1d31c484675382ad63a686ad3047ba2e12b2739ef2bf70c12e61a462ee8abd87e96a7c48200dceab92094144b332" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-arm.tar.gz", - "hash": "89e88907bc3fd473f62bf5dd1b24bc543bb52ab35cf8ee99b7ede2166a9d56105505687aa15d6d9ce5ced65554efd38cb3fbd169a741cd58f949ce1210a1062e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-arm64.tar.gz", - "hash": "12b20d8ae4a987ff54974122a16f1897961e0474854b34cde06d0a5c95d7f1540ee55d5868d7aef82fd04f0d06f055452c92c89b2cb3721bbf1d79b230faff77" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-x64.tar.gz", - "hash": "9b2da309a4640d5261186d8d506cdd1d96fed3f980a01d5bf2875e3d07294b6881ca9458a51f22b6d286e8ed26fac1312693c5aefdbc48ed0ec2cb28e49fdb5f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-x64.tar.gz", - "hash": "f415a8e6c078421759a963aa0b232c092ecf2f0a8e014ba72092390aac792ed35e8f3c822b2ce91ed636cdee9342bba2b89fb4fdfd2d28dbb0ac856d828cb29f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-arm64.pkg", - "hash": "f5be68e76227bac07e9af42534029af27e919b3cd40a1771eacb86e1d8a81a8a1834c8c93b3b97cd580db5060787ecf1146455e80ab81a7fbdfecaa64f269ec5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-arm64.tar.gz", - "hash": "9f5cc528d5d229cf2f63384afa52176f049c8d9e0d9d9be0ccb1a169be78a65a61dba7a4e74357685d434447b3d2697c062e9f240a8d8ad6b588fd433ee67acf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-x64.pkg", - "hash": "7e16f7c5a5e6c31628dc2066d35966f6ef685e5ed1e0ad8765d1ff7ca7e8c62db00a83b9f277b22d15a4335f591df5fe6640783e2fe152c24d9cbbba195f9b56" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-x64.tar.gz", - "hash": "3e99224ecb4a6ad06b96daf7017a749dfab1a9059daed1304a35acab9eb4fcb0a97f8e1b4d8c3074536b9dd8dd98dc89db3603057ae59a59e01d459bf26f4fcc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-arm64.exe", - "hash": "389b8f69228ac8ca73c780e128cff247d527d860ccedaeda7aadcc8c9c5798351d5794aa3930bc2440e9f0aec340facd8bba29533246f28b22e7ba186768c79d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-arm64.zip", - "hash": "891584d6e10dc263663c33fb41ecfb69432933c08a521f45ff3b9dfa7a5b5c4c5e5cb14d74fe418b78ef4cf3065059125796cd296cd73fd4156ab45f8903f7fd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x64.exe", - "hash": "58e9437f2ead1e9edd67d837f7d2e1313d866d510629465b0485965a9540c65eddd6fffafad9cf3261cb476a1dfff20404908f3bf06a7e01bc3bebc0bcb27d39" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x64.zip", - "hash": "a2012d3c70ad1d0a86eebfe44e27d875248ac217e4df4de62956dcb155a2f70f937f4cc5dd511d2cde99055bad0da8e6832bbcc73a15f779366aa2dd4d9a9bda" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x86.exe", - "hash": "73fa3ec7e25c5d95b7c9d81adb296470057ba00dc3e1cc8f3294f41ec73d3f10d7c8599cb76f03e407f9cd0a7c4c1ed674e7823411273c34fc494ab82e0139a6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x86.zip", - "hash": "66037f54084ece3fd97d31fc3a3dbbe147be51b33483fe19b282dfc96c819b0d922c31ca48804e9800b4ba66d91fb855f54227bc9604a1278410788fa309212e" - } - ] - }, - "sdks": [ - { - "version": "7.0.202", - "version-display": "7.0.202", - "runtime-version": "7.0.4", - "vs-version": "17.5.2", - "vs-mac-version": "17.5.2", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-arm.tar.gz", - "hash": "242c3b93b6ca39e89a7f30f0c29d71294200a2eb14a95bd3f017ed0cb83f3c5ecc6a0d0b0ffab3687d1f925419619a8508f96d1262bd522f6c876a75d929e88a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-arm64.tar.gz", - "hash": "6f03de4ef1d0f67bcf8f794beea1a1497c9b1d31c484675382ad63a686ad3047ba2e12b2739ef2bf70c12e61a462ee8abd87e96a7c48200dceab92094144b332" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-arm.tar.gz", - "hash": "89e88907bc3fd473f62bf5dd1b24bc543bb52ab35cf8ee99b7ede2166a9d56105505687aa15d6d9ce5ced65554efd38cb3fbd169a741cd58f949ce1210a1062e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-arm64.tar.gz", - "hash": "12b20d8ae4a987ff54974122a16f1897961e0474854b34cde06d0a5c95d7f1540ee55d5868d7aef82fd04f0d06f055452c92c89b2cb3721bbf1d79b230faff77" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-musl-x64.tar.gz", - "hash": "9b2da309a4640d5261186d8d506cdd1d96fed3f980a01d5bf2875e3d07294b6881ca9458a51f22b6d286e8ed26fac1312693c5aefdbc48ed0ec2cb28e49fdb5f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-linux-x64.tar.gz", - "hash": "f415a8e6c078421759a963aa0b232c092ecf2f0a8e014ba72092390aac792ed35e8f3c822b2ce91ed636cdee9342bba2b89fb4fdfd2d28dbb0ac856d828cb29f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-arm64.pkg", - "hash": "f5be68e76227bac07e9af42534029af27e919b3cd40a1771eacb86e1d8a81a8a1834c8c93b3b97cd580db5060787ecf1146455e80ab81a7fbdfecaa64f269ec5" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-arm64.tar.gz", - "hash": "9f5cc528d5d229cf2f63384afa52176f049c8d9e0d9d9be0ccb1a169be78a65a61dba7a4e74357685d434447b3d2697c062e9f240a8d8ad6b588fd433ee67acf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-x64.pkg", - "hash": "7e16f7c5a5e6c31628dc2066d35966f6ef685e5ed1e0ad8765d1ff7ca7e8c62db00a83b9f277b22d15a4335f591df5fe6640783e2fe152c24d9cbbba195f9b56" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-osx-x64.tar.gz", - "hash": "3e99224ecb4a6ad06b96daf7017a749dfab1a9059daed1304a35acab9eb4fcb0a97f8e1b4d8c3074536b9dd8dd98dc89db3603057ae59a59e01d459bf26f4fcc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-arm64.exe", - "hash": "389b8f69228ac8ca73c780e128cff247d527d860ccedaeda7aadcc8c9c5798351d5794aa3930bc2440e9f0aec340facd8bba29533246f28b22e7ba186768c79d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-arm64.zip", - "hash": "891584d6e10dc263663c33fb41ecfb69432933c08a521f45ff3b9dfa7a5b5c4c5e5cb14d74fe418b78ef4cf3065059125796cd296cd73fd4156ab45f8903f7fd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x64.exe", - "hash": "58e9437f2ead1e9edd67d837f7d2e1313d866d510629465b0485965a9540c65eddd6fffafad9cf3261cb476a1dfff20404908f3bf06a7e01bc3bebc0bcb27d39" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x64.zip", - "hash": "a2012d3c70ad1d0a86eebfe44e27d875248ac217e4df4de62956dcb155a2f70f937f4cc5dd511d2cde99055bad0da8e6832bbcc73a15f779366aa2dd4d9a9bda" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x86.exe", - "hash": "73fa3ec7e25c5d95b7c9d81adb296470057ba00dc3e1cc8f3294f41ec73d3f10d7c8599cb76f03e407f9cd0a7c4c1ed674e7823411273c34fc494ab82e0139a6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.202/dotnet-sdk-7.0.202-win-x86.zip", - "hash": "66037f54084ece3fd97d31fc3a3dbbe147be51b33483fe19b282dfc96c819b0d922c31ca48804e9800b4ba66d91fb855f54227bc9604a1278410788fa309212e" - } - ] - }, - { - "version": "7.0.104", - "version-display": "7.0.104", - "runtime-version": "7.0.4", - "vs-version": "17.4.6", - "vs-mac-version": "17.4.6", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-arm.tar.gz", - "hash": "3ecf8fd6653190daf5760e6636ea25c181d9272df97affcae5a2b88b002493b69a7db2bc1e4f492f7848f75ced5ecf81e67b309d1bbece9cf8de109ff14bac88" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-arm64.tar.gz", - "hash": "b40ccc2fb31b4fff9a2162453192df0f22d966609f5a222433832ae16cfb1517e967345b1c1f0b010131ba39b8644cca321a13c07f3d6273d8151047d331cd72" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-musl-arm.tar.gz", - "hash": "073fbba13f539e4d784e7368afa7ff28b7f477ddc786b007763fe1d46d6501a07a5fdf96b78bfda1e5cefcaf0e66724b1037f1f469c2b6b8750945034752061b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-musl-arm64.tar.gz", - "hash": "c0b0326e1d00fe0f989a3b81953057d5f1d84f1f33c2d7116ddcb64bd628755f1b4d3912f86a7423b45f27fed2f17e3ecef0292c37f9bb61b52b5632da429c7e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-musl-x64.tar.gz", - "hash": "b622027eb455388d9401f7df9d9d1259659739ebda109b24c2a478113bcfe8f588ac9bf1856c5b7ba125e30351aff7ef4eb8f465da13fa1cef0b0d41a07aad38" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-linux-x64.tar.gz", - "hash": "a95e4c97082cdf6337c22a64d69a4f8e7ca491afa0e9a1997f89cb16189ae35c27b7665666bbf70b9e2f9d94169812834b0c1d5366828ac3d248bab8a575b270" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-osx-arm64.pkg", - "hash": "dfc7379b2ebc806bce283cf69a974a50653d27ba8e2bcffdead379d12f42628daa7e933b36609d0a1c205c4dc65cf2c639d1cce575f8407c848f692408f91ae0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-osx-arm64.tar.gz", - "hash": "b3251eefaacf44144cb91bac69f4b121003ccb66f4fed8d9dfbd394cf09933b8774558350cdeedfb6ec6545a2d1e1728106c1a97a80a24230b923f0d277026e8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-osx-x64.pkg", - "hash": "447ea6d74a7d46408732c272c595117c4492232d4f7874b0fccada36fb235927e00328d57dca9b01b809ab1d2a0702f9c6c66b57f3f1bf530b2c0c42b44d2ff9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-osx-x64.tar.gz", - "hash": "8175e3a44e76ff6226ea9f1e88ff978ac870d937c0257b19cc0958e6807f88c95071f31f17a6a49b8472bce0fcd7a6f6555009638bb9714e9a29a9d83c917085" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-arm64.exe", - "hash": "05c29042d25aa4901c168eb5c9af3f07e26628f7879d6a6b1b024bcee5098681cfae12514b8a6245ed5324edd2506a197f862b1dabe4da7bd1c9684cfdd6a4f6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-arm64.zip", - "hash": "76e6d4b89a5df1c57628d51955a8846b50d539f15ce7a59931c87509266371609e7025375f97c467fe19ab7f5c71cfde7c0e81b2e7680728ea1fc6fbb4c4645c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-x64.exe", - "hash": "e083db4cfa9cde032a4f94aceae52451b7d5edd2bdf813117c35e4c7100385b501713fe96e34a1a38b52eb421f4e9c12d75444ae1655d16edd22f2fc607647c3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-x64.zip", - "hash": "98b1bcbbccb3ed0b1be302608523ba106e1dcab422e6e4f68e2d0ba73acee57f93587d4bcf03b2a79dfeaa2dfe3449d9497a26e60e04df0157450361f1d8b08c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-x86.exe", - "hash": "e4768577bc5e6bb43c0a8f7fd5eb2fcdf5259053c2f155dd860f24be7e6829e052d3ce878c7ed386044b57b5f9e9b22e279cfee3c47c612560bbf87f0496ab9c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.104/dotnet-sdk-7.0.104-win-x86.zip", - "hash": "180a241d082fff2d8cf9e094d75bc0d8efd8e59124b9db6624b4c7a877c0a1ad92fb6ef3a85ebc2fe333dcbe2ee93c97c13dc0a64b0175866213476c0447b716" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.4", - "version-display": "7.0.4", - "version-aspnetcoremodule": [ - "17.0.23051.4" - ], - "vs-version": "17.4.6", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-arm.tar.gz", - "hash": "36b92eaa5e7ebb90ff8a9e11a2e5e7a8253813c4d7711c0fc71d7e6d00283a3e169fc246a5b4edbda577e9fd793b936b0ddb3d4170487e33f65f52ae943544aa" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-arm64.tar.gz", - "hash": "5e149ccdd003dfc4413927f23b07b2f27ce915c63146e514b2f88446bd44f64df51755644b56c316b0a1388c873404fc1d39b24a0bf8066f09fc37d6f32cc03f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-musl-arm.tar.gz", - "hash": "737704c3f747d20792b436999b955bc3b25cc65133747a3ded512ad426760421cc11a8c1f22ae2ebf9b7eebeb3a465a248027498f20bc0214a8c41f4043b0541" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-musl-arm64.tar.gz", - "hash": "8d5ad293426c0b9e4b8725b5fa22bbe6470a9e595a1dc34d2e1d7eec9c80cafad84692da6458c978fc78d0882abcbfb694dd63c523b44efb7db4ecbcf3f1f60d" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-musl-x64.tar.gz", - "hash": "cb51f4520770b2eaa33b2096e8ee5dce9f8ea6cf78355a6f02c63391a942a22e39438389da34a41393b88ffac848b9deb2f9f34a9c49971d99a6cb7551321e33" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-linux-x64.tar.gz", - "hash": "b0d2896928c003abf79c539c1c6be13ad560a34d8fdbe9438d916a977aa59e648d0737b57aafb25fda1c3de7c95997eccbea28ae04e4131ebfcd18c36940bcb4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-osx-arm64.tar.gz", - "hash": "07771022448fbda4248ac153d401c11ff0c9cd33ffd9a6c480e7a8618b802e7e33152673557dd92a5467199c275ff8b0fd007e132ed650d594759743d3da7f8d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-osx-x64.tar.gz", - "hash": "36a573380caeac220cd7d4bb1a008f440f37eee21be4c0156b95974739264ed5b3ae1776462a5dee286f387719d3241b57141d2604463d8367038bc718d9178f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-win-arm64.zip", - "hash": "c1ab8f0d86726d26f459cdb64553e7d807e7c3a03903c8f8912d54f736352cc060a457e7832ab7677f71cb93803d42c59a4a0b89b899cfbae339c059f1a22e59" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-win-x64.exe", - "hash": "e069bec552afcf08b0677924255ac3ed7005e95bb465a7da1b9ce2dc5f48c17368947e1b049f9af73bb31b27085f212b4da049d518c9c1dd5aca40ede622ff2b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-win-x64.zip", - "hash": "c86511c7aa88f72fd1a6e2773a2ee2a72cd22d8beb63f3160caae46db0e1dc94d68d3e08648f54745546bc7f7464a01d10fa645f73bc02b44ea203759c69ed47" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-win-x86.exe", - "hash": "138b94a2b3edea7711c18d8ed4609d35a0c90b478d1ff21a02c3adc9275bd8d68e49287555dadeac8c27cef1dd69902d13bb38e455c8145c4d90fb90cfcbb8f7" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/aspnetcore-runtime-7.0.4-win-x86.zip", - "hash": "2f22964990d4e29e3337346ed3914b34074ffef05f13d04f25e264972da105c7ce4d7f4afa05b694bd1f9a267f5c0edd035ed759eb8e4b363764c88d1d895cd2" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.4/dotnet-hosting-7.0.4-win.exe", - "hash": "883e82d4564617fcce8bb553beb446dd4c000fe7746b1441321369099a37911ed2a102ec98b3ee1e5cc093ba629f08636816aff55e8b92b1af1a9a15c4fc780f", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.4", - "version-display": "7.0.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-arm64.exe", - "hash": "ddea899010bf61b505120f57aa0f004078cb54c0a305ca09233b097cffcf460c93bb379063cc71addc76414d0eae6cf2d4cf03449a0e4f89e331587f9cba649b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-arm64.zip", - "hash": "5fcccd6b25da5710422ac636b0d877cd8e3a27fb696c910801109cd25f0d4ac678670d6e43a8dbcbaba55dbbe2258d08dc23815aced457a25ce90de1194c6859" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-x64.exe", - "hash": "03b1164beccec1421e46ed9bc6bc35c9b746a580b33cb71112a41f6e3b94e37d8f02cbcf0ada74e250f29286f7301828fc6f9dd78d11f0b7cacea4604414401b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-x64.zip", - "hash": "385e50938409d2ec3efe4d5a4e41e2615c14f6c8444245110440acf85ca54b44977498ebada85f7ebb72257de07a9248006d904c1b369837fb0ea212fd829540" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-x86.exe", - "hash": "2b31ad155f146ae802a7232d3511e910e95d46f00c4c39b0ffe521d53f4f2ef0d74adb3c9455ef5c86e0331d696ecca4eab0a2832f74b9942db8060497199e89" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.4/windowsdesktop-runtime-7.0.4-win-x86.zip", - "hash": "c681e6619fb9052eb99650b1ace103b2c6a7b99b5cc170de72749b82e20d6e2fee358d491443ae5e2d73e8afd5955d95800b9a7c76a8314c90eec98266edef7a" - } - ] - } - }, - { - "release-date": "2023-02-14", - "release-version": "7.0.3", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-21808", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-21808" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.3/7.0.3.md", - "runtime": { - "version": "7.0.3", - "version-display": "7.0.3", - "vs-version": "17.5.0, 17.4.5", - "vs-mac-version": "17.4.5", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-arm.tar.gz", - "hash": "e26aa9caef1b75d7d2fdf48b40ec941347a24f9f2862f54af8dce8447931ff9ae319bfb955a86c2375c79df35731f3c6d6c642dcf5f7726c49e4fc6668ae2fa5" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-arm64.tar.gz", - "hash": "605f4d9657396eb2c9825d1576836115492221a7733f36638d9c6f14f1c15481c908b6c8dcc619ead34beb4d4991d810e2a69a8bccd7c49ed0f4d72411d1a5f4" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-musl-arm.tar.gz", - "hash": "a47369617a2dc35635ee84b922a230694e06d0e87ad7f73f84793828b89bf8b0e54d40c9fe6e4fd24182e9668ea0eac49c591a46323b4b78766e45262d5fbe1b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-musl-arm64.tar.gz", - "hash": "3aefbabbab78c2e46c62c48c76ffff8406362082969ebbf8e04bfb7547b066770c95312291284095e60aad8256527d09d293f612ab4049010dc4f5bdd95d165e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-musl-x64.tar.gz", - "hash": "07cde581be0237eb9fef572ebe1e609b7b606781f45fcb0f7e13005197dbcce9c1d55e1ba0f1a3c155ea0e3de6062901f2816d70c31b0bc89999961e4079fe54" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-linux-x64.tar.gz", - "hash": "d5cea2e674e9430174da793942b4ff5dc1b64d12c731dd3324ef520a2fb11787782f2f8ffa83023c41a0282ecb174e2a49a2c0aae1b327a58fcbd2bb06c4e256" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-osx-arm64.pkg", - "hash": "7c519e95f80b1e9b2e37f68be922bd2cc0ad767be09fef3e21caa0a53def7c5a4ecacfb14210a2f100f27ab17df74606abe913c96b7a3dba38fe3e9c20c5d8c1" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-osx-arm64.tar.gz", - "hash": "2bebf2296eb65916bf4b88c9447df442b328047794fefe4f5117a9ce2053547b6df64afbfa8f36eed9a1650af37824fb2c325568deb3e171d8e5970a4eef6520" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-osx-x64.pkg", - "hash": "0f10c6e997ba570fbcaad2f82df9907004b2899a67ff0a771ceee910616714b8d2227c0c152bb8d6988163b717faaf1a2cee32e2d68ac5d895eb540f5d49eb7d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-osx-x64.tar.gz", - "hash": "0c3facc23e8db48bca33e3133ca85c2c6893a56d79f83d87179e8520712cb76c699df0040dda5999591c47a128a7a3b365f62b500cf802091989a23b41eefded" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-arm64.exe", - "hash": "da97b2de0e5d96b2d48cad59ef57b8d3b1c455d5263ef58a309f8e0307412519af44a3e3c5b20b6d0ba3876ff33c66ba7c06885cea2c10af786cd09867f53ee0" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-arm64.zip", - "hash": "8b3e5f15e4589b54ab02c04292716df7e9d2ed23af09d9abc819709d5ba190f330eaf47ce420650909ebc4a89c97d4f831bd7792df503ac60cac478d8bb30e30" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-x64.exe", - "hash": "6fefde421ed054a135a1cc3906466c2240e21ec07d384ef41514ad38463f6b4548988498d7388a782c43a7dbbf56ee360a8d687930b4fb0331e570fc7b877257" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-x64.zip", - "hash": "d31de3448bd3934781a532a2a61be56b5c878ce88a5d3260440a23292f77ed2e05a03692d3521771818a7168fcdd2aeb2aaecbf80696d33b3e482a3ac7b56fdc" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-x86.exe", - "hash": "520ac0679584441795c4604e5b2f810476896b2fe07472e17610853222e98c447d238a5a85a0bb758f8a1b02a4726967c1ba4e68f5d6cd8ef99177583d76b371" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.3/dotnet-runtime-7.0.3-win-x86.zip", - "hash": "c7d91ec53a8e0f970a0421aa046efe012f26ae30d2288f464b6a043b8921fe6d2727d63fb051e481eb9c09fba39b406cbe6f1b7937a45d877225202f89217dc6" - } - ] - }, - "sdk": { - "version": "7.0.201", - "version-display": "7.0.201", - "runtime-version": "7.0.3", - "vs-version": "17.5.0", - "vs-mac-version": "17.5.0", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-arm.tar.gz", - "hash": "3136e7b0d9b717b3fbbee5ce0bf3b73f122a0d6886f5c75c09041969d5383b8ca7b75d807ded376957f498cbb565af03618507e77f6de99016c683dc2bdf6d62" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-arm64.tar.gz", - "hash": "a4c4d0e7d51643d6a7ff3322f795f0cdf174f62689606304e4dbfb6b38717b111d0a21ecfe2efea0234947deb87383b7cdf38e96b7e4b7bc13127b0d70431b9b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-arm.tar.gz", - "hash": "092285d57c45e1720a4fb6c82c3d8a1413b9c96ac5d06fc0f398dc55360e0f99b9853789c0d61efa31630a58ebb0763b16991e6a209165feb7bea1902cff4950" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-arm64.tar.gz", - "hash": "6efd610dea7d30fc1b2c6d59946b20faaf19519b1485b748fd8271360dce86448c42b5798fe8fc8cbd48cdddebe70c02bab37bbc883eb2322adc29a45a2d82ec" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-x64.tar.gz", - "hash": "5d3833999ddec0f469d4e95668d27821c69fad3e94d1d66a2b393cf0e6786a8683c43afe87f9ab46952003d1303726d8849fb8c389053ad32bb75488ec884127" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-x64.tar.gz", - "hash": "fc9d224bf1d3600e878991fc1e8d3b1a0f21c7a8aac7b3cae0e4925ad33172cc12f56210eabfd66cfedd5f70f85918b889673401172b3999cecbeb8f2fe58863" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-arm64.pkg", - "hash": "85bf5b3e3bdc0affec2c94db525690d6715027ff0a0e8dc27e7809e75522f54c6b8a30139fa932c5d8931cb5de27e71883000ef6b41e1b14dd4baa01c999aca3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-arm64.tar.gz", - "hash": "33264819fc928e2206127060935cc01f443f564c2e28eb9aecbc83865697347967c639820496f21c0a7039aacd83b548944fc2a3385f32f01079760e9d0cb677" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-x64.pkg", - "hash": "8e8b73d258757663a39cf7a9252c51e0559656aa13c5f1e3fce9bbdbe7c92c65b5836b04ae17995c37b2b9b1f5d3397a95e4f1e835a8609af3797391cc61137d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-x64.tar.gz", - "hash": "c5f9ac1ec09f78433baebdcdfe47b715ece63df89b37bd4c919afb09cbb3183f2aa85e5fb12b9842582a343ba2524c5f1d764e607d7465ecd781744473c3fce0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-arm64.exe", - "hash": "a01dd35ec7b88f0f68e6337e351770cd441b370deb3f3c59654c238d14a33ff68b280eacd5f889c0f94012c738cc075d600d4119618b8fd86fba071eccba2c39" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-arm64.zip", - "hash": "056fc8135237c52e6258fd8d73bc018957c2caa6355a44333b25e3319ac58c9ae3e99e4d3b774e2b684521bc7ec90dcf04a235fa55276b82a42b426a43bfad81" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x64.exe", - "hash": "8131ee4c844290db2a591574ec76b3174a1a05ea0a4ded0489adf549868d998c2594fa2b32bf1ac291192d9bc08c98b19f9eefc6f6d3dcebbb993b26d2b47099" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x64.zip", - "hash": "913e3544a0b9301f78539531f7a51890ba46d07997a25dcce02f3616b64bc96c99b870ae6338e26953f39c499b8387e60d0e05138ba12fa06f76ba63540ea754" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x86.exe", - "hash": "5b94cb32ece8f53d4e57384e0473c304b8e18cfd2f5be31e2e46a1bc63d390957dc0cc83769eeed495a9ff7e4c2df9069e765588fc9c1e8823d636968bace268" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x86.zip", - "hash": "f97c50f6ab752d6f32b64db1039fa419c38d48c8dd5fc861fde99ae01ac4895d39f752da12789157b43d3348e45e299db60f47982ccf861bd175d559a7aa6ebd" - } - ] - }, - "sdks": [ - { - "version": "7.0.201", - "version-display": "7.0.201", - "runtime-version": "7.0.3", - "vs-version": "17.5.0", - "vs-mac-version": "17.5.0", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-arm.tar.gz", - "hash": "3136e7b0d9b717b3fbbee5ce0bf3b73f122a0d6886f5c75c09041969d5383b8ca7b75d807ded376957f498cbb565af03618507e77f6de99016c683dc2bdf6d62" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-arm64.tar.gz", - "hash": "a4c4d0e7d51643d6a7ff3322f795f0cdf174f62689606304e4dbfb6b38717b111d0a21ecfe2efea0234947deb87383b7cdf38e96b7e4b7bc13127b0d70431b9b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-arm.tar.gz", - "hash": "092285d57c45e1720a4fb6c82c3d8a1413b9c96ac5d06fc0f398dc55360e0f99b9853789c0d61efa31630a58ebb0763b16991e6a209165feb7bea1902cff4950" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-arm64.tar.gz", - "hash": "6efd610dea7d30fc1b2c6d59946b20faaf19519b1485b748fd8271360dce86448c42b5798fe8fc8cbd48cdddebe70c02bab37bbc883eb2322adc29a45a2d82ec" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-musl-x64.tar.gz", - "hash": "5d3833999ddec0f469d4e95668d27821c69fad3e94d1d66a2b393cf0e6786a8683c43afe87f9ab46952003d1303726d8849fb8c389053ad32bb75488ec884127" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-linux-x64.tar.gz", - "hash": "fc9d224bf1d3600e878991fc1e8d3b1a0f21c7a8aac7b3cae0e4925ad33172cc12f56210eabfd66cfedd5f70f85918b889673401172b3999cecbeb8f2fe58863" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-arm64.pkg", - "hash": "85bf5b3e3bdc0affec2c94db525690d6715027ff0a0e8dc27e7809e75522f54c6b8a30139fa932c5d8931cb5de27e71883000ef6b41e1b14dd4baa01c999aca3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-arm64.tar.gz", - "hash": "33264819fc928e2206127060935cc01f443f564c2e28eb9aecbc83865697347967c639820496f21c0a7039aacd83b548944fc2a3385f32f01079760e9d0cb677" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-x64.pkg", - "hash": "8e8b73d258757663a39cf7a9252c51e0559656aa13c5f1e3fce9bbdbe7c92c65b5836b04ae17995c37b2b9b1f5d3397a95e4f1e835a8609af3797391cc61137d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-osx-x64.tar.gz", - "hash": "c5f9ac1ec09f78433baebdcdfe47b715ece63df89b37bd4c919afb09cbb3183f2aa85e5fb12b9842582a343ba2524c5f1d764e607d7465ecd781744473c3fce0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-arm64.exe", - "hash": "a01dd35ec7b88f0f68e6337e351770cd441b370deb3f3c59654c238d14a33ff68b280eacd5f889c0f94012c738cc075d600d4119618b8fd86fba071eccba2c39" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-arm64.zip", - "hash": "056fc8135237c52e6258fd8d73bc018957c2caa6355a44333b25e3319ac58c9ae3e99e4d3b774e2b684521bc7ec90dcf04a235fa55276b82a42b426a43bfad81" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x64.exe", - "hash": "8131ee4c844290db2a591574ec76b3174a1a05ea0a4ded0489adf549868d998c2594fa2b32bf1ac291192d9bc08c98b19f9eefc6f6d3dcebbb993b26d2b47099" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x64.zip", - "hash": "913e3544a0b9301f78539531f7a51890ba46d07997a25dcce02f3616b64bc96c99b870ae6338e26953f39c499b8387e60d0e05138ba12fa06f76ba63540ea754" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x86.exe", - "hash": "5b94cb32ece8f53d4e57384e0473c304b8e18cfd2f5be31e2e46a1bc63d390957dc0cc83769eeed495a9ff7e4c2df9069e765588fc9c1e8823d636968bace268" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.201/dotnet-sdk-7.0.201-win-x86.zip", - "hash": "f97c50f6ab752d6f32b64db1039fa419c38d48c8dd5fc861fde99ae01ac4895d39f752da12789157b43d3348e45e299db60f47982ccf861bd175d559a7aa6ebd" - } - ] - }, - { - "version": "7.0.200", - "version-display": "7.0.200", - "runtime-version": "7.0.3", - "vs-version": "17.5.0", - "vs-mac-version": "17.5.0", - "vs-support": "Visual Studio 2022 (v17.5)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.5)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-arm.tar.gz", - "hash": "7b1072c8080a0f38946d207945417dbeea4cbb688c2ea2dba1cb31330da15652da0823d8571c063a08830fe2157dbacb635eb2a8c7f20033cd1b8a35a9cfde36" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-arm64.tar.gz", - "hash": "2990b7d2b23adb2b2621786ba774450e8cf73bf872173ab57026d7658599accdb5a4cefb5292945e264408f833503210621ed787c8d77eb467d3b204da8073a8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-musl-arm.tar.gz", - "hash": "1e4f9160cb93ca9704015e787491bf78c5850c2a0aa7f5794b35f607f6f342903c9d8aa182593133d6609d5b9aded9bed769855213e0464311f357a65df0a640" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-musl-arm64.tar.gz", - "hash": "63c568b1e0014e2039def200fde47d932e5366ba794fcd89f0efbcfd845e8b8b1c0ede6406a518f366356f5b566df2d0a1b53e6fdc9b58a26a59bdaa89e0ce32" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-musl-x64.tar.gz", - "hash": "e907c96e7f1c7a3497f8726176b1fad9e93050b7b5f30900a634d253c4c5c822c8d729b22b36fa00d5bb2be0834f6c683d47db8c22077fbb191e38ae67e12119" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-linux-x64.tar.gz", - "hash": "bb88cc5099bcb090608f5e02e7fcdc4f6a82114881378efd469afb210e00909d8dcc4d07d188851ef2782ba755321096de175d83ca67af3c4dcb8d3c1d217756" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-osx-arm64.pkg", - "hash": "702944605fd6d8683a78382f8c11a020b92bb70b24f2b6997e730ece4477e55760feeb3942d9d4472851ebab851efe880913cf3a4a312c7284d7cb57d86e101d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-osx-arm64.tar.gz", - "hash": "dc14ba208f89301577cfe4ca6a1901db92f05f9e0f15a4731012adfb3d7010382a18f41e0df91d132cb481653689cc31db4c8628f453c607d665c4237e7b49ed" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-osx-x64.pkg", - "hash": "3840993237fb1243135275248e615eb81c4e94143e7eddd1c76405559000e743ef858e2c52b224fb2e7eb3985bd962937d456d62109c969782124d19c56a5eb7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-osx-x64.tar.gz", - "hash": "487f753bd8bbacbe60da6c8c161fa710fb12a5ed2e0b1f2dfd7fb1bd37a56e8cc5fff9c75ca90ede3447353eb3cd08287e44fe1420b69eb5c8e9651277d99c74" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-arm64.exe", - "hash": "db93f4a2d6b013166a4459c3f77d96f5c32d4e0bb44744b2a2084031f34f41a2a841aea27ed70cdcc7d07961ea0399c0043c2fb1a1bd8d405bcde8754238d57c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-arm64.zip", - "hash": "6f58fde3219dc86420e3d2eb012bd62733a96e140ce5c8d3af4dd5d18c2f1eca5f73f92fadf62252c15a9ae1c8e860b8a0719b4396918760ecaf6d7be2cc8c91" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-x64.exe", - "hash": "e41ce0c55181b564b29b3e4bd9e76be294db57d2ec0f152a295bdbae37b422a46bdbcb1c680f2d56d098ac8298533658d3d4ff8c50f1716652ebd012e93da292" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-x64.zip", - "hash": "f1a480dfa63d9a1912726374e67612a08bdfa438b10f5c70b7dc21b9251e8a8984c42b9a901d0f429e62e81a8f16cd8d0000f409e9f52eac5536e365895885f0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-x86.exe", - "hash": "3014b328049e982981544f7103671c5fca28eb209ef4e9b0a7294699cd0ae12677b46a45c2c44b8fabab13222dc614146c79c67d7f9b22a20e68763cec952ddf" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.200/dotnet-sdk-7.0.200-win-x86.zip", - "hash": "2850a888135efae77a8f46736202626881ac0330a599e2980e361379caa08eef13469960e689529adc7b1dce8d64884fc73ae026d39d6629f336362a457006e2" - } - ] - }, - { - "version": "7.0.103", - "version-display": "7.0.103", - "runtime-version": "7.0.3", - "vs-version": "17.4.5", - "vs-mac-version": "17.4.5", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-arm.tar.gz", - "hash": "40d6909cf6c1af10c143d5bb23958cb599b8b80b7a3390fcb6d358174e12acbee4294b54389604f0c02dc8f8f7eb59604b92651dd8ab8e972a22f7c0854c2cda" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-arm64.tar.gz", - "hash": "afc8c953390f2de11a1db982622f0a66a352a374163249f629a2c980fef583fc258396e73ae12346832574115cfe7611c68ab4359087d45048ac31da848abdda" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-musl-arm.tar.gz", - "hash": "f339303eea0aa912213e13685476bbb1a9a2e3c0fc20f01954957cf417f6d1ebaa1590662f1aefcd6850f315b5dffab80b0c2d8b519adb60b20e9c3389e2a675" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-musl-arm64.tar.gz", - "hash": "d07ca65d39905b559ab304edf77baf6a267c1ea597f2e8a2592fb7841ff3a286f31a0a4ed11e155192431ab949b3096e3949288eebb31bf594a2d0709025cd0a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-musl-x64.tar.gz", - "hash": "5a3fd171952cc21b2f426c00ae14aab9a943e5c77e82385795773fe4accabf874a3394c9f38ed2ccbcf0d72a794de027e76ae9a580868d55df243f9b64133090" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-linux-x64.tar.gz", - "hash": "35d9eee135eb5c9ffed262a01e59b2244f4493c04d71ba37fb255a1f0bf87a8947405379a4043267fb9cf4fca2e18683509b310a6f2ffd3323efb0c99c762f79" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-osx-arm64.pkg", - "hash": "ba7d5318effc29916c5b3a696dc3d22a6057acced1bf9fd89ed039fd566afb70a849fb840e47f28563b351eb4b22d7dc7caa71cc42b4fb15080d4584c6040ecd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-osx-arm64.tar.gz", - "hash": "9bf689c648a13cb33f0ca70fc2696623ecaa1c0bb3c5fac321c9ce5f95484c6c952d804be5f1653d964c4213bdfd0a0738f73c3299728f3a642015b5caa53a4b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-osx-x64.pkg", - "hash": "293ed3acd17d6836bce34b0709160d715b7fbd783c7a3f852efbda4c14244d5dfe4d6c8fe543e66e0b26d6de9839e8be2197be923216c248b79ba3a363d55ef5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-osx-x64.tar.gz", - "hash": "94f91ea67dd1b086f851b7b6900379757f4653ea2f07e3d81730b6b013631d07e3ec24c5a11ecb13c8774fd1fd65eca8cf1deb57d2df37a87591b85f6538b791" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-arm64.exe", - "hash": "272f106468cf7e373d0b47106728f65470c0e229f04523bb2daf409f1d850e9dd48acd9c133f4dce6d55485b2c924d3ce1e2187dab8bc8679f8a6f7d7a1428d8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-arm64.zip", - "hash": "463bc85fc03b6f25c781b1fd1ca7925aed4a979366b380fe147d0a2ef755dd3fded3ba9add9166d87eb8b650a617e4dd504ba08e4ef2671452ec41da146558e1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-x64.exe", - "hash": "e6fe68065e673aaa109bb63998ff4ec72f14e181189bb86827c25207f9afb11393adfd0b4f4345287656cb8df4bcc9d4686d25ea01ce50ce6197cb675f584e9f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-x64.zip", - "hash": "c1c4bd166a3323a046d036354c411b05b5d7cf8d82f94833b4e37cc26594db1242e943c49187a24787fa9caca36af89f310f855ad4167eae7babaa0adf79e28b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-x86.exe", - "hash": "ddb61b1e9beaa090e250f6615e87778ee8f9cb578a57d10f4515e8c1087f2c176343f4fd7cb6aa7cb4a81a6f0d1458054fb49f4e2e50042ce39d295e6dde126d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.103/dotnet-sdk-7.0.103-win-x86.zip", - "hash": "54ad6d009e0cfbb26c6d66fee9138d3903cd19a8e70fae42a2264e750c451baa32d2f60fa8e262df9f4e1613c87d7978a16afdaef1e5117ec527246106094256" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.3", - "version-display": "7.0.3", - "version-aspnetcoremodule": [ - "17.0.23030.3" - ], - "vs-version": "17.4.5", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-arm.tar.gz", - "hash": "173dbedc3a01b5d6fd70f617935a5d65022fbd6d16d3dc0e74959b1197c90d4e790b44e3f93a1d7f440d3c89568000d7ee048dfc414a6eb570da7639cfb20b51" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-arm64.tar.gz", - "hash": "95ead701041655d9a0ab19dc8f53b7780eeca127499fc294124d466aa12daf930d756de59d7e8e8cd563a6a744b74bd5372d82fa95eca0973c94cbb1595451c1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-musl-arm.tar.gz", - "hash": "230fb26f38906f098b66e0d4bc7b88ba54476dab37d55f5bbcd15fcc526a434b979c61592d36d34264cf56fe984cd8c45c13d2e2caccb46abd314f2650e28686" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-musl-arm64.tar.gz", - "hash": "a8c1d190a62bc40dc398fabd166df6c0bffa2f15d95aab5652948910ae9a852911fe205f3b84d64bdb66e686f551fcd4e07b3805452a8294dea0f4aeae1b4696" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-musl-x64.tar.gz", - "hash": "2e0ee65a2174c7c19d733d4d546dd7065f30d28f2e1f21de4ed7f0d35a4bd290d600275f77e1b378596ea202690c7f07fa389b177fbdc9c52c453e423ee915eb" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-linux-x64.tar.gz", - "hash": "fff857e44179270d937543ab429ca43a4706f9189ee8f60afb67813d3690652d9da08bd3e69c7acbb7c0b2e613b9659c4d1ee7bbe089c841126efd07dc23a758" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-osx-arm64.tar.gz", - "hash": "379dc7aea65cf0c97a919386f0e4e756321f522c6f658de303543763b0820ff9a6efc0e27c908065a5f95ff740d6ba469eaf264b1f36b017f2fd748d76787458" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-osx-x64.tar.gz", - "hash": "784d8655406535cc6844af63066e51377594de17162ff2431acd8444a5ba0c6434271b592c38f3ace2da0cdec693f3bd2e681316b972789a577e05ad1e9c2e9e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-win-arm64.zip", - "hash": "bed55c2725a63ca75c5d3246c4cb26cde75304ab62079f6b3d6d47dff2e634a10f0c5525d5441a43a285c50fb9973749007f999491d69027af993a0dee33088b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-win-x64.exe", - "hash": "ae84e7adc817abdd3a60fd42bd9368c302538bbfc7f2157db77aa6423bb4ebcd55fc7ff5cf783bc96728fbbd2a591f80e6528c851dadb5274d0d5dd4265fb5df" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-win-x64.zip", - "hash": "5e5e58422d4124edd1fe019d9e1b791fc5c6070c2515d860ff496105252fa4bb16b46b186ba2ca43bf137f9fd8ba10a2f1ca61057c377627dec3e798ec08a4bf" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-win-x86.exe", - "hash": "12af1565e02b42337f514bcdb51152b9b0f89980436ef59e0bab48007ea3ce43775a3267a80751025beebbe107dda0640beaaabaddf942e2878313f1d77ece4d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/aspnetcore-runtime-7.0.3-win-x86.zip", - "hash": "db79c243643fbdb0b3b23dc6f098d042f0f8718915b3009336a4afdcffa9b0ec34407310404b1a989c807d5109a558b95d7a6b5faecfa5ef5d0ec53cc3322fdb" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.3/dotnet-hosting-7.0.3-win.exe", - "hash": "e1c0d9a3b8f23d5469cacf97d5ee85f755b632a4af2c37cc680e49f48a748b9f54bac75723b8af4d347eb19a775b9d274bfef777d16e31114347b2ea61f7e188", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.3", - "version-display": "7.0.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-arm64.exe", - "hash": "944aaa353b9f371006cb4a98e1cb1b1cdad2bddd9958027843d5a841fade46f1bbb53caf7fd28c58f22faeac0258482ff7c1a7d7d4fd85d5cc1d8f9ae840900e" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-arm64.zip", - "hash": "a786a2c25e3cd0e70bbce6f330b156f3bbd0f7441fd78c2bad5ed8f892ecc1a362bd13932a8fc31d8297127aa5ed704c6864d34c62689334e35020770ea916cf" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-x64.exe", - "hash": "3a401ba2681cd6bf88cdbc63d64dae390b53a0d49f5cc5ebdc02429e51e503e274833e9f1984c644d64713553192ec933a30d6fc98386cb87abb605e33cdb4da" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-x64.zip", - "hash": "ea3a5d7015f6ce7692ffc73636bbe0fcf1e847d80cfe296fb1b09e8756e651d83f60498c7e7bca924f1625fbde566b22859e67c5a05f259999750652930029be" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-x86.exe", - "hash": "8aad7c1766f11337dfeb8774b28d7462b742609f27dbf6ee0f1ad300f0bf7def00f75d47b151b433e3811dec4144521972c30f1772c86dbabc465d2e8299db7e" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.3/windowsdesktop-runtime-7.0.3-win-x86.zip", - "hash": "33db1e3b7cccd1027311d4570650703cb2166d966c21025a2ef2c2a9998a901ebb2c47fbe9b1f56b7d5b702d6346b870e7f620bfb58efbdc8dabb99f25a47b1b" - } - ] - } - }, - { - "release-date": "2023-01-10", - "release-version": "7.0.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.2/7.0.2.md", - "runtime": { - "version": "7.0.2", - "version-display": "7.0.2", - "vs-version": "17.4.4", - "vs-mac-version": "17.4.4", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-arm.tar.gz", - "hash": "01efb2234970de1157e55e5b82f66850d6241bedddc44fbafd9e2488c665fd459fc99936bb6f80528d28b3abeae2f3c5d13cf63fc94cc780e056ab912a8c398d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-arm64.tar.gz", - "hash": "dece1d39074dde28aa61f51f3d932ee5328c9ec2c5e6c9830e304bc768e3253b5fab3eb2e27752d39547d68c29666440fe5c96f0fb0b8e503b93f55429df544f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-musl-arm.tar.gz", - "hash": "e73cdf54f79a39b95c9f3f3e29caadedfdd08521fe45ef94f2ed81779158c3e0f24219bfb2277d656dea7d82f454b517b37ec81e8e637b61cd572463aeeed598" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-musl-arm64.tar.gz", - "hash": "f19984914fd32b4fd7b119d62dc16577aaad3770f0ae9c769a8732f4c23cbc33e3bf3cfe553ad945f27a3e3f72cbef49e741852cd94c3c9f1540c6ef2d9f815d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-musl-x64.tar.gz", - "hash": "83f50faf95a2ba3756da838fe2f3272f18494f5707aa787e6519f2b145107297c20a974221b5a4ef383dc92486c43cf6899f51a8e776c7ed7bcf1855ea2aba15" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-linux-x64.tar.gz", - "hash": "56f7f471052b955968b9a4caa27299ac003e0347ae80e8ef23de87d28a2707bdf7ceb70467cc3e9f0c80928a779841dd7e1392ed6b06e66a7a9cda696d5c0a1e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-osx-arm64.pkg", - "hash": "43115e5b577dc27d56c5ba67fdb23153d3ff4460a2bc5c90d05f9840568c5bb61585b42d08e988532cbd4776850a4150bd8f3bca3d815126d31fc413062c9a8e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-osx-arm64.tar.gz", - "hash": "c8ee455a364a53d0945bf76096bcc568a45b843bc5b313392ab9a07f1e25b16110a411a2d4bb3b6632891cd4ea5147597c93065097bdcbd5038107382c84c9bb" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-osx-x64.pkg", - "hash": "0ec8ba70402c18ec8b2ccfffa23aefea9c23c19e7d2075629662929cbbe5d596bce43149fb6f9d27198eadaa463717af387cb960ce049004b7e409215bebddda" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-osx-x64.tar.gz", - "hash": "6fde32130590d18d6bfd73fd3c2cd01f3ed6c2b3316285f64fb0bcc8889707e0a6e1415f796f5553486a89ef817628add27c64b69ea41c6cf4cd9fe811caa10f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-arm64.exe", - "hash": "64e548846437c11ad681d7afbc31047ab8d188932f95db27005fd1a775e90cb49f24e00cb152cf373a5b1531b12a02b7746e7ac7aa48c5748b606ce74e712e25" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-arm64.zip", - "hash": "d45c551bc32a9d6dc58acd66e411d8548ad856be95ddf5e09739359b74b86467aa1b219297abccc0f6725fa3cc2cbc976d6c47c7372d7edd07784491469e6c18" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-x64.exe", - "hash": "cf936a867c3841041e2f932f4ce7815755389ebe7da9a8b6e62044e319fcff6135fa8c7189394191e02e20266542fabed3b4159df2c0744ee912203e781037e9" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-x64.zip", - "hash": "34eb76387dbf5ddcfbfdeaaafb20ac21f45ac3fa0ab98eeecd704a5acf2e0d4016cb7ecbd2fe06fc0963b082571793847f0172fd63189430cc9f5cf0cd068089" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-x86.exe", - "hash": "103ad3bd078161fe8386d5858bdec0eb993b2661e3f71564840f21766cdda7c6a5ad6e74b801edf19df7dcfa96823642b4a849961d3055ed4d3b363e86b5f928" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.2/dotnet-runtime-7.0.2-win-x86.zip", - "hash": "f56f94d02cf35d241859ad81764273b5e2b2aafa295049e0c5c23c8d1797ac7400660f1af70be3f17a2987bb7c8ad466d57ec138ea792559cd323e835c60e2e0" - } - ] - }, - "sdk": { - "version": "7.0.102", - "version-display": "7.0.102", - "runtime-version": "7.0.2", - "vs-version": "17.4.4", - "vs-mac-version": "17.4.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-arm.tar.gz", - "hash": "67db0338992e39b5ae83756d7f89f1e9195b624c24ba08124ee25cc5e3ce4f09af6d5aa45cd301585cd41f9b71e9de1a82d6afa4a16149d1098377e6e44886f8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-arm64.tar.gz", - "hash": "a98abed737214bd61266d1a5d5096ae34537c6bef04696670d88684e9783bab6f6d45823f775648d723c4e031b1bd341f771baa6b265d2b6e5f5158213721627" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-arm.tar.gz", - "hash": "c5cecd8fa717fb17547b9b988da09593287173717090928121eaf1f53e70cf539e5b12119d1d4abe35356e7a37927b282402bccc0c1b48bf5e5edc110e7c3327" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-arm64.tar.gz", - "hash": "279e1b8eb77ae052a3df7701c90d0ccedb33a935b79e525aecf1096ccc4736f90242af5aeb60e4cb83362829f60a194b67ca38cf559f873b9a518fd90f4404ee" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-x64.tar.gz", - "hash": "823647662c8266a1ba8f3e82d5773a8aa71569ea1bb8ff2d388fc6553a1cdbde9bd1804dac6c06e5c8abfa6e749d731597b980118ae05a02ff0096cc6ecd65c1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-x64.tar.gz", - "hash": "7667aae20a9e50d31d1fc004cdc5cb033d2682d3aa793dde28fa2869de5ac9114e8215a87447eb734e87073cfe9496c1c9b940133567f12b3a7dea31a813967f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-arm64.pkg", - "hash": "1b47be387ad2d815d32dc5b84ccbf279a3805d024db5005652c6e985ca3670afaa717761c3e63ad11f0f3815367da177c2814420a91fdc145524c3e2ab33bd6a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-arm64.tar.gz", - "hash": "bc95a0215e88540bd52098453f348edb01ffec11ccfc44c7c017bfae5243ce2f0a50f4bb06cc6c3a622c9fc27b89f026be172c2d1bfb8ba62ed007071d5224b5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-x64.pkg", - "hash": "0c47fb8da96f7ef707837a3a2b459e03327f4d614ac7f59a3a378377f8ab3d728a352bd44ea1260d029a8c14b1dc93e4992a740894d2f90425ef58ac822163f2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-x64.tar.gz", - "hash": "b7a66a6dc9e6648a97a2697103f2a53f37cab42d7dbd62b1f6ce5b347ca6cc7e45e5474ddb546e10f1e49ac27b20c0f58936093decf779941afd2ff761ecf872" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-arm64.exe", - "hash": "b330f8057f5a3b53108768364bce54329e462d998a4d3cc2a0db82d7cd7483c3b33c1bb951f2f62522397eeb5ff7d1a7d6b11117f62d88365e93eb5e1e06416f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-arm64.zip", - "hash": "90fce08820e7f7d9f1c1963bcebed6c947ebebdd86d21afb1abc69b204d5cbf3f117a385a25de8d93bea79d465e0d4a74299a688e9ebe72510573545dcabcfc7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x64.exe", - "hash": "1fbfce7951fb95b0219f56c409740767f3fde397b9ec77a1c7aff2b9184e4b93a009a605ca301b3030398d47ae018918555c49613015b2397de8b8690f7fd99a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x64.zip", - "hash": "841ca296ae1d4f6efed6516dec0594c44449129113e05351b3ca8a92b573ee5d333eaabb577169f5e32c12ee977f24ac0ee3d9a30fbb9a2b0b7c08b8dd414e85" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x86.exe", - "hash": "f6efd0faf941ad971dd4e0fab13902d11a3eab80e307c2d6e4621d9d018ac329883959817100f02c0268e5b95879e4ac6e332a992df36b623b7aa186166ac340" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x86.zip", - "hash": "96168b0f72ca15857082aa3b89342da709daac12251e02f2673e108ad0b47254d11a60a3457cee699ddaae6d486372c5e3bbf393077e1d27a0f635b099c03993" - } - ] - }, - "sdks": [ - { - "version": "7.0.102", - "version-display": "7.0.102", - "runtime-version": "7.0.2", - "vs-version": "17.4.4", - "vs-mac-version": "17.4.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-arm.tar.gz", - "hash": "67db0338992e39b5ae83756d7f89f1e9195b624c24ba08124ee25cc5e3ce4f09af6d5aa45cd301585cd41f9b71e9de1a82d6afa4a16149d1098377e6e44886f8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-arm64.tar.gz", - "hash": "a98abed737214bd61266d1a5d5096ae34537c6bef04696670d88684e9783bab6f6d45823f775648d723c4e031b1bd341f771baa6b265d2b6e5f5158213721627" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-arm.tar.gz", - "hash": "c5cecd8fa717fb17547b9b988da09593287173717090928121eaf1f53e70cf539e5b12119d1d4abe35356e7a37927b282402bccc0c1b48bf5e5edc110e7c3327" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-arm64.tar.gz", - "hash": "279e1b8eb77ae052a3df7701c90d0ccedb33a935b79e525aecf1096ccc4736f90242af5aeb60e4cb83362829f60a194b67ca38cf559f873b9a518fd90f4404ee" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-musl-x64.tar.gz", - "hash": "823647662c8266a1ba8f3e82d5773a8aa71569ea1bb8ff2d388fc6553a1cdbde9bd1804dac6c06e5c8abfa6e749d731597b980118ae05a02ff0096cc6ecd65c1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-linux-x64.tar.gz", - "hash": "7667aae20a9e50d31d1fc004cdc5cb033d2682d3aa793dde28fa2869de5ac9114e8215a87447eb734e87073cfe9496c1c9b940133567f12b3a7dea31a813967f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-arm64.pkg", - "hash": "1b47be387ad2d815d32dc5b84ccbf279a3805d024db5005652c6e985ca3670afaa717761c3e63ad11f0f3815367da177c2814420a91fdc145524c3e2ab33bd6a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-arm64.tar.gz", - "hash": "bc95a0215e88540bd52098453f348edb01ffec11ccfc44c7c017bfae5243ce2f0a50f4bb06cc6c3a622c9fc27b89f026be172c2d1bfb8ba62ed007071d5224b5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-x64.pkg", - "hash": "0c47fb8da96f7ef707837a3a2b459e03327f4d614ac7f59a3a378377f8ab3d728a352bd44ea1260d029a8c14b1dc93e4992a740894d2f90425ef58ac822163f2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-osx-x64.tar.gz", - "hash": "b7a66a6dc9e6648a97a2697103f2a53f37cab42d7dbd62b1f6ce5b347ca6cc7e45e5474ddb546e10f1e49ac27b20c0f58936093decf779941afd2ff761ecf872" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-arm64.exe", - "hash": "b330f8057f5a3b53108768364bce54329e462d998a4d3cc2a0db82d7cd7483c3b33c1bb951f2f62522397eeb5ff7d1a7d6b11117f62d88365e93eb5e1e06416f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-arm64.zip", - "hash": "90fce08820e7f7d9f1c1963bcebed6c947ebebdd86d21afb1abc69b204d5cbf3f117a385a25de8d93bea79d465e0d4a74299a688e9ebe72510573545dcabcfc7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x64.exe", - "hash": "1fbfce7951fb95b0219f56c409740767f3fde397b9ec77a1c7aff2b9184e4b93a009a605ca301b3030398d47ae018918555c49613015b2397de8b8690f7fd99a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x64.zip", - "hash": "841ca296ae1d4f6efed6516dec0594c44449129113e05351b3ca8a92b573ee5d333eaabb577169f5e32c12ee977f24ac0ee3d9a30fbb9a2b0b7c08b8dd414e85" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x86.exe", - "hash": "f6efd0faf941ad971dd4e0fab13902d11a3eab80e307c2d6e4621d9d018ac329883959817100f02c0268e5b95879e4ac6e332a992df36b623b7aa186166ac340" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-win-x86.zip", - "hash": "96168b0f72ca15857082aa3b89342da709daac12251e02f2673e108ad0b47254d11a60a3457cee699ddaae6d486372c5e3bbf393077e1d27a0f635b099c03993" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.2", - "version-display": "7.0.2", - "version-aspnetcoremodule": [ - "17.0.22341.2" - ], - "vs-version": "17.4.4", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-arm.tar.gz", - "hash": "240f87b9b9b7f009c2222a894bb778464163031a2dea8684ad77f40b2e3a556be7c53b515f1dc8909a709c82a86cf4840e00170d4b7008af120aea896d75342c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-arm64.tar.gz", - "hash": "43ad795456b6d7a1f566113aaca4d7817dc4ff9cc893cab48e01d2d9685a1febdf397dfbc774fa7adc30bac7884dbd60980fe6b95efbc9497cf3228688c123c3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-musl-arm.tar.gz", - "hash": "0c71d724c95e8b13810dc6758ca5ecf46166d47eac6d0dedfde67c4a22cec33a28c8058430c1b61e287ca6d285902d90236d400c9d97b0eb48d8bb19a4f43834" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-musl-arm64.tar.gz", - "hash": "eff78e22f28184fd41193da4915e8e0e140ddc84c5f748deb3521f114dbe9856e5b1a9bffea8b4ad4543f9ed339e823a4de9e4c4acc0fdecc95d985786ed41ca" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-musl-x64.tar.gz", - "hash": "338bcea165cbb71c2b2b0b69b5e655a33ed568fc24b58bdc7626d20cb62d5bb7cf304edd2a866b19e45e0620902417b973eae499391c0f66970f016f5f065a3e" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-linux-x64.tar.gz", - "hash": "d3b6c845030069581b3bfd739e3918ce77ae76c8e2e57b8e6c33c9134c46bc8c09fa9b74abdbc917c614c7d09ecbac149b0db1be2e045d26d82c61d976279b49" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-osx-arm64.tar.gz", - "hash": "4538a57c6bea5d3137ec44286b17a4ab0df4b5c946db3e9bb50bd97cc0bff6f7ba6f1eb951d77e9f77d3727af7bf04105076f74f2c8b64005b1175f1c8f5cd94" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-osx-x64.tar.gz", - "hash": "a6e867fa4a9774231c736dd61e54efd8f62dc29fdcae6be298023ee86fbc8d75867d58d5968ffe566a497dfc1b10ef0104194af495d5cad48871e989b1bc2778" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-win-arm64.zip", - "hash": "7d3576ae6d6924fa76ef78ad229115451ed33e51e39df28ee71ff60f0acfc90a6554ff1f421ca73456280dc039d9b93b8fed93d3dc6fc2103c5aa2bb217f58d5" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-win-x64.exe", - "hash": "5c0f00e3adb2cc93850c7962cf632214dce85f3075901ee9b9749625034023b461660e444c3e20c054bc175bcf51401866191789e533271a83e6059fda4b6957" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-win-x64.zip", - "hash": "548764828d2e122f1d1da9335a193a8dee818a3e3c6d705b4e8955a9ae9ce97a6fdb3187f04b5b4690998b8a8918d1dd052a738a50f6a7f554e34b318d54e284" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-win-x86.exe", - "hash": "df7b83a2d7c9a7facdb1d19a958fdc0cb1c9220249a81f35433978c6965098a23025288b15d1e7307f3a53718dc6406c00a553f19011b4f772bfc4165da21c3b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/aspnetcore-runtime-7.0.2-win-x86.zip", - "hash": "fd52c5cc067c1f79fe30fe9de2de2b9a5bea330dccf8d18fda34c0b857817fa84ffe46560f635f5059d35d39721258d718461c1fe9c3df27ad0944fae32e8ce2" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.2/dotnet-hosting-7.0.2-win.exe", - "hash": "183f3510581e6a8ed7c8d40d1608d1db8050640d79ff133e013bbd45dd3867733adf20d9723d49820b9c474863e269c1d6e8e3dd74354154ad6da951ba58e55c", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.2", - "version-display": "7.0.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-arm64.exe", - "hash": "833aa91c9fba4243668ad39b3be91c10a17fed692ed74a83cc79d3320f126119a5d5d01883b9248203fc55ea7dfeb49e28ca77c6a918a70859bb300c66160f3f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-arm64.zip", - "hash": "79f8317cc1a2788f60ddefa1029d05e943bb68ff9698906c53c7f8392319149ba62f6b1be79015a4d7149cc7dd9f470e16bc6b1bc4d1daa596493d5477539a65" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-x64.exe", - "hash": "f40a360ffbc9b3c21eed07f2400e595505377f467ad3f80377937b88ea89f1afd302c00fe5e4a0bf4b7e281cb1af3d2f79b3ced7ed408d97b465310719199447" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-x64.zip", - "hash": "ee00805d6e97982d760f76ea780902897b91abac81e55566c224c0e73fb9922df784f40b4615e7bb7621c0b0bac043c84896dfcdef7f68071adfc63652016a10" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-x86.exe", - "hash": "b50a1fc97c80cd330cee098e171e2b6e6b96553203d05a2aee195c1ee32c23a4162f90e11e4fa8a8fec3e55a73a0e95bace4c8266207c47ba8e9c26296f376e5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.2/windowsdesktop-runtime-7.0.2-win-x86.zip", - "hash": "4c6c153de2635d330c0057b2808b7a1519b0803cbe9f90ee41087f1357e0f2160a00a8f10f9c6c74d64814615600be11cf59668e00fb32e202974640d2d0ae37" - } - ] - } - }, - { - "release-date": "2022-12-13", - "release-version": "7.0.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-41089", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41089" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.1/7.0.1.md", - "runtime": { - "version": "7.0.1", - "version-display": "7.0.1", - "vs-version": "17.4.3", - "vs-mac-version": "17.4", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-arm.tar.gz", - "hash": "2ff35a40fe8809743eacea8d38c15aaffa54f17aaaaa07914c437e912c7253ae7d143fb8a968ed98238af8cb6d14f36b5b062a6a4297c16bae75b46f3b040e26" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-arm64.tar.gz", - "hash": "53e9b03326c2fdb8d2366a97f3cfbeca4f0f497b82cf665d5d4543f5d0fa8a177c53e8f48597f79072e962e3c7ef6baaca96143c2f775be52071e8ebbae88f34" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-musl-arm.tar.gz", - "hash": "99f810df69a571c8966deef65234b50c7064c63164af370d1d0b5976ff919900d008f3a0d5e1e4b76a2efc288a0ecc39026de97ee2215f38f6ce3cbc2e844840" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-musl-arm64.tar.gz", - "hash": "b9a7f44e93170a538963f5078c756993c414b5594bfc86965ee03fd83d681f4a65cbdf783309e5b66fec35fc982aa49c89137ed8d22897cf0aa8db9aaabdba08" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-musl-x64.tar.gz", - "hash": "41640448d291d9373d2effd5e61cd8f24664891df7f46fb6eb4fdb16929ff774a12a3ee4de90cf4357ec230b07c56978abf2ceeeb954d74baa48bd3648177e0f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-linux-x64.tar.gz", - "hash": "db79b221f6bfa4d56fe0e2b7c237612bd74a81deb18f038ab7226b9e06eaea6e90909f1493f0ab4cf7778b6544b8aaa1295ece1c4a9f1fe39ca44bbfaced46c7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-osx-arm64.pkg", - "hash": "6274ea73ada1086588233f35fe4cb66fe1e45ca5e224d67c5a5eea9c73b276a1c3171e6cb123242df8b6abdb21910e93905e836c4a9512f837099af18d9e344b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-osx-arm64.tar.gz", - "hash": "2a4e583ed1a2c32de6feb25019eb9fe4fbe26d0cc1ab45a2c7f93db61ffdeef86e37a8af5b36fff0729d649743206986374173dbc0db84d5c0f13b308e40c96b" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-osx-x64.pkg", - "hash": "2a4429014bc578b5b4e4323978d04f3ea169f79d3316a31461f1f1ec9f39d96fde423f167321a469d22a62311097134a2be965906ee4c0e14a4a875f6d6a725a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-osx-x64.tar.gz", - "hash": "bec337234d04da6530437bd13ec59e0112c4cf951402e0a5ff79c60c93498701e5b5abc6dffc5afa5ccfb214eb879d278ee5beaac8f4f7043ae183157a7ab476" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-arm64.exe", - "hash": "51b572f19f9deba9b6e862032d91b76207d99029220980ba0ce786981d9e9b63c6d5e5f76e254493ad41d6c252e6b1bfd0ffe3b18aecd94af7119afffd43b33a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-arm64.zip", - "hash": "302c50c8113baffdcabe579c744a7a1496bf3dad65ccd0e51e8a2926dcfd2e668ecbbf5561fcecea3ccb7e3ea29a34f3447e3f916827214b45bf1d51b95f5130" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-x64.exe", - "hash": "5cf727a7128a52d839d17ba5b5b6fc2b13c18347e78ea8d3605946f7fc4306f1b3702a63d7e42210d2a7e4379fda94fcd1002bb02824baedfa11e15157e0ef12" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-x64.zip", - "hash": "36a2245abc70c794282a7e6f270585baccd074875faff09b6eccff1c7ac8fada782951bc0f34bdc4bb33794508660346daa39c03aa0a45313e109c05eb98bd13" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-x86.exe", - "hash": "0c00750180822381711698884dc1e713ea8107ebc26f98a9060f749e8b4744d4f58b04707070f4ee8fe9d720cbf64d5e67a1b17a4933d3e244c8e8b74171ee3e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.1/dotnet-runtime-7.0.1-win-x86.zip", - "hash": "ba2767b0372fb0a10c4fa6422f33d6f2dab2e29796755bd34f13f2c7b404a81411786238fb87d0c04eecd154657f695ec0038269225da84632c85659620e0009" - } - ] - }, - "sdk": { - "version": "7.0.101", - "version-display": "7.0.101", - "runtime-version": "7.0.1", - "vs-version": "17.4.3", - "vs-mac-version": "17.4.3", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-arm.tar.gz", - "hash": "e8aed900dc127c035d21d13d4600a9fb5e921da23d578b3e7c130951e4feb434f6017cd37eb96fbdfb1bae964a364c6981213c3dd358ec9ddd1f7437a394d4de" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-arm64.tar.gz", - "hash": "b0874f4167e9792802b46a7ddcf3a7f7bf7329eb3699d4308b1cdd45ef32678962bbd0ccfd186e48e11cac3b198c4415ceac2f5e546d5fcdf0cecb05810863f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-arm.tar.gz", - "hash": "a454cbffb42b218d3d2d37fdb68f2a15fc32319472abc61d018701b7845d9828c65bb1157eab0789c7073a411fd4744e969bec912e0a4b737c31714acd80006f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-arm64.tar.gz", - "hash": "341819fe59a7eb2199bafd4e01bd329f522d20e9f8f796676dfd7cdbfe59e1344eeeca6aadbce70fab44d655036ab86bd2b34135c732ebec068009b63f8f510f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-x64.tar.gz", - "hash": "e487532682df94378387acf07a11583a982418a46ccd07a20258ae8850fd549153d468771d9e44171790322f5fb3571be0ea242863853c5f95ca6697463f7262" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-x64.tar.gz", - "hash": "cf289ad0e661c38dcda7f415b3078a224e8347528448429d62c0f354ee951f4e7bef9cceaf3db02fb52b5dd7be987b7a4327ca33fb9239b667dc1c41c678095c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-arm64.pkg", - "hash": "4237cd3a7558ce413dc86cdf31330397a55c5a7ba58fe15fc857d82fd01b39cd0857b510f3274d42ff085ee470a462ca3edc52661af1cc569dd35fdbd9817092" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-arm64.tar.gz", - "hash": "586b5a8f32601ffb8466e0135561a02105766388997bab92a428b4567ffca961dba540d4f6fe237f3a4ea068dd4bf3c9050c8557c0cb7e25f4c020fe0a62377a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-x64.pkg", - "hash": "58fccf4b4a53e392767ab1ef1a43947bbac46c6628a0a3903c1955c57a5e0d3c77a8d58b21c04c7ed2b4f23956d64ff51ff43182e6d8191686337f36d3f2f6f8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-x64.tar.gz", - "hash": "f08a2137c37386ed9408106d10a3bac5f1a12dd3535e20e4384a96193b82fc27c15ba0ccc47e9bd7a12e533a3e9f0e220a08a220887cd12c678fed476ee12bb5" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-arm64.exe", - "hash": "6a331577b48c8b17a8ed7d0ee2dbfcd26c4d56d5e8668b67d44f8bea0e4526185560eb8ca9f8a26c8d3cae23d9d64877c2ab2ea6fe9486dda222cab34e3e9421" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-arm64.zip", - "hash": "a88018791d6544d5aaabd13dc9291bfc6963fd39af3b67b4cf2aaec5b9e8bbee4dd16d35ded9d296d8a929082dfd6e13d6b2ea5677461d5fd7df1cc7bbd30e78" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x64.exe", - "hash": "51776ee364ef9c79feaa7b7c970bb59a3f26344797156aefad13271e5e8b720c9746091bfc7add83c80752c40456491d062c54ae2d1ed5b0426be381a0aa980a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x64.zip", - "hash": "f7083e2fef2f5c93c7d899cdf047f5c88626603ad0fdddf1f176820b74a32e3fcfb2402aef49406765ac8f160b5b48a714f09db2cce0ed04575f71dc6a49eaed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x86.exe", - "hash": "6dc59541be52f01216a7acdd1de9fba6ed3ce43da850055aae6cce6412cb3cf4af333bfa463775b1ba98d3a03613c1e25a46c22bae331cabee3e6bc011183040" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x86.zip", - "hash": "ee3bc0f39adc99baf1870d0a8f6cf9b14458b92dac0722cb05a778afc07350d414cb1092cea44d88efdea5c67a39b5f8037892ba8de099da171d0bc132f1f651" - } - ] - }, - "sdks": [ - { - "version": "7.0.101", - "version-display": "7.0.101", - "runtime-version": "7.0.1", - "vs-version": "17.4.3", - "vs-mac-version": "17.4.3", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-arm.tar.gz", - "hash": "e8aed900dc127c035d21d13d4600a9fb5e921da23d578b3e7c130951e4feb434f6017cd37eb96fbdfb1bae964a364c6981213c3dd358ec9ddd1f7437a394d4de" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-arm64.tar.gz", - "hash": "b0874f4167e9792802b46a7ddcf3a7f7bf7329eb3699d4308b1cdd45ef32678962bbd0ccfd186e48e11cac3b198c4415ceac2f5e546d5fcdf0cecb05810863f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-arm.tar.gz", - "hash": "a454cbffb42b218d3d2d37fdb68f2a15fc32319472abc61d018701b7845d9828c65bb1157eab0789c7073a411fd4744e969bec912e0a4b737c31714acd80006f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-arm64.tar.gz", - "hash": "341819fe59a7eb2199bafd4e01bd329f522d20e9f8f796676dfd7cdbfe59e1344eeeca6aadbce70fab44d655036ab86bd2b34135c732ebec068009b63f8f510f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-musl-x64.tar.gz", - "hash": "e487532682df94378387acf07a11583a982418a46ccd07a20258ae8850fd549153d468771d9e44171790322f5fb3571be0ea242863853c5f95ca6697463f7262" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-linux-x64.tar.gz", - "hash": "cf289ad0e661c38dcda7f415b3078a224e8347528448429d62c0f354ee951f4e7bef9cceaf3db02fb52b5dd7be987b7a4327ca33fb9239b667dc1c41c678095c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-arm64.pkg", - "hash": "4237cd3a7558ce413dc86cdf31330397a55c5a7ba58fe15fc857d82fd01b39cd0857b510f3274d42ff085ee470a462ca3edc52661af1cc569dd35fdbd9817092" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-arm64.tar.gz", - "hash": "586b5a8f32601ffb8466e0135561a02105766388997bab92a428b4567ffca961dba540d4f6fe237f3a4ea068dd4bf3c9050c8557c0cb7e25f4c020fe0a62377a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-x64.pkg", - "hash": "58fccf4b4a53e392767ab1ef1a43947bbac46c6628a0a3903c1955c57a5e0d3c77a8d58b21c04c7ed2b4f23956d64ff51ff43182e6d8191686337f36d3f2f6f8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-osx-x64.tar.gz", - "hash": "f08a2137c37386ed9408106d10a3bac5f1a12dd3535e20e4384a96193b82fc27c15ba0ccc47e9bd7a12e533a3e9f0e220a08a220887cd12c678fed476ee12bb5" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-arm64.exe", - "hash": "6a331577b48c8b17a8ed7d0ee2dbfcd26c4d56d5e8668b67d44f8bea0e4526185560eb8ca9f8a26c8d3cae23d9d64877c2ab2ea6fe9486dda222cab34e3e9421" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-arm64.zip", - "hash": "a88018791d6544d5aaabd13dc9291bfc6963fd39af3b67b4cf2aaec5b9e8bbee4dd16d35ded9d296d8a929082dfd6e13d6b2ea5677461d5fd7df1cc7bbd30e78" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x64.exe", - "hash": "51776ee364ef9c79feaa7b7c970bb59a3f26344797156aefad13271e5e8b720c9746091bfc7add83c80752c40456491d062c54ae2d1ed5b0426be381a0aa980a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x64.zip", - "hash": "f7083e2fef2f5c93c7d899cdf047f5c88626603ad0fdddf1f176820b74a32e3fcfb2402aef49406765ac8f160b5b48a714f09db2cce0ed04575f71dc6a49eaed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x86.exe", - "hash": "6dc59541be52f01216a7acdd1de9fba6ed3ce43da850055aae6cce6412cb3cf4af333bfa463775b1ba98d3a03613c1e25a46c22bae331cabee3e6bc011183040" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.101/dotnet-sdk-7.0.101-win-x86.zip", - "hash": "ee3bc0f39adc99baf1870d0a8f6cf9b14458b92dac0722cb05a778afc07350d414cb1092cea44d88efdea5c67a39b5f8037892ba8de099da171d0bc132f1f651" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.1", - "version-display": "7.0.1", - "version-aspnetcoremodule": [ - "17.0.22323.1" - ], - "vs-version": "17.4.3", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-arm.tar.gz", - "hash": "13585a0eb2997b24a37f554581c4014fb6e04fe6839a5804a899fcd4424b27ba3729f7003cc36ed0c1af4c0642b25d6fa7fd444af0a09f40117721ac6682c40a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-arm64.tar.gz", - "hash": "e80bb0756ba23ebeff96b5e97758a4c74f2bea29b718860e795d62402604c42ec9b544e89e94662a037bc0a68a967b93a2e6321dfd3c4416cde47cf188f67186" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-musl-arm.tar.gz", - "hash": "67423913d25a3c7e2a9a251970b1b5566de9b3931ed4c2d7775985e3ffe15d7fa377245879cc4390eacd5a9b78285a237381c0223112cfa2488dcdd508c27778" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-musl-arm64.tar.gz", - "hash": "89e5b79e70ded7036c0db6ab8119e28ec2d0608e04fa99218defca2061fba0b927fc90af0c2dfb5ae384333f814d7d9f66e8218b3fb519b941cfd958461452b7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-musl-x64.tar.gz", - "hash": "e92d25bec3a3b0be34d433e572dfc344c84541fd3455362bdf6621cc47a542b1d9eb85bdf58877a76aea58223c9073e7768d60ba11ae2e308e499d2994ff329b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-linux-x64.tar.gz", - "hash": "8265cc0f35591ba58b4c6e12378048b72d1a767c56fe29fe9b495c4ec537ed43ee30890412ae2d52b15a732bc164894d10fa8a59407073d41ac62a3fe6254f81" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-osx-arm64.tar.gz", - "hash": "d804532c874279653fc329f23d246dd76aa375acf508de141e5c1d9d89e353f7085e53f1898cefd1d21d4bf98a719d658207b9d08c35bbc2f23d2759fe7cccf4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-osx-x64.tar.gz", - "hash": "ce0f100cb4494c6133e2710ed92da8c7c7e7fd5626dd22052d9864c22ef4eec88b1418ce7357cbeea4349f12672efa3fe9bae5f3d41614b8fd70930b872844b5" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-win-arm64.zip", - "hash": "42391d73ba36630d7627cfeea13a7d54b4f86e23094d8d266b6c34bca7cd7d028e281c1057fbc3c12fe9d43c833ab5ee39ec18b7e2ca6297c4a81cceb0ae7f8e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-win-x64.exe", - "hash": "20ccfb5582a1aac5c819a718c77f0f5ccda92cc16930ad9549b193a70635d17231b8045eb2ca2a37dca93464bad7a4cc5e9c1664773b066dd814147b76b911e5" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-win-x64.zip", - "hash": "7afa7bb9febabe32b9a38ac9a6376e342cb08c6d1f967647575b49995dd74feafdd6e6723688e1378a2edbd7e893ce15a75c74bec534303f0e60356ccf29d330" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-win-x86.exe", - "hash": "3c6b798a992a3ca8c4f1e3b1dfd01f8561059b5e6814123dc1d7107bd13ee93f75eae9fc6b40a80c08d2059d14952eb3d3716f24e0371cd1e043f3dff36cc05d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/aspnetcore-runtime-7.0.1-win-x86.zip", - "hash": "df498919954ea4bedda3e12a680861f81c64fcf166cf85046ca1e472c3ca5b4311882ae0fae1ede4a704085b2a6640adfe103090c82b9783a7c86970463a93ed" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.1/dotnet-hosting-7.0.1-win.exe", - "hash": "d0296b2332ed125d2710c71022c307cf073ac9ab5a474b2d520357312cc2096c2d572421e0591212a6b4c6ea37876f25cf5e7dc3b0ff86804c62abfc6b6aedae", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.1", - "version-display": "7.0.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-arm64.exe", - "hash": "bc8034081899706538277c948d9756212e6fa5ceff297ed1d31bc4f7f515424d9e23d399d518bb8c4b15d09c8e0f32f4308218cde7e8302bccc2297d0f13b006" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-arm64.zip", - "hash": "bf9573bb8039c709136d823881be677851c29c4ac82543263f25a9a4957ba93a4ae392279a3c6a050270f7a829aef2886114bbce2215b7d43ac2805ecfafd171" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-x64.exe", - "hash": "827d66faf8666c8f12b6f85faece3edf3d87346ee71422b2d70e9e05e272b6d6bf0ff33b61348860effdfae1f4e91fcefb4ca37d76cd83267582733fc7df6728" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-x64.zip", - "hash": "45853c53e7b8d98aefebbd886f7af93cbd84a0dcbdf235ab314601718a3ddf4ce1dc0ca2f83aa6cad7c5248b073d8e4aec6c4abddc02b94188fd0e7f855649aa" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-x86.exe", - "hash": "f918e5bb69cb1744fa0e17b5c759c30aa4463597d37f72edd914b32df126dd23e8c0259c3853a0eabb81ea0c98d3981f1eb541916ebd62da73d033bdc9135647" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.1/windowsdesktop-runtime-7.0.1-win-x86.zip", - "hash": "d3013897a5f53e3bad12555defe430b340ce6bec3988ae8b9c00de37d1462060e1ff6a67fd448561284ed0217b63f8355f91613c8249547d65bc568037c9fb02" - } - ] - } - }, - { - "release-date": "2022-11-08", - "release-version": "7.0.0", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/7.0.0/7.0.0.md", - "runtime": { - "version": "7.0.0", - "version-display": "7.0.0", - "vs-version": "17.4.0", - "vs-mac-version": "17.4.0", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-arm.tar.gz", - "hash": "753815bc879465facdb81f3ddb65e0feec9f0a33c89ce7e2414b2314c0e143a76e3b4ac639448d9703b6f412a9824cc9cfc6a0d049be07336d1566ef565e3794" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-arm64.tar.gz", - "hash": "a359402471c0c4f11f9e472ee6f8d7d165b57a29f132e01a95d3ee4020fa27f9c6ed5ede4b41786fd9bbad1491a4726c6f45d105c19695c0a1cc9a9d414ee614" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-musl-arm.tar.gz", - "hash": "3d3c3a62f6e1b457604c5d642ac79027d804d2a816860f020806f77432d9e2a402dcde45c98aea68a2ec93ea97161f65222186e4bafee58d72e8122de941ce61" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-musl-arm64.tar.gz", - "hash": "8e51878ff716d56366c52af7ff92375d3df796ceb56a74ff88fce6c3461003ed05be1ed6504c0d7d217afdce1097895c8df508d4c64d7fae537ff53482c3f8ca" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-musl-x64.tar.gz", - "hash": "f37774eee98f38d9849c79d05c58b0d9e733d480b31a0615a1039613662579efef392d0129b2582281861c0647bacdb3acd78213bd33869b698e529b8e78ccee" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-linux-x64.tar.gz", - "hash": "f4a6e9d5fec7d390c791f5ddaa0fcda386a7ec36fe2dbaa6acb3bdad38393ca1f9d984dd577a081920c3cae3d511090a2f2723cc5a79815309f344b8ccce6488" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-osx-arm64.pkg", - "hash": "83b65c15c5cb76185d834f5823773e03537f471346830a93ae1a17d2635c3a5786bfbbf581bf9d0216e4f46776eaf8244143de6c5e62ea676599e82722deb3bd" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-osx-arm64.tar.gz", - "hash": "4a0dabfc8008dc39c3e7da6315475d5a20d30715cf1f4139e45ad1579486ba005a876918cf69369281b47d6932c070e735a4d7d84dbef8b0ef79f52e12b21d02" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-osx-x64.pkg", - "hash": "f02bd537c781d8a9045fc1883fcc9a2cd603f49cd06d91da783c1e03f52b1242025d6fde5c53fb8045baad7cffe7fe5546e45079377dc69c8c8f3943b1bcd819" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-osx-x64.tar.gz", - "hash": "b9b906561a443b0fc2064d7dfb9c497bcc157421c0fa7967547673e098c091a29012e36af3282d7bae9d51c216a31578b086d82c6e10ef6244e773b40ab57081" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-arm64.exe", - "hash": "cd6d79ac033b737f5d9ba6b06fea2c97eec216c85d6961cf6b0d0572ca4dfc5997a82aa8969edb26aeec0bae8deafcd702522f36726d8df1e61c80bf5966fc62" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-arm64.zip", - "hash": "325e02c7a6ab01c930fe199c56ef8248184774588a21d9f0f2ae61706f6d0360a8f2cd6523e0b2253de23f4b3851453a0ed8872ff0d5d548b14d5db9e6cbb82c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-x64.exe", - "hash": "937519b9479e1a5499e4ab807251c969ea9d4b5a5f80a7a74928b653f24f460d01445a144f084173bdae17da5ebd60ac641601ecd4c4e35c98f223da67be0d0e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-x64.zip", - "hash": "96bea9aa573326af8fa002a43e73115f0fed8446091a3e865796c4e9464b7b0ed7d953d32ce63377ac0994cc61f462215f7e2a426551e8ec5b891c50341e6498" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-x86.exe", - "hash": "d5e667c6a49e8c10466a2c2cdbc225c90a405ede45414b9ef3362df781bb49436e9abf4b905d8f3dbbd28a2ff173db7e13bc8a9abe005860a5fd64a699079cb3" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0/dotnet-runtime-7.0.0-win-x86.zip", - "hash": "135c44671f8a4618239c0ea19cfc83df39622afb71cf60f275db5eeabd7539453ea8d9d967b5d482ca4b0610bc47b1e2a06cce057d5e85bda4b82c257140f644" - } - ] - }, - "sdk": { - "version": "7.0.100", - "version-display": "7.0.100", - "runtime-version": "7.0.0", - "vs-version": "17.4", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-arm.tar.gz", - "hash": "11c1150357a0a79095b563671bc038085f8bbbc678a47681c4decade22fcb18504e60732518e681a5688008e7ffbad69933a8ff3bd91c09ff4df66a80a596809" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-arm64.tar.gz", - "hash": "0a332df58891e808c9adc2b785e9b0e658b29b494963c8d501b0f8806ff5d3daad4614886349cbba86af638ed7ac76e78a2d05aeca13bac25d5f45fbe62b8251" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-arm.tar.gz", - "hash": "26b7ca079c8c2bafb32b5794de698dd325837897ee4120d0a7bbbcdc7f034de5031c6f30536866ccd7d1338625f937f41cfa5524c64163faded58846bfa674af" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-arm64.tar.gz", - "hash": "8b3e95cc3e80eb05c7a0bc7ede1033320e03c78f4ecb7cc99b85fa99f56d72bc06342f342fe957e4aadacf9fb83fff15e658ae62c8fa8b29051898929c5ea833" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-x64.tar.gz", - "hash": "2ee0a055a3e46c6d9ced3cada5f91141b3966e76f4c4b11e58cd4c89ea69408a5b0efaaa21aaa04f743add38f1435f5a5852271a4222d5cd858907ec44f0af2e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-x64.tar.gz", - "hash": "0a2e74486357a3ee16abb551ecd828836f90d8744d6e2b6b83556395c872090d9e5166f92a8d050331333d07d112c4b27e87100ba1af86cac8a37f1aee953078" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-arm64.pkg", - "hash": "ffc9e6dd08b3e6edf411dde8d46a84a02d9324ac8765830831e424027fa744ac067ceba7406b13f231ea2397ff36517a090143874575ab1a829915403d1099b0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-arm64.tar.gz", - "hash": "d1af8592bc8aec43069f689449c159a4b13da419a924dab495b66bbf8c99b526c75c609171205b6d1b30bb0ff6f57797135245048e3629fbb33f462171107581" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-x64.pkg", - "hash": "eecedabf8eb36d1deb2a549b1dd0c836b58fdd12429acf552bc26ef1502d53efed17c3c2ad4d5e13a64f6fdd1591e5252ef106e887eaf3564b6daaf81542af80" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-x64.tar.gz", - "hash": "86165993dcf768b3ce793e94739ae681f30b63b3f7fdc82c6da7692f3867f93c19ac5b9152bc8f45708f4194187d60b706e0ee61a37f6e1470536c95a5e53e1c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-arm64.exe", - "hash": "521a07838b3fbcd833f2bf1e19654ff59d8c2a9cc9829d87f305d3bd23df448fc2bdb694b6f3a376223b6e83af22adb26c0efc26ad9cf3b1c9e33a33d412dbf3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-arm64.zip", - "hash": "62ecf2bb2466da663117563b8cc8059fc6dc79f3180012039692e693a14bc98daeb7218f83180e8bfa15f1aa419b780af4424b265a9f231bcb3f6feffc9ed921" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x64.exe", - "hash": "32dceb94ca6b2445ec39802d7bb962e2d389801609ffb6706925539380fcb9c9ed75b932daae734ea8d5189d34c956494f50648d3dc3e292392607360bb47f35" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x64.zip", - "hash": "e77fa3501f6945dd5730dbcec7632f070314717c6abfa95f95e13db53bfd55d2f46faa45809f796535749c8d98251828a4b4ab4d5ceb3ee1daa5262c6907f906" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x86.exe", - "hash": "8d9d1ffdc2749ed837f10401a999a88cb7f747f86b32d0ec5fdbdfdba83d2b8290a14430a2910971b4831c5d324af1319ae6ba608bc552ba9c6efef96badac22" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x86.zip", - "hash": "ae586c292334c51eebf5f0e6bcaa7e3a56a06a37d24278bd132f2df62702f79fab3b4a478c2b25a2920e40d34b3b79d89cb1c831eb1d94927f0652842d47a5a2" - } - ] - }, - "sdks": [ - { - "version": "7.0.100", - "version-display": "7.0.100", - "runtime-version": "7.0.0", - "vs-version": "17.4", - "vs-mac-version": "17.4", - "vs-support": "Visual Studio 2022 (v17.4)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-arm.tar.gz", - "hash": "11c1150357a0a79095b563671bc038085f8bbbc678a47681c4decade22fcb18504e60732518e681a5688008e7ffbad69933a8ff3bd91c09ff4df66a80a596809" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-arm64.tar.gz", - "hash": "0a332df58891e808c9adc2b785e9b0e658b29b494963c8d501b0f8806ff5d3daad4614886349cbba86af638ed7ac76e78a2d05aeca13bac25d5f45fbe62b8251" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-arm.tar.gz", - "hash": "26b7ca079c8c2bafb32b5794de698dd325837897ee4120d0a7bbbcdc7f034de5031c6f30536866ccd7d1338625f937f41cfa5524c64163faded58846bfa674af" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-arm64.tar.gz", - "hash": "8b3e95cc3e80eb05c7a0bc7ede1033320e03c78f4ecb7cc99b85fa99f56d72bc06342f342fe957e4aadacf9fb83fff15e658ae62c8fa8b29051898929c5ea833" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-musl-x64.tar.gz", - "hash": "2ee0a055a3e46c6d9ced3cada5f91141b3966e76f4c4b11e58cd4c89ea69408a5b0efaaa21aaa04f743add38f1435f5a5852271a4222d5cd858907ec44f0af2e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-linux-x64.tar.gz", - "hash": "0a2e74486357a3ee16abb551ecd828836f90d8744d6e2b6b83556395c872090d9e5166f92a8d050331333d07d112c4b27e87100ba1af86cac8a37f1aee953078" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-arm64.pkg", - "hash": "ffc9e6dd08b3e6edf411dde8d46a84a02d9324ac8765830831e424027fa744ac067ceba7406b13f231ea2397ff36517a090143874575ab1a829915403d1099b0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-arm64.tar.gz", - "hash": "d1af8592bc8aec43069f689449c159a4b13da419a924dab495b66bbf8c99b526c75c609171205b6d1b30bb0ff6f57797135245048e3629fbb33f462171107581" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-x64.pkg", - "hash": "eecedabf8eb36d1deb2a549b1dd0c836b58fdd12429acf552bc26ef1502d53efed17c3c2ad4d5e13a64f6fdd1591e5252ef106e887eaf3564b6daaf81542af80" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-osx-x64.tar.gz", - "hash": "86165993dcf768b3ce793e94739ae681f30b63b3f7fdc82c6da7692f3867f93c19ac5b9152bc8f45708f4194187d60b706e0ee61a37f6e1470536c95a5e53e1c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-arm64.exe", - "hash": "521a07838b3fbcd833f2bf1e19654ff59d8c2a9cc9829d87f305d3bd23df448fc2bdb694b6f3a376223b6e83af22adb26c0efc26ad9cf3b1c9e33a33d412dbf3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-arm64.zip", - "hash": "62ecf2bb2466da663117563b8cc8059fc6dc79f3180012039692e693a14bc98daeb7218f83180e8bfa15f1aa419b780af4424b265a9f231bcb3f6feffc9ed921" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x64.exe", - "hash": "32dceb94ca6b2445ec39802d7bb962e2d389801609ffb6706925539380fcb9c9ed75b932daae734ea8d5189d34c956494f50648d3dc3e292392607360bb47f35" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x64.zip", - "hash": "e77fa3501f6945dd5730dbcec7632f070314717c6abfa95f95e13db53bfd55d2f46faa45809f796535749c8d98251828a4b4ab4d5ceb3ee1daa5262c6907f906" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x86.exe", - "hash": "8d9d1ffdc2749ed837f10401a999a88cb7f747f86b32d0ec5fdbdfdba83d2b8290a14430a2910971b4831c5d324af1319ae6ba608bc552ba9c6efef96badac22" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100/dotnet-sdk-7.0.100-win-x86.zip", - "hash": "ae586c292334c51eebf5f0e6bcaa7e3a56a06a37d24278bd132f2df62702f79fab3b4a478c2b25a2920e40d34b3b79d89cb1c831eb1d94927f0652842d47a5a2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0", - "version-display": "7.0.0", - "version-aspnetcoremodule": [ - "17.0.22292.0" - ], - "vs-version": "17.4", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-arm.tar.gz", - "hash": "560f1a38498f36ccd7429f74e0dfea9e14ab668fc1f916e16542ed3ea4d6a8344f8605143b3c6c8f99248496d77767abedd69a50802d5507324cad44eed6fb1b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-arm64.tar.gz", - "hash": "ffee38cb0c8fd3ba20f3d814b7e141f94be18620eb91a229b80d7c609f6cad77efb7f8f276e9fbee4f3ed8cce33cc0659f0dc77faeb8f5427c95deead97275d7" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-musl-arm.tar.gz", - "hash": "e3e66099bc70e87902c35b5b84efec471b31d2607789088bb94b4aa903b518376879c683dc501486a43a1713afe77a437d0e3fef956abfb6005e1c73e355c9dc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-musl-arm64.tar.gz", - "hash": "8f6a881a061a6b5459039b57d1d8b9363828bdd4b98c16a214202b7e0a9841f07ed45cbd13d9ed588ba4ff5c072af4748f9728e64b6ff88559b72e395986e674" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-musl-x64.tar.gz", - "hash": "099cd5b3078f50036e5a638a83aaef987fa1a01f593986cca97ee35c8cb4e2707bf49559ae1bc55cf063d5f8ac2d9a1ec1b64371e075550faf47febeadc9bb47" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-linux-x64.tar.gz", - "hash": "02ce2e0b3c4b1d0eb0d9bdb9517a3293404b2a1aaf23311e305b856bb15723414f6328887788b875f0f80361f3e195c872ea3984971e5f0ab1ad5de43950d707" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-osx-arm64.tar.gz", - "hash": "437f4fe11c95330eb56dc9e4a0c5836546d9e5b28f6cd0236ef563a82b0103e3526c0e6d50d44c90f4eb19bd6a1f409178d0f7b7620a2fff185aee6ae7cbe337" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-osx-x64.tar.gz", - "hash": "a1ab796c04d17ade8d93bc53b58ebeccd541d30aa0438bd81ff66c728dc13f934043f98528417eb976ea426e58107bef371b26d5877a550f2397005c5362a1da" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-win-arm64.zip", - "hash": "710f259bf47d36c8594a4e9997a1171f27772da713e127fd22e2e89501c57b78990a06fe38440e5422dd20e132951ac43ab7cdc9fb2690c1cfb8d17c59b61832" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-win-x64.exe", - "hash": "83a8c15057bdbb64efdc1cb25b5824d9723d9973e73a6e837313e9b7d259ecf85bbd24715e35e0fa92bff8a2193eab4e78cfdb4f48f1f72fef67e800e89288a2" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-win-x64.zip", - "hash": "abcbf7b249b0a4591550328c734123685dccddc5dc73e5bc70bd34b04d7ad426ccaeb857aa8a4d9439a573a02f844b31b8a31b3d3acf28eaf1f1df3c5afaf7fb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-win-x86.exe", - "hash": "72681ee44cb17e75d8da95bbdf78a14c064b0af9075224b2f6fa4c2a3ac919ef744234dc92c16f30b59f1482b0f7400ede25472f15d3c27141eb48e8ab014b45" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/aspnetcore-runtime-7.0.0-win-x86.zip", - "hash": "d281f507407cc2284a8fe6d1cf85870ed6584b19e3da2da15cf78d72b62884e236b863513c3b2df68bb6e902a4385ac9f7fa552b9af496cb67cd76df535e4c12" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0/dotnet-hosting-7.0.0-win.exe", - "hash": "b04047d500ea7e2b93e732177e07cf6e5d9b50868dae6b2ba029e634fb5901ae124fba350e75017709d350667b14cb009542dea03f58fff1ee0c2eee7fad6ffa", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0", - "version-display": "7.0.0", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-arm64.exe", - "hash": "9d7d71f6d07f58e2691f92f18862b3af884f39ec1e6fa4c0bf1e0d33a5cc00e6cc684ba87f432a3bb6db74be8fc6ff46571b7adc406d4ba01ab260560eb4ac69" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-arm64.zip", - "hash": "193a353a99e15456b0ad9ac890e92057906ce954314ba494c5b91a139c18298aac7e5aac792ac12b90d30ffae1d127505696fd742f47c3a90f763d3eba6bed5a" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-x64.exe", - "hash": "e6281f475a58c8dc7b103d0cfd895e0f27235e25731b473514c82b77d8e555ea294f66ab3e119c5fd38c5a8f18b4a4d8508938d7cff70ab2186b47417349ea1e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-x64.zip", - "hash": "4d8810788f01e1241704446e276cf235e7202bf4ad082720fef64cbe840e403ef910ba323d2f283c81f9c59e583e11a80f87fb0e4b54102f6574228ed6c9d550" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-x86.exe", - "hash": "8904a454d07360ee1a4d75fb856afabf5192695602053f11f598650defe9acf5cb40ff20d70999af99971bac621dcfb01c63cb16014f93b3a498ab504ec9bbb1" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0/windowsdesktop-runtime-7.0.0-win-x86.zip", - "hash": "69a10b05ca5ce7e9975eae8cef30769bb817d4b9dad7a17342825b27cb5c8bc11b4dbc114d237ccdfc181c4f496ef6534f1016147488b1eac8daed31baae96fc" - } - ] - } - }, - { - "release-date": "2022-10-11", - "release-version": "7.0.0-rc.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-41032", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-41032" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-rc.2.md", - "runtime": { - "version": "7.0.0-rc.2.22472.3", - "version-display": "7.0.0-rc.2", - "vs-version": "17.4", - "vs-mac-version": "17.4", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-arm.tar.gz", - "hash": "3ab4ba37fea1d263f40649011299bf53a2e026b4f900ebdc99cc4078a05fcd0cd08d5481600ca27a85953012e72b9c02ba3f5b2b31e433d110b03dfa3be83d6d" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-arm64.tar.gz", - "hash": "cc1f37687745a3aed3c161415fa57dd8f151f515fb2a030c6b2e600942d188837398038d81654a1137bfafc5e1733e351e7c8ea04678cd2457d6620a3381826b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-musl-arm.tar.gz", - "hash": "a18510d2db32bfd917b61e6c0aceb852eb9847f1bc9c228cb3057bcbcf2fe1456ef575bceca44e8dce0e8dc2ae079cdb4fdc293ffd1b3a38d7c07088778ad789" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-musl-arm64.tar.gz", - "hash": "ffac2009a9c2f9df27a3778bdb990f30da27f89a11c1c9c7296fa49c5a02b20cb508d515c2a613d71c59ff1b77ffea868b3837899bfc2dc6796bb159e824611e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-musl-x64.tar.gz", - "hash": "751d4bbd08039dee405f92f3b2f5499ee65b6bb646124d5826a23b0979efb71848873f20dcbd3c6a66fc815c4f2bd1cfa9a6834dacb131350ac0f122b6b698b1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-linux-x64.tar.gz", - "hash": "2294605e371ec575e59baa1eacf973d7dd6761d5d161f4988ed6c51d5db2795a4dc95709d6eaf38ddb2caee6f0551225b49be5cbe42233c2ffae3a0f63d4412c" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-osx-arm64.pkg", - "hash": "d966b830acff29846f3802c0e141d03cb3683012d076a86f09340126e9bc7b3fb04d368a0fb5747e3e3dd217b908577765797855b7f36a6c3e4f859d833ca02d" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-osx-arm64.tar.gz", - "hash": "1a4374c3e01a1204822da82be919ce5e3814e54167f78410b23e85e10e8df16f84340588f6b3e3e24eebd762ad4545cb1e5ab8fd01cf8fce6f25fec71701945a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-osx-x64.pkg", - "hash": "9cb2cb96241354c1dc59f2bd3b34099271e00216daf5933db8c7b2440e6eb23b7644a81d8ed8749b8483777742ff290e91aabdf6102b7690162fa1563aa406bb" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-osx-x64.tar.gz", - "hash": "840835baa12d79404ed1ec59d33cad5d61980dfa2f596f0da56e421ba20f0ec8a91476e4f4b92921cab9c0c95f22f8989dce6394e8f4b3701a54945829ad4a91" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-arm64.exe", - "hash": "af9e2cf805dd4495a779179df520ef784f0e28972cfff0fc55d3bea815614ce4cb97c31e96d419184944e9e13aeadbd0ecb0e62ed429796771ccf5023b3d3d13" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-arm64.zip", - "hash": "215daa0a0d1418e35451301988a9384afe324903fcb72053ad9d277b1e8b78ae1775db15893a6a8ece5265d6015ff06139af0bd2e0136af52707f4277c038e12" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-x64.exe", - "hash": "796272a7725a26180c60a87546093d941be113a05249d0107ebec6587c464085b1c6d4c8b0a793d9764068d1100f728e1d906744587b72263dab1c7c3463ac7b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-x64.zip", - "hash": "9206c26d06f4c4f7d6959bb1627b59293bc27100f5b42f23d9d3927cf29978741a41762e834c6ddadd6fee4450cf292cd8b241f7be72a4ad7020043c11557583" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-x86.exe", - "hash": "a44c450b3403cc71262d4b394949fe71efa9e7e71a2dd595e104c6ead381e068edb52322834e9c5ae6f3e9c58edc0d272e23b3fb3c4b5dcffb05c37a42cbf1ee" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.2.22472.3/dotnet-runtime-7.0.0-rc.2.22472.3-win-x86.zip", - "hash": "ff5081fee8d80f3545e86b742c6796c2c96b099e5dd2334331c3777914e073fb9d6da473e75a96692ab2911b9595e73df511a622e7614e3995642a9320e12929" - } - ] - }, - "sdk": { - "version": "7.0.100-rc.2.22477.23", - "version-display": "7.0.100-rc.2", - "runtime-version": "7.0.0-rc.2.22472.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4 latest preview)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-arm.tar.gz", - "hash": "ac719b627140019a824d114e4d5dcc8d5cfd357406ad62d8a7fb57b9bff49750ccbf40f067a4e525bcb6061aabaa5a657e2c7c36768de2d0f6c31528c5bc172b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-arm64.tar.gz", - "hash": "bd5f6fc2bc6783bcf71b4a5c274b2e710336fc031c2577f5ccdb9be2679ce8b15e40fb8e631e2dd18b2359396107fe44d867d341f6fc5daae165f8f238adee17" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-arm.tar.gz", - "hash": "44e5c0619ff28075ca86d5e95497c82411dac18c44c9874a96d749b145e0e7bde9f6fc53cddcaa295a84c418d8b529b9a8933218c4a141b0fdc8b3614c9c6fd7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-arm64.tar.gz", - "hash": "13863c918e16f55988d1df8a6e2e84d70ba50e9b6378189dde556a608f0743731c53f959f64a2d43cf967975b11dfb7a85014303c19681659134073cd95ba58d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-x64.tar.gz", - "hash": "b5954e50484128331b4c9ee791076752e9ab0f4d4acb89afd79e98cd0c9491ebb260e6934ba39e2eb9f86989a3ed72c17cd8c251c2418727ee8c15c239b3a1c5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-x64.tar.gz", - "hash": "22db5d1d16f6fcedfc46f87896920425b5d9b61d09c47d254d6ac731c6d853657882b21faf21f313ed20b33e6331d01b9f723b2c586f0e0cf5acc5ed570b0260" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-arm64.pkg", - "hash": "39eab54045b3f4e0778044d96a5fafd545816524020c7f0431993a365ad55c5d3f9f0df9cb4b9e584f2d58040bcd0c4e7818d6ea55a3472632eafc9c274d0334" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-arm64.tar.gz", - "hash": "f7cc6bbe15784f6587c40db2ac043b410fdff764f42fe0cd85a6eba863b201f6bb50b4029a6316c276c0165448c00719768211b67908ee27b7186d18d3431387" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-x64.pkg", - "hash": "e8b7fd71d97935713ac740a665d14116a1a365599ec86e66fdfd8841b53eb529e51a03f145dd1e47cc5cda4c9a64495777389c4748248889499104f9dbee7f7d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-x64.tar.gz", - "hash": "a7ef37c576e47b6734b1d58037de8f42e9e20c4e65ce7a213c6e306a68ff426fb2d5e5b805307775e481c35320bb33f6a62b3a2a97ddd35637134f9798ee610b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-arm64.exe", - "hash": "67c3ef672659ead6598ee56404848f0464a0a24c564111b0426633a135d9f5d862ae0ed6c42df50715984562cedeb7d135bcfa038a9b2cf3cc3b8786a3dbee99" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-arm64.zip", - "hash": "a28e13108503a79a3fdc1698604e51ed736480e202dfc9a61013b264b1d765ea92dc99f6ec853a72be4be638a8da6c23c5cc0db173e95ad94cd8a33a80ab2356" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x64.exe", - "hash": "f183df67b534dbb5fc562c25c65175cd05cc73af85e0769537c24547c393e1d72feb140866c0ca1fb9072e07de413c4fa6e10ad9eaacf3338cd7536223e511b8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x64.zip", - "hash": "c8ffb96bc127e394bbc6eacae5771976cb9c924db94534026c7f04a7bc7b322f8212d9789ccbf05893378be193d2bbc560050bdbb3335e6ab3e141eaf470a380" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x86.exe", - "hash": "e95fb3bf0c3ebc3033ef7cdd658d5cc292610f868944925687876751146364f933bef54ce37945774328295cd0f2042637c7d4e2150c0a1c49f165854d9c67aa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x86.zip", - "hash": "cc02bd858ecbeb623fa3e8283d0ed081c5a835dd10405f33cfdbfee3643c1cd84dc77a3c67fa4a1dee76e70c851130de84064c44d5b35e5104f7ae39bc32c31c" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-rc.2.22477.23", - "version-display": "7.0.100-rc.2", - "runtime-version": "7.0.0-rc.2.22472.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4 latest preview)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-arm.tar.gz", - "hash": "ac719b627140019a824d114e4d5dcc8d5cfd357406ad62d8a7fb57b9bff49750ccbf40f067a4e525bcb6061aabaa5a657e2c7c36768de2d0f6c31528c5bc172b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-arm64.tar.gz", - "hash": "bd5f6fc2bc6783bcf71b4a5c274b2e710336fc031c2577f5ccdb9be2679ce8b15e40fb8e631e2dd18b2359396107fe44d867d341f6fc5daae165f8f238adee17" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-arm.tar.gz", - "hash": "44e5c0619ff28075ca86d5e95497c82411dac18c44c9874a96d749b145e0e7bde9f6fc53cddcaa295a84c418d8b529b9a8933218c4a141b0fdc8b3614c9c6fd7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-arm64.tar.gz", - "hash": "13863c918e16f55988d1df8a6e2e84d70ba50e9b6378189dde556a608f0743731c53f959f64a2d43cf967975b11dfb7a85014303c19681659134073cd95ba58d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-musl-x64.tar.gz", - "hash": "b5954e50484128331b4c9ee791076752e9ab0f4d4acb89afd79e98cd0c9491ebb260e6934ba39e2eb9f86989a3ed72c17cd8c251c2418727ee8c15c239b3a1c5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-linux-x64.tar.gz", - "hash": "22db5d1d16f6fcedfc46f87896920425b5d9b61d09c47d254d6ac731c6d853657882b21faf21f313ed20b33e6331d01b9f723b2c586f0e0cf5acc5ed570b0260" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-arm64.pkg", - "hash": "39eab54045b3f4e0778044d96a5fafd545816524020c7f0431993a365ad55c5d3f9f0df9cb4b9e584f2d58040bcd0c4e7818d6ea55a3472632eafc9c274d0334" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-arm64.tar.gz", - "hash": "f7cc6bbe15784f6587c40db2ac043b410fdff764f42fe0cd85a6eba863b201f6bb50b4029a6316c276c0165448c00719768211b67908ee27b7186d18d3431387" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-x64.pkg", - "hash": "e8b7fd71d97935713ac740a665d14116a1a365599ec86e66fdfd8841b53eb529e51a03f145dd1e47cc5cda4c9a64495777389c4748248889499104f9dbee7f7d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-osx-x64.tar.gz", - "hash": "a7ef37c576e47b6734b1d58037de8f42e9e20c4e65ce7a213c6e306a68ff426fb2d5e5b805307775e481c35320bb33f6a62b3a2a97ddd35637134f9798ee610b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-arm64.exe", - "hash": "67c3ef672659ead6598ee56404848f0464a0a24c564111b0426633a135d9f5d862ae0ed6c42df50715984562cedeb7d135bcfa038a9b2cf3cc3b8786a3dbee99" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-arm64.zip", - "hash": "a28e13108503a79a3fdc1698604e51ed736480e202dfc9a61013b264b1d765ea92dc99f6ec853a72be4be638a8da6c23c5cc0db173e95ad94cd8a33a80ab2356" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x64.exe", - "hash": "f183df67b534dbb5fc562c25c65175cd05cc73af85e0769537c24547c393e1d72feb140866c0ca1fb9072e07de413c4fa6e10ad9eaacf3338cd7536223e511b8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x64.zip", - "hash": "c8ffb96bc127e394bbc6eacae5771976cb9c924db94534026c7f04a7bc7b322f8212d9789ccbf05893378be193d2bbc560050bdbb3335e6ab3e141eaf470a380" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x86.exe", - "hash": "e95fb3bf0c3ebc3033ef7cdd658d5cc292610f868944925687876751146364f933bef54ce37945774328295cd0f2042637c7d4e2150c0a1c49f165854d9c67aa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.2.22477.23/dotnet-sdk-7.0.100-rc.2.22477.23-win-x86.zip", - "hash": "cc02bd858ecbeb623fa3e8283d0ed081c5a835dd10405f33cfdbfee3643c1cd84dc77a3c67fa4a1dee76e70c851130de84064c44d5b35e5104f7ae39bc32c31c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-rc.2.22476.2", - "version-display": "7.0.0-rc.2", - "version-aspnetcoremodule": [ - "17.0.22269.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-arm.tar.gz", - "hash": "2f5d8104eaa0d5c60bc1b6201796e2231c47bd4c6d948096928b3b4df26d6ecc57db18b2d7642d0228abbc4e0d58b7debc2e724c9c8af3eed218623f5e5d53f1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-arm64.tar.gz", - "hash": "24fb13ed26a44d6fba86a2058839026ec81868143a5b7af7857b75a004b0c64eea9a3e544f9e0774b761f9c911608ac74237b2d63ba6799718d12915d5d32df4" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-musl-arm.tar.gz", - "hash": "89cb1ea52e630bea5e958dea36ef408b1aa86d52a4f2aafe3de0f8f52920a2c058c6244b12671794ad92d6b46a3bb62d034e321d9f3f1d5cb8d2b0062d1b7ab1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-musl-arm64.tar.gz", - "hash": "740a44123fffe94cea509369b58f08833f2c7206c176bede59f7ae2c9e17efc9fede38ccc11e5048bb0057a33ee80a78cca024deb36db0ea979f43874dbef68c" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-musl-x64.tar.gz", - "hash": "b2faa275e8a096ae308e82b653ef8542de171a25c461ccf7744dda4421372def544c7e60bea36c547ce16663e6f26a3f52df30489fc770d8ab819ba58dc00cb4" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-linux-x64.tar.gz", - "hash": "1941cd6ea3bea31d970029c34acf0d60b63d1e7fba39086be1a79177a6f87f2b0300bf4008e96a5235d52bc74a41503b21b088143cd306058d42dd3ce8252af0" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-osx-arm64.tar.gz", - "hash": "3ebc2f205920b9955ef5d30e02d659468beee68271e54fbc6e4afa5aafb98effea6f642e5086801708b5dd35fc6c25aeeb9a924abf8cb4f6a6c0a44d3c16d025" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-osx-x64.tar.gz", - "hash": "a8799dfa6efb4dcecf023de5d666969906b7b5c512a9eb2e76ef12cef6ff5b63d84e3b9b2ec7573ca3ad1b7dc1f21885974a7bd10d3df807c009c2b02440fd34" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-win-arm64.zip", - "hash": "ba3a3a284117dc51c3265672dc5d9ce3c13cad308b1e271a0eb95dfbd80fc4316f262c0e739e85ede43949d6d5e66f13867ac59df8629e2fde932f43a6261411" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-win-x64.exe", - "hash": "adcd76a989bb790bc88c9a00f759c1e16305d0698432bb6ee8c458f202bb6908ba33c26e626594f51bcdeda01f393d2a2cc196c9d2069177e95d5a14ecec9bc2" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-win-x64.zip", - "hash": "94bf1aac7390770a666f9e925856dd568fb8477366aa216241023b6e9b2d7e68a8decd8e2a0787dcd8606556498789d208ca8e10bd80fbe312ada36649224aaa" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-win-x86.exe", - "hash": "3827fd22d933d1aa56caa0a2fc954605285b6ab46d0837b9d8dd6cf63cfe441062fad7d1d9753e9a998c1e79526ea0908df23b05d271889dd339a4656131d4f2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/aspnetcore-runtime-7.0.0-rc.2.22476.2-win-x86.zip", - "hash": "8ff2129cc252e82ef2923d7387aebec619a5bc93cea6d8639757d58a9dfc0354aff991404dcab42405ddec81e96106c8a32246d90b2c6c6ed59b08a136a19da5" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.2.22476.2/dotnet-hosting-7.0.0-rc.2.22476.2-win.exe", - "hash": "97f045c441646d0a205f38c5c6853e023f4b2a9817f556e5f1115e2bcaa8268e77fb65db2235f9f8645a374f67b02556122e4f24ebed20476a7577e3da0a9b56", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-rc.2.22472.13", - "version-display": "7.0.0-rc.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-arm64.exe", - "hash": "13cf41f5b90d94402533d30d88f06c365aa10c51a5fcdd166967c18ce7518ab1fc86e033d916c7d994b020ce0656a4e6b777e5ad17f5130348c2a182fdfd9d44" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-arm64.zip", - "hash": "5318b9fdbd6955a643b04c0abdffc79416d15113328e67c1b0468b66a41c9a155b63d5c4abe9a066ec703882d6ed00f412a9b921911b1bcf67c0cc1fa8850f22" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-x64.exe", - "hash": "f9b5629a4d6d3842fe69679562d7245d0d27a62faccb0d0025ae0474645212bae459ee335decf38441e480fd948cc00a403ef235d6d97eb9366c16825f86f85b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-x64.zip", - "hash": "6a06e690acc6bd5ea23df1571a2acb9e7f233dfd3d6ccb8dcfd597d903c9f4227f581d86d4b557078a544d3fd94f2e2e6b01bbaf7650e27a7c88453ac4de66b7" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-x86.exe", - "hash": "4e691cd5d9c8ed5be0cbfbb73c12912e07abee849e1b5078c7b64cbf7cf60610062f48d81e4ac6816d261a445c02d76a4450d4e6c1cea0d9b66cf0d7e6e3219e" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.2.22472.13/windowsdesktop-runtime-7.0.0-rc.2.22472.13-win-x86.zip", - "hash": "b7d27ee9008e17e2baeb4dbcda3daaffa3d38435e1269bfd0de1d8aabedeaf2f75a05c803f6de97f6c2232e5546673d49b97f8d7ac30b8bc5a609c4680d5ae42" - } - ] - } - }, - { - "release-date": "2022-09-14", - "release-version": "7.0.0-rc.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2022-38013", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-38013" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-rc.1.md", - "runtime": { - "version": "7.0.0-rc.1.22426.10", - "version-display": "7.0.0-rc.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-arm.tar.gz", - "hash": "dabff370d55a2cdf3623654f50eea950d85e7e986dda95e1beb7995dc3959ced1a1232a7dc622d3fe867e6fd12dfb074405f6761bb5ff4a83aa70a64b66de48f" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-arm64.tar.gz", - "hash": "961af783d01882cc7bc4334ea166977de9507d61de74057c39ecfec6c24c64d28c65c4b50ea1826db5c6d28c9134c27edcbfdc8139dd74c8c5732102a02455a1" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-musl-arm.tar.gz", - "hash": "dc83efd83e4e1ef2db4dfd6430967e35648ed62a9c06b095cfd18310f7cd3dda81a04121d4fdd77f638531280c84ff6015956e6f7b0276584b52fbb61a72fde8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-musl-arm64.tar.gz", - "hash": "4919b4bed55ba8c2e7025c2ce2b1c9424efaa323152b3ad7edba18d5ac1419149badfe5da228678205419e82ed42587469cad5c81b06dbbd0198bca56cb84151" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-musl-x64.tar.gz", - "hash": "21cf30a3d3f30945d8b1f4b4d7462bdc589602f29258dc40823c5ea33e09a90a149821839b5d3df6e9dae4e898de404fd4a90f44d86ff5921362cef298b9c358" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-linux-x64.tar.gz", - "hash": "62145fdaf182581cec5ba6bbafd66e3bb2df28379311f13e6849371a88cc2f428db3663f96ad006bbf4411eba609d486036d3b2aa1e3d86eee53216aec543fc1" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-osx-arm64.pkg", - "hash": "d8099b1e876b22eeddf61b74cf357adf9c74fce3383e739a2b7678f952b0df228ea1f79813ccd02c778383cea01a3aee4dc8d12b3db76ba60ff4bc5be72ba665" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-osx-arm64.tar.gz", - "hash": "d0759ff95fa9d4466473f17998ec34909567aa6cd4d51639155133ebf242ddee38b78d7ce52d77fc1fe6fd9c737ee071b8cce2929ce1db1f2c52aa95879680ae" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-osx-x64.pkg", - "hash": "e858e5a9ff59f155f62ce0960562722b14e8d66b22a847ce911953e670acd499dfffc981d999986c41db5a0239bf382430213ac5e37ea8762cf78a97758f9f61" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-osx-x64.tar.gz", - "hash": "c4537e67da894f36a224b7c3ffc45f662c684cdf8179214887c48a8d8341091e33b6a8473876fd3f790f8fd080ff26f3a75ad40d1335eccbc3f1addc61224465" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-arm64.exe", - "hash": "e3f46f6587e1b4fbb2ec3ee03aa9d1223dec88f2f7122069f6e0b022fc87ad95eab67041ca16e9a90dac52d92df1d55067f6b8a68e41928ab6ed472891e19a4f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-arm64.zip", - "hash": "7dd9011e39d52890cb93d0184d6b356c6409faa95ee9fc04df8e12c6499e1a56fddd4921d875a1267e4a99aa9d5a1b8b29694eabf66a4a5df77c945d687b3cbf" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-x64.exe", - "hash": "3576c67ee809474cad63647bc408c3bea48d8f3ec1540952ae1529fddca26f437c81c6ec8e1e0661dcffe1899c7475631ad8346a991cf0045d83b7d74aff3d76" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-x64.zip", - "hash": "f442ec9e2a468991b30f6544fb00935345fd1a310e159bda7df2ebd639a78f5a8cda82979f13551dd5639c119538c13c72586cf36d07431469fb1b924b7313c8" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-x86.exe", - "hash": "893c6048846a88d65eef11721be3c95f609474f6d286b5466b7458070571dfea48769da0672f8f784c065faad0e5ad0f31d90cfa654133574d4c5d74b93601bb" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-rc.1.22426.10/dotnet-runtime-7.0.0-rc.1.22426.10-win-x86.zip", - "hash": "d74b2d80a3561226cab210cfb93af07f818e409928369ecf4faf43d102233d9a043c6cb5cc408f566ec192d2b52caeab78320fadeef87bfbd86be0b172a5119f" - } - ] - }, - "sdk": { - "version": "7.0.100-rc.1.22431.12", - "version-display": "7.0.100-rc.1", - "runtime-version": "7.0.0-rc.1.22426.10", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4 latest preview)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-arm.tar.gz", - "hash": "0179dc1f7588003c3c643d58d96379a364d2ca097635cccd478a9fb44934148c907ec972167bf6c07dc8ec2a30964d3f5b6196148b48c23db25a5e4686859fce" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-arm64.tar.gz", - "hash": "095561f9c8aa815e3d8edcbb5c449a162c095e0034fbc091bec0954fc8d1286cd8c3aac615bd84b7d19a3a2d038001676057e4886f26a649c4dbc46cee24c8e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-arm.tar.gz", - "hash": "05aec68fd6ab72a292e9163d495075b0ecd8657a89758bd79e48e7653373d7a7da15fad0dbe61b4453af82a4fe538c2c2e7e60c6dfd6c6837f3636679b5c1897" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-arm64.tar.gz", - "hash": "6567ff07349dad9838e3d7f755944647ce89918e94e28bf3fd953606d6c0d845516ed09c3f113064203360d09b7abe3155542f5f5b2d3e6e43019c970e802e17" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-x64.tar.gz", - "hash": "f0b3836d1634a3910af7894c2201c40096c1c1f26f8c107fca9ea6601d2cf770cc88a1534f03d94d545be2d2217b04b95c5d3ddf52c11bf1d93457a184947298" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-x64.tar.gz", - "hash": "7ecebf284bd1546e1575b9561f4e64bbb8d69680a7bbda6f06ff6fbf687d3a6c653b0e6a6c569241455c6f83620f0ddbe193ca5cd52384ac062c8565dd22b859" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-arm64.pkg", - "hash": "0f36e938c8a5f3b0389576a5081d88e63016a99d97d16ae8008546e040ce67c574510f713b6484219771753441f96974abf04bf8f90195aee99b1cb255e37959" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-arm64.tar.gz", - "hash": "68f31e6fa9486b4d41b932fbeb2c0d383033ab72ef9167e02dedad0444383f1e0349c95049bc8db7e3633de65afb93ddff53bc70e59aa03ad632fcce584c631e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-x64.pkg", - "hash": "619b8f605e46ecd9a6baaab2a158799c0aa5102a9152487c13510d616c81d9341fd58c43d630c4a6b2ad328e90774b8164f9c61fb81e01da04e632fba45a2e1f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-x64.tar.gz", - "hash": "8b422411a042551750164d3d35a4dc7a83fc38e0f1ddb57e6b3dfe816796b419cb7e625876811efe2ea10b7255f5ce0597fed32782eabfa6309f47c97b9a472f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-arm64.exe", - "hash": "deb1b30dd74d8aae94104053cb76f490d90c9a110ab868ecafa7918806d33833e2240bbbb7f4b56644b1d9ca6dc33f3770b817dfc454acf253e914b54f60f9a8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-arm64.zip", - "hash": "5ee254a6a81ff5cf7c06c724f4a625500c819048e577e7eb9977387f6371fc2e6d440f88ec4a35fbbee492df074c4a778844925d851cec16a688810fdb0b6996" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x64.exe", - "hash": "334c40ff440a8627e8ceb74ba57d56313c23ac7b1e4a6ca2c5e25cc5a652486859522b7fe2352e4f06c0d28c07108b3a8d0390128d38fa73b6a9d191e5089834" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x64.zip", - "hash": "6c82b8f3abcdde735c071c7f45c3178de5648bf4a26f929eb4ced2b5857cd62cfbb57f2b1e9f77e9adbb19abadd5e99e35dc14bc2e362065e95df7a37215b969" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x86.exe", - "hash": "164c6c4485fb61f8f2d8171566f63fef282e850fe6d6a05a816d40ff5bc2671de6c89e0335403d3b497adfe4c919b0bc3e02b44b7e1b8ed1bf75bde1499aa8c9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x86.zip", - "hash": "84c622729b770bd03ac122a323c88f32c758e12d3421472accf3ff5165f580444047950f86272c0af9cf91bd0541fcfb9ce9747d63fe5c9781d265ebe77f2016" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-rc.1.22431.12", - "version-display": "7.0.100-rc.1", - "runtime-version": "7.0.0-rc.1.22426.10", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "Visual Studio 2022 for Mac (v17.4 latest preview)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-arm.tar.gz", - "hash": "0179dc1f7588003c3c643d58d96379a364d2ca097635cccd478a9fb44934148c907ec972167bf6c07dc8ec2a30964d3f5b6196148b48c23db25a5e4686859fce" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-arm64.tar.gz", - "hash": "095561f9c8aa815e3d8edcbb5c449a162c095e0034fbc091bec0954fc8d1286cd8c3aac615bd84b7d19a3a2d038001676057e4886f26a649c4dbc46cee24c8e8" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-arm.tar.gz", - "hash": "05aec68fd6ab72a292e9163d495075b0ecd8657a89758bd79e48e7653373d7a7da15fad0dbe61b4453af82a4fe538c2c2e7e60c6dfd6c6837f3636679b5c1897" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-arm64.tar.gz", - "hash": "6567ff07349dad9838e3d7f755944647ce89918e94e28bf3fd953606d6c0d845516ed09c3f113064203360d09b7abe3155542f5f5b2d3e6e43019c970e802e17" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-musl-x64.tar.gz", - "hash": "f0b3836d1634a3910af7894c2201c40096c1c1f26f8c107fca9ea6601d2cf770cc88a1534f03d94d545be2d2217b04b95c5d3ddf52c11bf1d93457a184947298" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-linux-x64.tar.gz", - "hash": "7ecebf284bd1546e1575b9561f4e64bbb8d69680a7bbda6f06ff6fbf687d3a6c653b0e6a6c569241455c6f83620f0ddbe193ca5cd52384ac062c8565dd22b859" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-arm64.pkg", - "hash": "0f36e938c8a5f3b0389576a5081d88e63016a99d97d16ae8008546e040ce67c574510f713b6484219771753441f96974abf04bf8f90195aee99b1cb255e37959" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-arm64.tar.gz", - "hash": "68f31e6fa9486b4d41b932fbeb2c0d383033ab72ef9167e02dedad0444383f1e0349c95049bc8db7e3633de65afb93ddff53bc70e59aa03ad632fcce584c631e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-x64.pkg", - "hash": "619b8f605e46ecd9a6baaab2a158799c0aa5102a9152487c13510d616c81d9341fd58c43d630c4a6b2ad328e90774b8164f9c61fb81e01da04e632fba45a2e1f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-osx-x64.tar.gz", - "hash": "8b422411a042551750164d3d35a4dc7a83fc38e0f1ddb57e6b3dfe816796b419cb7e625876811efe2ea10b7255f5ce0597fed32782eabfa6309f47c97b9a472f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-arm64.exe", - "hash": "deb1b30dd74d8aae94104053cb76f490d90c9a110ab868ecafa7918806d33833e2240bbbb7f4b56644b1d9ca6dc33f3770b817dfc454acf253e914b54f60f9a8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-arm64.zip", - "hash": "5ee254a6a81ff5cf7c06c724f4a625500c819048e577e7eb9977387f6371fc2e6d440f88ec4a35fbbee492df074c4a778844925d851cec16a688810fdb0b6996" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x64.exe", - "hash": "334c40ff440a8627e8ceb74ba57d56313c23ac7b1e4a6ca2c5e25cc5a652486859522b7fe2352e4f06c0d28c07108b3a8d0390128d38fa73b6a9d191e5089834" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x64.zip", - "hash": "6c82b8f3abcdde735c071c7f45c3178de5648bf4a26f929eb4ced2b5857cd62cfbb57f2b1e9f77e9adbb19abadd5e99e35dc14bc2e362065e95df7a37215b969" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x86.exe", - "hash": "164c6c4485fb61f8f2d8171566f63fef282e850fe6d6a05a816d40ff5bc2671de6c89e0335403d3b497adfe4c919b0bc3e02b44b7e1b8ed1bf75bde1499aa8c9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-rc.1.22431.12/dotnet-sdk-7.0.100-rc.1.22431.12-win-x86.zip", - "hash": "84c622729b770bd03ac122a323c88f32c758e12d3421472accf3ff5165f580444047950f86272c0af9cf91bd0541fcfb9ce9747d63fe5c9781d265ebe77f2016" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-rc.1.22427.2", - "version-display": "7.0.0-rc.1", - "version-aspnetcoremodule": [ - "17.0.22239.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-arm.tar.gz", - "hash": "1dff328a00c25fb7dbf3ed267afbce8aa76c8b3077015b27028476fe3f7a77ed727db971bb6de2a9070e647b2969e1992505086c369b9c95eafebc8bde20a8e9" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-arm64.tar.gz", - "hash": "2c704861aca1b1473d1426f0235606fcff19228902dfa02350413bd5ef97c12f70f6f771eb79a18b98274dcb2b866cf4bbc3f53da8c821fde2057e52c127615b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-musl-arm.tar.gz", - "hash": "7c6bc446a455c42be6ecc8e1057bfd4eddb02591c46e605e6ef3519a51df6b0dd870bc28cd3473e472341e9535b584ff82937395f72ae97b2e0d8acb7f6fc0af" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-musl-arm64.tar.gz", - "hash": "e43f4647b784954fa3a06c4ef38f73eb56cb46e71bbf53bff4e59e1f0f805ce480364a8bf340ae6a1a0a6c887968d5a9058c9a90c0f93795d74cf9f65393736e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-musl-x64.tar.gz", - "hash": "a1d2ef3859702663ba4786898f3bea1e5c62e54a3628891adfcadaec53b070de2f5af631379db1173ded257009fdd23a673ec69e36d519fe9577760f8a2b547b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-linux-x64.tar.gz", - "hash": "101898d0921f21c7895a1e015064a5aa5f1ca92bd31bd0d30fb9981e3c4383f14ea25464289e4ef29bf55fea1e2096e4b07bce71c948992a76c5ff0f7005b415" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-osx-arm64.tar.gz", - "hash": "1b3328451a5dbf2e90c2e1de17b59764ff0b4e9a9d4cf268b6b5f252f90c0af71683c6e31648fcd8df2c0e529a91e9b93eda6df739aa84863d133ca1e4d3fc7e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-osx-x64.tar.gz", - "hash": "668d323f78af57e0c781772951288166c05d75d4aa1259a07944ea0fa6ffc857d121d526c275fcf246a9754a1019bbd018f326962f48a5bf16bf2138540ae503" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-win-arm64.zip", - "hash": "1d3552de66671f4803f76394b2583b64a392514a6fd3a90c39371877566d01defb7b15b50b10cc771fa9d8a1a1941e5f0abcfce95ce23f84f0cc12ac92bddc8d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-win-x64.exe", - "hash": "5cb8e24ad576bb5ddb8b728662817ba5b875ab665b3f5fdfce8fa16eba461d1d8b96d9d601d369c91b5d6f364bb19fb691e4c9609f0f888a2ca88afeb0ef7b4d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-win-x64.zip", - "hash": "3e2eeea0292d24f20ceba972e0f4371fb8cfe4d97247afaa66c41905a0e657a0cb297c24dba60aeba20c4828b0028b01ee7def1d9bc63f4a1aae151121a80088" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-win-x86.exe", - "hash": "eca2893ca91817727ff21082f7fb43a6dcb080f1bf7d08a705bdf084fbdfe6de94a3f1aba49b4cc924d7fcf0dcbf4c8b5332e36da80c63e6f7675b5deabee8b1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/aspnetcore-runtime-7.0.0-rc.1.22427.2-win-x86.zip", - "hash": "cab1aceb8da05dc68819f650cedafc9d1d9a28efd6c473ae3ac51e7c0477778d4936ee8fe59245c6660f37edfb7d7cf23d7c3b731de8a09920213dabba2af931" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-rc.1.22427.2/dotnet-hosting-7.0.0-rc.1.22427.2-win.exe", - "hash": "9e335b6cdcfab0577d956f65b7cca30ce9e22aa3d48c62c4ba534051b7bc5527f3f5dcd7237894b425e989c5c1ed62e413612ef76772a6d79fb8bc6950c8b8e4", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-rc.1.22427.1", - "version-display": "7.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-arm64.exe", - "hash": "5e862dc14abafe54c0ef1521568bf52053707291a2387db865c37913682e49e82cb9fa42839278fa2024af658c568b9028864f4619e2e83abbc5747c1605d518" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-arm64.zip", - "hash": "3b5d8172aed27eadcb77fbaac3c7ad5e2f045ed3034f3a8156051a9d8d51c6c8bcee6f45a28a0e873e30775cbdce5dab7a8fe1d9d65d6817bc1450fa3cd8aeee" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-x64.exe", - "hash": "d56fee40bfeaf4b5f170668f7e07eea7ce2dfaa7e70d46a238ced19327dd1171f697170acf4db7dd26ecf64b92045beca979e7f7ccc78fad68d992589544d347" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-x64.zip", - "hash": "46436b741e6b0c90a4974e3d6fffda7ae5cbaef537bf611f2df42f21813da8a90a23ed20b29837d08ec5d001afa0955e3743d5b94d55e5ef844ab813194adf8f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-x86.exe", - "hash": "0f97e1b09cf76f7abcecfabef651daaf82669c32af6b335cf26378e640d382d59317c04fefccbf8748558434bab7689060cec89bff88e9e365a486dae7bab110" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-rc.1.22427.1/windowsdesktop-runtime-7.0.0-rc.1.22427.1-win-x86.zip", - "hash": "99d223350218e8290beec7a0343a6ca68bddf3d72dc456c20fc2294820e74b48cdf43e47454972f36c59a51e1e821cbff77e82dff9ba35ec30f43841c7d59bbf" - } - ] - } - }, - { - "release-date": "2022-08-09", - "release-version": "7.0.0-preview.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.7.md", - "runtime": { - "version": "7.0.0-preview.7.22375.6", - "version-display": "7.0.0-preview.7", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-arm.tar.gz", - "hash": "739ed5eea8798d2a6a65ec3f64783e7d52de0ba8cd1a0e0f8bcff2f023d490b208f6f2ab65429440c96ad1347a9d562627e5e256d83bf423b4209e8d5f899fd4" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-arm64.tar.gz", - "hash": "c9277fb51a2624051b57a59c6f401619a6b0db2a8abce66f8a3a051397cc8222931104fdee480a26b5d65fa8150b0ced700c370ee437efb739edf30a2ad6e993" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-musl-arm.tar.gz", - "hash": "ebdc42d25091cdcacea7533b1df7142e9c08d458dd99327ddd8f92a8411d58f6e4b4f1a2ed3dd40d5e09dc397f6f8cb648876ce06b5593812d9d6477d4a24f35" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-musl-arm64.tar.gz", - "hash": "0af75ff2b63830f51ec767c4469bbe907c32530e7026cb55de947b73c730e4c075736453a8532785b4e0bc70a47be1ca7d25d83a6e06f5073c1b46b47e9f0d10" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-musl-x64.tar.gz", - "hash": "d4cce061842a648ef18a1f027e5e2a2842284ead1b1773dfc3b09f5c6916146fb432eea10d75d9a436f505e4c71271fcefb9cbb70360dc7f5058b8909ca13480" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-linux-x64.tar.gz", - "hash": "9814a4e5a55b7137ec27b423ae4a557792af6cced035ab42876de012cb160adabbe054f043b61ed21a8385deb62075ab0a028f6599954ed3519ffe8cf824d30a" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-osx-arm64.pkg", - "hash": "ab4b1b27d77bdd606a97695cd020216eb1292203072adb26fd89f01edd959ddef46e6d11c87129097de7a7bcbb7256217b8b398158662ad9732067c8ac21cf37" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-osx-arm64.tar.gz", - "hash": "efbbf99de893507e49d5e2e752c1977b5e5bdeba3ddd5184f11e20bfc7ffaf64f0847647974cec78a07daedcba0b5cff78125c647ce133c4183d0821d55a2ade" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-osx-x64.pkg", - "hash": "d65f8684d2a4a6aadc43c6bc852fac3ff6d090e959141ad9e5e7fe48afb2660f9bdd7659d388579af80d10aa56297697d26a487e1b9bfd5064ca6061359a4712" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-osx-x64.tar.gz", - "hash": "e6b02eaa8c3d578404d0f6c5e94447ab017397d2dfd71d5712c9089833e70da6294505ff3599929caa1a2c3e2c981d35e9f0343faa15a7dae2f330b09c1e3d20" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-arm64.exe", - "hash": "c16962f01702e2e3db911a7c8082fd8106bda1b567fce22a68035a0d78e6fce851f1c0f20052a962e1cdf105748069d8a9f8230969ca14172e94599aa332d6fe" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-arm64.zip", - "hash": "85349af325584a3d0d5088d65ad890c6ea616f9447b040703f6f712740b3bc228c1a948ece2dbb47d68beeb2a583dd7e282ef10ec5cb6e1a37236d476db7a2fb" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-x64.exe", - "hash": "2c08a847cc2fd7d1afb244806daef4c61897b28f92ef44d8ba68209b019be874e7210e3f54901cf73840bdf374c0d7eb8a3f12e4042e2bb905f88e5156bb04ec" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-x64.zip", - "hash": "7174c0491f7012e4631e2c15621acce4e6be497fe15134770d1b87759106f59d56a501e9d7366a038d9a20adb9823cd9c23d9813dbc5049013a9026ef10fcb0b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-x86.exe", - "hash": "428308168bbd6b9f840d16e3eae7b16983334d2ddb90d39d3a31bc7fd61d14a77e2500f34241f2ed88d9dbb3692a67aeac6c5bec5b818b6af09202fc1558a721" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.7.22375.6/dotnet-runtime-7.0.0-preview.7.22375.6-win-x86.zip", - "hash": "1e92c2d0d81e43e01d2b042141aad42c48c2755271c706093f791c8fd9ba6f05b4ead0d3fd4511a1a1d49f55602826f044662c27194a2c5b6efed55c16095520" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.7.22377.5", - "version-display": "7.0.100-preview.7", - "runtime-version": "7.0.0-preview.7.22375.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-arm.tar.gz", - "hash": "9d00868d653bb70a7c5f792fd3490a6b2cfbe440b7226f30c3a0067f15083c081b66ae67ebc76f07f758d46034fddfc1fadd549d61fa0af39f78a8ce5c730d4c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-arm64.tar.gz", - "hash": "de43c471794239a06a6bc70df79491e1ea8f717df84e74b91aa8383bc9edc3efd286216a2495d42c60cb18d47ec0442132d3ec2fbad695f62969e7e3f61e61ee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-arm.tar.gz", - "hash": "f8fca1490dbeb8a8255a2c2697f43cf8bd6267e2e26fcf525613c375860fac426a55b0d13d813902ea1de832f26e0dc36430953e6a4429d87ebb970ec2d4faa6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-arm64.tar.gz", - "hash": "6ada1b880be607379e58e2f994a0f329a1e49040869b3f6b89efb234576fce9e7b675dec66300fa4c29c1dce0add2c836105b043e585f0b301e0219f8e62cf85" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-x64.tar.gz", - "hash": "2a29b89344cbe63889dbb62fa52c04b91674a990fcce3a4a9002f777d2168fcc978a264b60592e3459b24191f92376b6cedb870e364b13a7196a099e9915cf72" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-x64.tar.gz", - "hash": "c16d452dbe4f097b75d304c8bc19892017847768bf2e8a0a72fafd6d6b46c3dd77e0c251b80c245197f47fdeafc2c18db255af8a1a5c30be982de19129874390" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-arm64.pkg", - "hash": "a2e37093dd565459fa6847fe99c905e326788034bb3a3aaf301a6d20a43ba4c12f3cfe618e136e4d9cc3e0a5c958c094941e6981993ab442d86099bd03366d59" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-arm64.tar.gz", - "hash": "fd3ed7cf1f31b6090a19465932e39a3bccd952d3ec25756f2d9a4246fe7e93588050433a3711e9bfed1765f015e4fa14bdce9534a68f0a3f121eb4424f486f21" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-x64.pkg", - "hash": "244562bb7ae3f7c3b96e8ad4d8f68147b274ba48b0586e9370b43dadfb99d1e9a1e6c91ce8f2d2a7fbd4cc88d29c54ab92ef699319b80d3b0cb1fb696747b80a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-x64.tar.gz", - "hash": "9f6fecb00df04f07a6275e202d2f005ab1b8ee471ee1587c7cb362b945658a2b2dcf572c4957a2ff7e95305558429320feabe3062d1d009e8244442ecb88fae4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-arm64.exe", - "hash": "8a3701cdc2f5073bbdc9b27e39b005f9dac065480fe6714dea5bad748a522745e8e0ed1c07ee60254259a3918fc00cb6b7b83fe1af47666854fc6a266283fe9c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-arm64.zip", - "hash": "271bc7e2af6feb850a7b937e1e804e2d3664615702668e1516715c4a908697f92675714cd272991b6734ada287e161342a7d8abbb486cc6d016cf8b2960dc9e1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x64.exe", - "hash": "e4d5849d991b525036af25679316076c7c958b0a04e1fc72fbd7fa6b38d1fb4c238adec48a612641926ad15e7b8d516a3feeed7a72ca14ad8d7ff6f71c9be60d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x64.zip", - "hash": "82cab88d8cb17f974073500de44ed5cc61a6d947e41d183bb015bd2f28ae56243355aca68061d0f4705cb515981a4445d46caeed404b726ae989e9de84283887" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x86.exe", - "hash": "ce789543e9d1032d59151d3e9c7a2e11b07cca8f70e7ddb7b877e7163b51924c0fad786f2f556dce57619a69856b42c731a31a4bd3cdbe812c0dd8c2e703c5fb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x86.zip", - "hash": "fcbdde295083316d312a114e130516dd3785cbc48051a1382d4e303de52e2c18d86fbd2e58ee2fbdb6efa369d1d0fbedfcaf7d3456342c7d79d4a3fbe4eba3ef" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.7.22377.5", - "version-display": "7.0.100-preview.7", - "runtime-version": "7.0.0-preview.7.22375.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.4 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-arm.tar.gz", - "hash": "9d00868d653bb70a7c5f792fd3490a6b2cfbe440b7226f30c3a0067f15083c081b66ae67ebc76f07f758d46034fddfc1fadd549d61fa0af39f78a8ce5c730d4c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-arm64.tar.gz", - "hash": "de43c471794239a06a6bc70df79491e1ea8f717df84e74b91aa8383bc9edc3efd286216a2495d42c60cb18d47ec0442132d3ec2fbad695f62969e7e3f61e61ee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-arm.tar.gz", - "hash": "f8fca1490dbeb8a8255a2c2697f43cf8bd6267e2e26fcf525613c375860fac426a55b0d13d813902ea1de832f26e0dc36430953e6a4429d87ebb970ec2d4faa6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-arm64.tar.gz", - "hash": "6ada1b880be607379e58e2f994a0f329a1e49040869b3f6b89efb234576fce9e7b675dec66300fa4c29c1dce0add2c836105b043e585f0b301e0219f8e62cf85" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-musl-x64.tar.gz", - "hash": "2a29b89344cbe63889dbb62fa52c04b91674a990fcce3a4a9002f777d2168fcc978a264b60592e3459b24191f92376b6cedb870e364b13a7196a099e9915cf72" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-linux-x64.tar.gz", - "hash": "c16d452dbe4f097b75d304c8bc19892017847768bf2e8a0a72fafd6d6b46c3dd77e0c251b80c245197f47fdeafc2c18db255af8a1a5c30be982de19129874390" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-arm64.pkg", - "hash": "a2e37093dd565459fa6847fe99c905e326788034bb3a3aaf301a6d20a43ba4c12f3cfe618e136e4d9cc3e0a5c958c094941e6981993ab442d86099bd03366d59" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-arm64.tar.gz", - "hash": "fd3ed7cf1f31b6090a19465932e39a3bccd952d3ec25756f2d9a4246fe7e93588050433a3711e9bfed1765f015e4fa14bdce9534a68f0a3f121eb4424f486f21" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-x64.pkg", - "hash": "244562bb7ae3f7c3b96e8ad4d8f68147b274ba48b0586e9370b43dadfb99d1e9a1e6c91ce8f2d2a7fbd4cc88d29c54ab92ef699319b80d3b0cb1fb696747b80a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-osx-x64.tar.gz", - "hash": "9f6fecb00df04f07a6275e202d2f005ab1b8ee471ee1587c7cb362b945658a2b2dcf572c4957a2ff7e95305558429320feabe3062d1d009e8244442ecb88fae4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-arm64.exe", - "hash": "8a3701cdc2f5073bbdc9b27e39b005f9dac065480fe6714dea5bad748a522745e8e0ed1c07ee60254259a3918fc00cb6b7b83fe1af47666854fc6a266283fe9c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-arm64.zip", - "hash": "271bc7e2af6feb850a7b937e1e804e2d3664615702668e1516715c4a908697f92675714cd272991b6734ada287e161342a7d8abbb486cc6d016cf8b2960dc9e1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x64.exe", - "hash": "e4d5849d991b525036af25679316076c7c958b0a04e1fc72fbd7fa6b38d1fb4c238adec48a612641926ad15e7b8d516a3feeed7a72ca14ad8d7ff6f71c9be60d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x64.zip", - "hash": "82cab88d8cb17f974073500de44ed5cc61a6d947e41d183bb015bd2f28ae56243355aca68061d0f4705cb515981a4445d46caeed404b726ae989e9de84283887" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x86.exe", - "hash": "ce789543e9d1032d59151d3e9c7a2e11b07cca8f70e7ddb7b877e7163b51924c0fad786f2f556dce57619a69856b42c731a31a4bd3cdbe812c0dd8c2e703c5fb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.7.22377.5/dotnet-sdk-7.0.100-preview.7.22377.5-win-x86.zip", - "hash": "fcbdde295083316d312a114e130516dd3785cbc48051a1382d4e303de52e2c18d86fbd2e58ee2fbdb6efa369d1d0fbedfcaf7d3456342c7d79d4a3fbe4eba3ef" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.7.22376.6", - "version-display": "7.0.0-preview.7", - "version-aspnetcoremodule": [ - "17.0.22207.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-arm.tar.gz", - "hash": "ff209ec1ef45357b410f4493441c8fa547604f940c9207bafbc30a35429bef4a24926a2f72c5f436857823a37260ccd0cc0cae9d24dfa043f86d706173c0343c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-arm64.tar.gz", - "hash": "af8d65460bded7a6b1591ecb47ed704cf577f73a83b09ceb5880ec1c90677b1d724e799022854623ac132534e0acd656443b32a49090354a9ef872f2bb0eb441" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-musl-arm.tar.gz", - "hash": "5535e2b8b67483ebe2becbbf04334e34a38e98fa60ccaabc6a1c038871e617e3383d8161354eab4b6b795c9cc60b14c754181f585247f619296a247c151af0f8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-musl-arm64.tar.gz", - "hash": "807282cc6978c7093d59b91e09745c8fabaeb7715d7d04a501a71a4fa527f672f2a6072145fe023700ebf4069eb21e58af691c022bbe294385e290faa0ea9370" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-musl-x64.tar.gz", - "hash": "5fb9d9eeebdd92abd7464e17a35edba2f41e6d8a0c916cbc5284648a225c1c9c49c6a9f3680e54b0673f125818bf54a20b1be710fc2b4a657cc0d11af5ce23fc" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-linux-x64.tar.gz", - "hash": "7d4861a28a42df31a7e2c740d17e1b0eb78e860a2ccdb25eec754a2098593a3adac00687294209d847a8fa618019a2d1b1d5fdd3f9aea37ffdc19164c862c558" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-osx-arm64.tar.gz", - "hash": "893a55cd551bf3a490cd0069315cfdc9283fcfc851fab4964a3e6560ce2af6d9c08366f7a1d6a87e2199b29d03c81eed5daabe378d136afaaf467ef137f00c78" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-osx-x64.tar.gz", - "hash": "52782e60b688a595a31b151b094978afb174df0e823f916b8a1e78b14566822ef22726481846c36dc95178ad5f39caa6832c9b8642b87dbc6998f3a20c18fcaa" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-win-arm64.zip", - "hash": "eb946bafd221c389778adb1f56e6b43aceda0326c4e3871f00ce59adaa10b4d036d5c144ce9489e8387c9700059b38c6afd1f0c5f0cef2846562ef84e1639b97" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-win-x64.exe", - "hash": "2188d53bb8db095e83587c7edb6e82b4078d41bbf2d647acd0116df23484b0b67b8c3a27270c86fa4dc288d323e915da023463eafcd20fcbce5b56fb8036d748" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-win-x64.zip", - "hash": "b5b397d6a39e6039a36defd37cf196ce1ac79ae6571dfc5bb4bbd8e2c923bd1aae4c69634bb3bc72660ee68c87741fdd1ef50a140a10f1fb62e6b1c4758770d7" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-win-x86.exe", - "hash": "23ea0976ec7b209fd2638f6465d59c95c0086884f29d11cdefb664e4d69298a020a259b854b45e423e4610966d07cf725680f2c3d958b8b5ea3ce7879690172c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/aspnetcore-runtime-7.0.0-preview.7.22376.6-win-x86.zip", - "hash": "799de8ab3ba2498fe77c69b558a6aec416f93e320de8e5abc192ba0c1a86469edf14929c3a9eddb86dec0deee1ed8e25b4ce95984214e02d5b711a1511dee84f" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.7.22376.6/dotnet-hosting-7.0.0-preview.7.22376.6-win.exe", - "hash": "438b5fba599b774885fe307de917a2461645f0f48122348a829e8b07b720a6b0f9b8fb15a3561643f55ad0d68de0b5f7054874ca30fd85c23ed0dcb88896a9ca", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.7.22377.1", - "version-display": "7.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-arm64.exe", - "hash": "eebf4737834c281544eac33e631a49d3119c3cccf57b6daa06da5cb5c6bd3350a3b6bdaede168128a8c885b58ed6eca7f2d4c527cf3d9b7e5c3b5b6b5cdb5a8d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-arm64.zip", - "hash": "84b08fe042c7c3f4ddec0bfd361ae3b27787f3a1378c5180ebb9966ee0c4bb5d8f3cfaed4a59b309f41af9abcfbf96ea749d39900a5bd4cb537a6fb53e192a88" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-x64.exe", - "hash": "4135ee9c6546c72b90054c5deabbaa824c32fb832d71b9c7b73b146a4e2150e859331ae40ea2ed8f13e9d18dc9c0fb35aff0815beb1af2aa0833b8ebdac9ccb0" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-x64.zip", - "hash": "2e996939f50cde44a32fbb6149a71ae73beb6c434d350361cf849e8a0bb154399869868e73a3b09220ffab72d959643c947f1109775653ba4577721977070434" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-x86.exe", - "hash": "b89f66cdde6d97cc3fe78d6223414fc2d75b7caca67b98c48d8adf5c45c3f2c40ce50833849740aac1902ca3eeb59183e04abad81e2e5d7beaf4e80f89335740" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.7.22377.1/windowsdesktop-runtime-7.0.0-preview.7.22377.1-win-x86.zip", - "hash": "1bdcab1bc31532961611d34113ffcae83997903df10e8a3ebe133b0cfb57de621bc3d9881097eb1f795f6ea0257c649ea0a130f305328ea8f312da3d2f6d3f81" - } - ] - } - }, - { - "release-date": "2022-07-12", - "release-version": "7.0.0-preview.6", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.6.md", - "runtime": { - "version": "7.0.0-preview.6.22324.4", - "version-display": "7.0.0-preview.6", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-arm.tar.gz", - "hash": "df7208f3c9dfc387821b5cea3c75ecc3b68d559ae4d92e741c9732b63b5b705d10a3b55c7b7773777dd480e347c2e19e409693f47572af720374bdb665d50460" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-arm64.tar.gz", - "hash": "3a1302724135514933c1c06e5373a785bfd18bc0b3f759c488023f4495c272841cbccbd320721a67fb40ac7bbdd48b366279ece3d4ce0f5bf9e520e2e93c46b9" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-musl-arm.tar.gz", - "hash": "7aeb7988094e0b34b65bab4b257775722846babb32945f06b6e11911b55ee989f0e80d0f32ea0fb2d91d170488a9d4346d8589e9bd86c270ab943e474500bb9e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-musl-arm64.tar.gz", - "hash": "a5be4e53fee0bcd5940c1a21d78e9973e9e9ccff13da3f857dda3b0506aec52217cbcd05da3d4906924d8a003445172fd2f317ba7df393ac80d42c40262e0790" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-musl-x64.tar.gz", - "hash": "fccd4c764f1e0c5595591909cbd45e6ef06007a33b89453a6fbd7fbb86d33f5e96b49ec66a4e4b2d8e1093ed5eb852fe3d8fa47be5773094ed417ee484d7ca39" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-linux-x64.tar.gz", - "hash": "304b509b478fbed7e5ec97d9c75821249b933fb5c814c4f14078611d17cd8f95ccdf6c48049c02ed2f033ece61acc17e0a23a59c2a6aca9d191892d0224af45d" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-osx-arm64.pkg", - "hash": "61ecf1dc17b919f405a8a4b761018aedccb302ed289a8898e28c1b4a3ccf63261d6184852832222bd353f99007361b6ca2b4a059070b9efb6d3c6ac95c9e6270" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-osx-arm64.tar.gz", - "hash": "5b48dc99e90bd593c9decb65e71f398207d4cc5456edec35db9f48556d1c0f4de26c0d27f981bc2f0e909a2f0eb18071c483b7766f45d69e1f71519f74df5679" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-osx-x64.pkg", - "hash": "d7c7711a707e46ae66cb395e890d324315d55aaa7d016af77df8f8f5a56c300647f5d758d95cd25b748d5463efda287bb6a7d794c01f293d23863e89c81d7c0d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-osx-x64.tar.gz", - "hash": "ddc42d28564b196479c62bf3083516b236dbcbf6429cc5c0e2866d61bc0d500612cdd0224e45c154e1df07e414da1763a0334dd55d95ddf304e2e8dac67dfac7" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-arm64.exe", - "hash": "a6a594e0c0259918989b544941e750ac1ac69b028f7066e9d6ee10ab97d9a46f0a46c5094a1cb4a5be5604b5df9b362239fbd664a3758f161187c1510300728e" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-arm64.zip", - "hash": "d01c1e7c389bb7cb5cb11fef4ef797ecffb3040dbf3092e0fd4c077d99e0dc8b81e1c3f9fd1368b826096b06b4c21c8a0b5af1237e79b0b037591bfe507f9d65" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-x64.exe", - "hash": "2ac55c1503aa21e157e743fb3f77dfa03600c0acf604fbe7df907c9e56f5e806026de3499a0e2e3efe91db685a921058123e6c311be8969e16f8c3d83e08b079" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-x64.zip", - "hash": "f1bf15a2b28a811a622a2e043dff405f0a7712d86fdf35ff9209a9779df06aefcd0edf7b2716c1cf339b052744b0f414b736c131895cd921f4cea4e0304a41fe" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-x86.exe", - "hash": "85058f96d731d44d7d476d4c1f1af25c77fde69d2f5041e1d03b2cd56b88a2e1a99faa9fe4ab2c0d46b68643ab23eeae14c64adbfe3a98f0daf6f4b375963a13" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.6.22324.4/dotnet-runtime-7.0.0-preview.6.22324.4-win-x86.zip", - "hash": "b05d7c3cc7664d02d8db1d75078f8e2139b5a39c56dc6d7d4dac285030cf634d61b460614dd13b53e75a41b23c63473a993517015a70357def5c3e2ce585a389" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.6.22352.1", - "version-display": "7.0.100-preview.6", - "runtime-version": "7.0.0-preview.6.22324.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-arm.tar.gz", - "hash": "8b1842959620af96375bf46464eb55fe30a404f59c198e55fa471fb2fdff2b7d8ddb72c17f6523006ee6399ed227e980140850f5a7981b8f83cef366f4da7a94" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-arm64.tar.gz", - "hash": "e1812dc0f4ae06a6abd375ca975e2f23e510f683b09ae0a32cddd0f6293f515f2316ce94b170e680d83e1450be27da7506e393a92dd89a9a5fa1b9e4f198a0a4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-arm.tar.gz", - "hash": "51528e884f16769542dadf1b34b54a41a5aa2c815512c92ce0e312f92bb5da4b67bcf4d051a576cda6b9543b61455e3ea60c2c464ad16494f3739ed746d09db1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-arm64.tar.gz", - "hash": "c73efa6aa762859d38e6de8645affae23ce1270f8df1747355a459fb552bd70749d4c43cee601d6d54b2bf41b172539da9f70a1a16b9e25b19d5bc9eb1f03e44" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-x64.tar.gz", - "hash": "0285a9be89ab0c0b72d489cb660bcb3355905e1c6dcb05341977820012b45fb07798b26727de13dac6f0d1fc113ca57b8f21fa90bb8f670b58622278bc5d322d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-x64.tar.gz", - "hash": "e49a2119021e4069f1193898536cc59628336e656f2f7e49d454a593a330d8e437acf2f4efb70925bc16a9c900c2e49f4a6c2fb5f69e696b09a91ebccd2c9307" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-arm64.pkg", - "hash": "fb06616bfbff9961719a8cb5b57b5fccf2f4bbd292f2316842b1e28eddd8e9bab4735c504686f46aaa2a964fd28d2ae927c3fcbfee9119deb848403068f3094b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-arm64.tar.gz", - "hash": "a76eef95f7062856eb5343b0da1192679821fe45d5fcbcd2ad7c32f1fd0293118f2395215cf23187af8d9662b8dbae5e9154be0431d50584ef73aafe8a580a70" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-x64.pkg", - "hash": "fe07f673e85ce8c1b97d8a61255fc54364c40e68845af3c2e0e3fd77d8e2f844f9fc84e370aedec52cecd523baa8f1ed2fadb83ee057f1be2e1e7760a762e2c4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-x64.tar.gz", - "hash": "beac6336874af9552c06c0434e89406b10f3bce8cde3f63e9c044dc66e5b5ad548c9dbfde3cba1880e7b23cc272f5a4e448a052aefa011da1fc7b600eea3f147" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-arm64.exe", - "hash": "58eb3f67a4b05fb4f43a144a5305ac0d3368700334283edf3ae30d6528c8bd3e0674cdfbf786cd495296bbaccbd076b797b48b15522fa08d0a183bb7cdf4dba2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-arm64.zip", - "hash": "988015bf42ecac3e13aa700719fccd5641e449a9272a9b4cd388cd7088294ac98d06c456ac34d6b2d30b0ec266ffac5fc7782109cb3896cc4c5c7454eb3a0253" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x64.exe", - "hash": "e3fb8511f885f285b86e157f327eb8855de631d9e5aa1f69e0854ee70bab4033227aee24a32a1f04a2633baa2c893bad1b89067caf85cc96c8c9a6c5ccb2cd62" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x64.zip", - "hash": "ee7cc821386827744ec1754f0b9bc6a24fc11dc201ad3ea96797f9dc493ecf60b95b484dd8b8622c1e6b03f40c068234e8e2f65159ed6d58fd57dbbfa6f66c2d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x86.exe", - "hash": "7e002b7a2d52608c854e0a2fc844459e5f1ba4f12c5670d3c15e6723c111cdad8aafed15cdb589218b0c7e668cfc53da6f60f566405efcf6966fa1597e521e33" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x86.zip", - "hash": "6470e4e9e66cd24f4aab54ecd38633fafa211dbada021cb02b1906e56eb690192116901edc31a019f6e1ed98463653c61a180d64a234777d92806d4c4d11216d" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.6.22352.1", - "version-display": "7.0.100-preview.6", - "runtime-version": "7.0.0-preview.6.22324.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-arm.tar.gz", - "hash": "8b1842959620af96375bf46464eb55fe30a404f59c198e55fa471fb2fdff2b7d8ddb72c17f6523006ee6399ed227e980140850f5a7981b8f83cef366f4da7a94" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-arm64.tar.gz", - "hash": "e1812dc0f4ae06a6abd375ca975e2f23e510f683b09ae0a32cddd0f6293f515f2316ce94b170e680d83e1450be27da7506e393a92dd89a9a5fa1b9e4f198a0a4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-arm.tar.gz", - "hash": "51528e884f16769542dadf1b34b54a41a5aa2c815512c92ce0e312f92bb5da4b67bcf4d051a576cda6b9543b61455e3ea60c2c464ad16494f3739ed746d09db1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-arm64.tar.gz", - "hash": "c73efa6aa762859d38e6de8645affae23ce1270f8df1747355a459fb552bd70749d4c43cee601d6d54b2bf41b172539da9f70a1a16b9e25b19d5bc9eb1f03e44" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-musl-x64.tar.gz", - "hash": "0285a9be89ab0c0b72d489cb660bcb3355905e1c6dcb05341977820012b45fb07798b26727de13dac6f0d1fc113ca57b8f21fa90bb8f670b58622278bc5d322d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-linux-x64.tar.gz", - "hash": "e49a2119021e4069f1193898536cc59628336e656f2f7e49d454a593a330d8e437acf2f4efb70925bc16a9c900c2e49f4a6c2fb5f69e696b09a91ebccd2c9307" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-arm64.pkg", - "hash": "fb06616bfbff9961719a8cb5b57b5fccf2f4bbd292f2316842b1e28eddd8e9bab4735c504686f46aaa2a964fd28d2ae927c3fcbfee9119deb848403068f3094b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-arm64.tar.gz", - "hash": "a76eef95f7062856eb5343b0da1192679821fe45d5fcbcd2ad7c32f1fd0293118f2395215cf23187af8d9662b8dbae5e9154be0431d50584ef73aafe8a580a70" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-x64.pkg", - "hash": "fe07f673e85ce8c1b97d8a61255fc54364c40e68845af3c2e0e3fd77d8e2f844f9fc84e370aedec52cecd523baa8f1ed2fadb83ee057f1be2e1e7760a762e2c4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-osx-x64.tar.gz", - "hash": "beac6336874af9552c06c0434e89406b10f3bce8cde3f63e9c044dc66e5b5ad548c9dbfde3cba1880e7b23cc272f5a4e448a052aefa011da1fc7b600eea3f147" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-arm64.exe", - "hash": "58eb3f67a4b05fb4f43a144a5305ac0d3368700334283edf3ae30d6528c8bd3e0674cdfbf786cd495296bbaccbd076b797b48b15522fa08d0a183bb7cdf4dba2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-arm64.zip", - "hash": "988015bf42ecac3e13aa700719fccd5641e449a9272a9b4cd388cd7088294ac98d06c456ac34d6b2d30b0ec266ffac5fc7782109cb3896cc4c5c7454eb3a0253" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x64.exe", - "hash": "e3fb8511f885f285b86e157f327eb8855de631d9e5aa1f69e0854ee70bab4033227aee24a32a1f04a2633baa2c893bad1b89067caf85cc96c8c9a6c5ccb2cd62" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x64.zip", - "hash": "ee7cc821386827744ec1754f0b9bc6a24fc11dc201ad3ea96797f9dc493ecf60b95b484dd8b8622c1e6b03f40c068234e8e2f65159ed6d58fd57dbbfa6f66c2d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x86.exe", - "hash": "7e002b7a2d52608c854e0a2fc844459e5f1ba4f12c5670d3c15e6723c111cdad8aafed15cdb589218b0c7e668cfc53da6f60f566405efcf6966fa1597e521e33" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.6.22352.1/dotnet-sdk-7.0.100-preview.6.22352.1-win-x86.zip", - "hash": "6470e4e9e66cd24f4aab54ecd38633fafa211dbada021cb02b1906e56eb690192116901edc31a019f6e1ed98463653c61a180d64a234777d92806d4c4d11216d" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.6.22330.3", - "version-display": "7.0.0-preview.6", - "version-aspnetcoremodule": [ - "17.0.22181.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-arm.tar.gz", - "hash": "5bae22743fb83368f8663bfad299c5fe3de5130388fe77d5b5cbf9db02b554be767a3ce783d08de52a200d97cc36839cb8af319b464a637f9aa23d701755590a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-arm64.tar.gz", - "hash": "877979a4d9e9d4c6f167590d3f132583aca655bac8d2ddb022aeb2a2e6b09ecbfd6c251345fbb894a0493feab9f2219f9ce6656b0566a777b93c79ff784c26a6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-musl-arm.tar.gz", - "hash": "fc640b8efde8549d645993cda2c1908255fc1ea9bba0b84a03e82561bc6723f78dde12e6addf90610b26791f9a290838667d75053d6ec91713ab2048ce6a8109" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-musl-arm64.tar.gz", - "hash": "78593bcb6726143d07713fa7ba16e7058dcf1a381c65fc4479cc016400d25062677c03f753cb3aba8d5cda4e818f11ffbc79e7f3e92acb031891c75c1c20fdbf" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-musl-x64.tar.gz", - "hash": "8ef7f83b4eaa679ff375c5075472c093a9a70d2453927d37c8baab36eecb8feb26eac0765f63e4bd4bfcc7181248531f164c03072642f63ed86ccb895a2f3908" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-linux-x64.tar.gz", - "hash": "a7aa5f3b788645a39957fa27cce84ca1e7dcfcf7a334d52097e891d3b26b8c8ba981c1f3bbab17831110339e1e62a74e6a54eee15311b8294a2d2c845a07cdbd" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-osx-arm64.tar.gz", - "hash": "4e41ca850287e87e43251850bac30b967c5556f87637bc06169f39f9c6da053f6d1d77c8397256b3eaaac6993dfa2d757a86f407b4d4384ff5e5bb082043eb3b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-osx-x64.tar.gz", - "hash": "1063103d449c0663a108ab2332520640ccbdbd47ad7faa94c4c4ff8805c278259ed27da8c4f3025171863772b6b0b714ab080ffa904efd86a1f83e3eadeda246" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-win-arm64.zip", - "hash": "9569d4719f5423fa75e00aa991e76e0825cd37a71c9f9642545aa9192b73126744604ecee34aed3a2882215aecf088e95fef5881225de47cc7b4587e22de19d8" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-win-x64.exe", - "hash": "6c0901bd931c2f580cb0079c74c7dd3759df4822a4328d5e13807d7b67d2641da995839d540a00934c0daa2f9f0693196f581d22e985de7d93932c1e289a789d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-win-x64.zip", - "hash": "368a9d02358ed8057d77db71e00d2b19adf4a7180d9ebc22b2a338e33b41689e3549d8f119a110d89384e292c6d13598ec5f7056f56b4f94e03c99aed07a5aad" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-win-x86.exe", - "hash": "fa605d78b83779f30f4775cb491f254cbd1964f8a5176e6b5435364c16c4e27d476791371a2e13e55c9f55e79009add0a295a7f112770ed45027605cda25539c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/aspnetcore-runtime-7.0.0-preview.6.22330.3-win-x86.zip", - "hash": "c8fc7401646b8e101608c69e886aab38de128b0a723a06f42d35c157e2b0b5dc9b583f960a187f90fc09bcf8d7b97ff2d4c23a18be3424747efd19b3bbb65eab" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.6.22330.3/dotnet-hosting-7.0.0-preview.6.22330.3-win.exe", - "hash": "0d1affcf891c00b9a0082ae6cf0d2cdf08c4007b396d8b3b520035f714891310203f1eb7010b65a5b28ad6c21fd45559cec853dd29ba27117188b767425de12c", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.6.22351.3", - "version-display": "7.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-arm64.exe", - "hash": "432cf7c8709a60045c66466da2932bcb252de1e63db215124c96e372d8ab1b752a86d32ee09cb7d4a04e87566d834187174c8a4a4d0e439c82c709330b8d2d43" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-arm64.zip", - "hash": "44f3b1f0dfc4ea546a87ed322c083ba37d97a3447c855b05a709336a58d32283c8501d8b5304461b9474419f45e65a2baf4cc12de5dd9993b011adb4e3364933" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-x64.exe", - "hash": "031de8a2654becf115402116f8a5751064acf4d74412ef81e82c11979e1f7ecc3f9b2f8e085ecb875fd14699952922d8078531c4c25683ecdde4954db62c787b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-x64.zip", - "hash": "56031d79145d44b3fde898172afe42227f192e187e7e7f13f20e265d3661fa0f368cef89f115377f894244ca2b6f11e8a764a09d417ffed8a35e5ed84310b72d" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-x86.exe", - "hash": "d738c4903c805e045a8f8227802fba0eff04cd053ae195bf8a1e57a8baccbcc71b4ecdc93abcf1a521aa88b64f1be6e5caf95243ef0411aecbaad597eab7d79d" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.6.22351.3/windowsdesktop-runtime-7.0.0-preview.6.22351.3-win-x86.zip", - "hash": "b5f1fa971e096df0459e6469f08e2a012ca558e3254b0ec7e47eee09bd0f5e0cbb9e1d916d84caf09b6dfa400aa3ca54b1c1627f9199af1b5a6461afb7520dc5" - } - ] - } - }, - { - "release-date": "2022-06-14", - "release-version": "7.0.0-preview.5", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.5.md", - "runtime": { - "version": "7.0.0-preview.5.22301.12", - "version-display": "7.0.0-preview.5", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-arm.tar.gz", - "hash": "d725a5353c295e7152216cd80a6dbba3231e816492592de3c50765cc3742b14e281b140cc96ea6cf6b91e1a4e1034459f632e95bcf661f84f71601f673328552" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-arm64.tar.gz", - "hash": "0751be17efa3191e6c9dd3bf0b7f1f8fd21028282b9eacf6786c6f61c7898199d15ad4719686e0437e4ecdd0c2d85830344732afb5e2f4579e89aa410f75ee4f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-musl-arm.tar.gz", - "hash": "a0803761ba6afd83736decb326190687e72cc95e6e39df5a149ffefb62686b81bfa0c1246d1f0abc78d0eb83533e4e3333c082085f838035cd908522e277b1a7" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-musl-arm64.tar.gz", - "hash": "04996cf18a9e5e0b4da67110195b2812ac3273586085181ddc71a7907a00b594a2b81aef052db75de9f6762522b9ab6b458d742b377dd081a7193c83bcef4313" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-musl-x64.tar.gz", - "hash": "3df1c3926f6a443b8d36e229d21d3603b508803b40a5f9ad685cfa3cdfaae0de0c53110b6162941d90fb1156c76a9cce54875caf2666ab0ae97e7dbf8140d1ce" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-linux-x64.tar.gz", - "hash": "faf8450e1387b3329168c43a95f091f6c41a1230cfd0f4df2e5e1a501a8f8f82e41893cbe1f5f10b247c3ae58ce24ac4c18fd5533756307e50e439ec70ce0e4b" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-osx-arm64.pkg", - "hash": "fa49e5740cba1e66e15b040f51807d8f63ef7336451edb86f5881fa2526df61738eafb1c8e4125c5d339a5dd579589336d0a42e9c1e572d006fd9568726a3d51" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-osx-arm64.tar.gz", - "hash": "6d25417bc5dfb59d6b59decb49c55737bb00f1803453eec126102c90b9d9be0809724c4cf1a0f321a1eb5daf70e7c6ad33fd50fc79eb94793f61bf816637e00b" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-osx-x64.pkg", - "hash": "a7968e4df33af0723df7ddcdd7f2208f526bc89a131cc312ab5589c308db7d97e23b10e419738f9f920e7a72f561de7ed2e6a6fcd1e7cb6fc11278c97bec9bab" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-osx-x64.tar.gz", - "hash": "a0f85b0dd51e6c0763316a2e4a797a32e8ba6b35947295c11dcf39f3122cfa9f1e47c3371cc360d967df4ed800679aff2b13e299ed1bac861b27e185f9de5704" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-arm64.exe", - "hash": "b17aad8d4dfda0148d5bde8ac2d829e54ff003c817ccc110ae80f451879bb494edd427d64c8493a401e08a64e55e9f58c2324b26390657fccd109edf81c96797" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-arm64.zip", - "hash": "4a3e51145c7b73c77bcd0393a80bbec0e9fbe63ac1b1e93861bfe3d82175edc559894639ec9c86b59f35b671f62d47688378b097a953a7b51158e3fe7dfc3b4b" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-x64.exe", - "hash": "ba91290b917fac1b7fe663c94e39697322dc98e3a6d0257369d39770e4f7b33bacb4358e8f71124cdc230c180140c5df7aa5c6e0e96264488c942ffc5bae5c11" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-x64.zip", - "hash": "9cbaea09ea08586c11a16c879a74dfac3543164f778e9e61a52a5835f31f10303d808d327f8325208ebd6bf2ab1d2a15a5d12ea9e9190e81d0248d1e4c252c0b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-x86.exe", - "hash": "3780f3b63ff0e4069797b9c234669e62f679bb1c412f03df67e3f7a8ded4a3a39bae4941bd2ebe6a0056aa6c9c4a203cb24d3dcdc71525d560f37d876a670341" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.5.22301.12/dotnet-runtime-7.0.0-preview.5.22301.12-win-x86.zip", - "hash": "e8090d5a1db4c621864e7206f2784a01940e698593d1ad9ae846e8300e052a132fa7a07412d38d7b0a6fbd5208929d9a67408c11118de178070e08bdc5d55676" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.5.22307.18", - "version-display": "7.0.100-preview.5", - "runtime-version": "7.0.0-preview.5.22301.12", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-arm.tar.gz", - "hash": "065eaf010a533357eac08b571fff2cb3f34a41e6428195d41a8d168c60e412fc889681b1e6eef4d366dc399fe31bb0bcb906c6e9dbb6f24fed8e8509265021da" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-arm64.tar.gz", - "hash": "51f4e3f578cc44ea1b64904183ca0c0dd8ba229055fb70bdc4f94144fee9b2b2cc05d014332c560319da44252df9156caf1d06f91d999bc7de76b5b2d881f69e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-arm.tar.gz", - "hash": "b6aacd929ca2c2ff9b66df3760be45685801cdcd778926d889620e8468bb04c917836f6ca43b6a69d0a15c2666b7758bd799dbfd922f2cfc0be3963495a176bc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-arm64.tar.gz", - "hash": "8fd9d39fa2306fe2ef72715d3ddf74255d90c6089fabb29aba28da72736a81733649139ee577698abb3bbf471e02233b9895c53d5dd326c540110e01c99a3092" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-x64.tar.gz", - "hash": "98666ea340496f8731a443d956437e2702fec48762c6ca6623303f9b784ac8b64a71ebd1f64888935420f86b10aa686db4b78e168859cff8962e10e551a7bd3e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-x64.tar.gz", - "hash": "691c0d8917bc9848a08707b7fa22da05228dad0ba6335ff06c6d80f9a95349307572ff45c0b088d9fc199c40a1784ff314e1a8735d0366bd3aa06eb8dfa2b7d5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-arm64.pkg", - "hash": "c8c866d1492507c7ab6423ad8f6fa9ef10aceea134e3ee06f15110382a93e7fc285a3316e87d846c729333a8072324ea69035108b3dbb8930432ddf537a00c36" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-arm64.tar.gz", - "hash": "983128f05d5f2476383b60d9d565349532d4183bffd0a215d74bb26d0a53d40489401d00dbaf8af6a01aca8ec85e7776019cce0e662764ab3017e4659fd3683b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-x64.pkg", - "hash": "684e2b5df506fdd8d82d3fa74163ccab1b4969afdd09e4fac8d089af0bc3e6b2930c1ed4278e8f0e64da640fa03ad5abdb6160c78e08baa050d4712902ea5a0e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-x64.tar.gz", - "hash": "b329f615fad845b6ec49d15d81fb40f27ac078ee871b305e835c0625015f8406b665447c9d8c2a1d30dd57912cb470f6bf2c155307b4920b256c3b80fa800ec0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-arm64.exe", - "hash": "0b035489cb366fbb34a60dfc7798d46ca14c1565ec5b9fd5f1130b3f4306a6fbd4a5bad640fde0eefda9898827a8468bcfc90c71e64ebcb665a5a6005c02bc87" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-arm64.zip", - "hash": "c9befacd4a0af026896edf7624723dc04ee60fb250b568b9ea14dc6872e9cb1f636900faed96969cb932e94250e5311b7aa6031506d5114cadaa9e59b95d1456" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x64.exe", - "hash": "bbce402061c314be47014d64240192394eeae14564d4435c967c249f6bb774bffe82d2b84e1bd11f66dcc557d14443f1b545208a88902fb4033b98967819c6a9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x64.zip", - "hash": "fed4e197bb6da85ad9caeb49733c96a59e05daa078b34c542939f28f6ea4e610240d604e123eadc68d9a4267500db07a7a895e7743b7ee12ef87490a853bc064" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x86.exe", - "hash": "b53bb4f3932f29c3a2f4ecb05ff532bd395ca13cf8ccc0188e31f0ff96f4162d02986cd88df1f4672066ee35ffd6804cc056be6f6dbc96816e1f4c816256d892" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x86.zip", - "hash": "93957bd30777b4919b1c4bbe9763636e60d5b1e75e8e36eb6704bec3a53daf12f6b4f17666a21a4fc2b844961aba8cfdc02edc6bbcbb557bd01030e9c8b9c535" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.5.22307.18", - "version-display": "7.0.100-preview.5", - "runtime-version": "7.0.0-preview.5.22301.12", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.3 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-arm.tar.gz", - "hash": "065eaf010a533357eac08b571fff2cb3f34a41e6428195d41a8d168c60e412fc889681b1e6eef4d366dc399fe31bb0bcb906c6e9dbb6f24fed8e8509265021da" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-arm64.tar.gz", - "hash": "51f4e3f578cc44ea1b64904183ca0c0dd8ba229055fb70bdc4f94144fee9b2b2cc05d014332c560319da44252df9156caf1d06f91d999bc7de76b5b2d881f69e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-arm.tar.gz", - "hash": "b6aacd929ca2c2ff9b66df3760be45685801cdcd778926d889620e8468bb04c917836f6ca43b6a69d0a15c2666b7758bd799dbfd922f2cfc0be3963495a176bc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-arm64.tar.gz", - "hash": "8fd9d39fa2306fe2ef72715d3ddf74255d90c6089fabb29aba28da72736a81733649139ee577698abb3bbf471e02233b9895c53d5dd326c540110e01c99a3092" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-musl-x64.tar.gz", - "hash": "98666ea340496f8731a443d956437e2702fec48762c6ca6623303f9b784ac8b64a71ebd1f64888935420f86b10aa686db4b78e168859cff8962e10e551a7bd3e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-linux-x64.tar.gz", - "hash": "691c0d8917bc9848a08707b7fa22da05228dad0ba6335ff06c6d80f9a95349307572ff45c0b088d9fc199c40a1784ff314e1a8735d0366bd3aa06eb8dfa2b7d5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-arm64.pkg", - "hash": "c8c866d1492507c7ab6423ad8f6fa9ef10aceea134e3ee06f15110382a93e7fc285a3316e87d846c729333a8072324ea69035108b3dbb8930432ddf537a00c36" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-arm64.tar.gz", - "hash": "983128f05d5f2476383b60d9d565349532d4183bffd0a215d74bb26d0a53d40489401d00dbaf8af6a01aca8ec85e7776019cce0e662764ab3017e4659fd3683b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-x64.pkg", - "hash": "684e2b5df506fdd8d82d3fa74163ccab1b4969afdd09e4fac8d089af0bc3e6b2930c1ed4278e8f0e64da640fa03ad5abdb6160c78e08baa050d4712902ea5a0e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-osx-x64.tar.gz", - "hash": "b329f615fad845b6ec49d15d81fb40f27ac078ee871b305e835c0625015f8406b665447c9d8c2a1d30dd57912cb470f6bf2c155307b4920b256c3b80fa800ec0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-arm64.exe", - "hash": "0b035489cb366fbb34a60dfc7798d46ca14c1565ec5b9fd5f1130b3f4306a6fbd4a5bad640fde0eefda9898827a8468bcfc90c71e64ebcb665a5a6005c02bc87" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-arm64.zip", - "hash": "c9befacd4a0af026896edf7624723dc04ee60fb250b568b9ea14dc6872e9cb1f636900faed96969cb932e94250e5311b7aa6031506d5114cadaa9e59b95d1456" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x64.exe", - "hash": "bbce402061c314be47014d64240192394eeae14564d4435c967c249f6bb774bffe82d2b84e1bd11f66dcc557d14443f1b545208a88902fb4033b98967819c6a9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x64.zip", - "hash": "fed4e197bb6da85ad9caeb49733c96a59e05daa078b34c542939f28f6ea4e610240d604e123eadc68d9a4267500db07a7a895e7743b7ee12ef87490a853bc064" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x86.exe", - "hash": "b53bb4f3932f29c3a2f4ecb05ff532bd395ca13cf8ccc0188e31f0ff96f4162d02986cd88df1f4672066ee35ffd6804cc056be6f6dbc96816e1f4c816256d892" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.5.22307.18/dotnet-sdk-7.0.100-preview.5.22307.18-win-x86.zip", - "hash": "93957bd30777b4919b1c4bbe9763636e60d5b1e75e8e36eb6704bec3a53daf12f6b4f17666a21a4fc2b844961aba8cfdc02edc6bbcbb557bd01030e9c8b9c535" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.5.22303.8", - "version-display": "7.0.0-preview.5", - "version-aspnetcoremodule": [ - "17.0.22155.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-arm.tar.gz", - "hash": "72cf346481c3ff0952c47cc6e9e2b18391fdff8ef53419d0abcda12352623cf5d7b68e6cf711a9af7fd96ebcb3ad082230e70bc2c1bff593d6415d460cb94f6a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-arm64.tar.gz", - "hash": "56db58200270d802e0f3125d3ac055dc2d9b7f33879ddc995920d014434fc33d92a39ed0d32b01592e03bc4ee4a0c684621e1b6c64a6d13253896cca41e48262" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-musl-arm.tar.gz", - "hash": "5a9059a15b73479e5a696095723c4db58105c3e6d495c39978d67ab0a3dd00ba68518efe875d48b242c80d24cee0f6440c3f163a74bc90a0c3444fbd7e9e7edc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-musl-arm64.tar.gz", - "hash": "e03a8b492b9cd5a02277fd2b4ad91e93927e765c3dd90314a3464a7d448b7ba1284caea4ede24f8e161b0322f8133cb898e7a8139ffcd05967380e35884e096b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-musl-x64.tar.gz", - "hash": "4c5821c3cbe4ecf74a2f0dee7f1e7ff987a3eb30b19003025767ed4ea993ddfa03edbcc05830af47f7ad28dde0ac6b0fa7ae0583d8358a362b6830381a2e60b2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-linux-x64.tar.gz", - "hash": "40809e8687d7b4d3c11b6778830dac364fa61bfcbd362474ee4de77a2bd4fe25a80edaa2e64807cd6daeb8391fced9e4077b02adfe88196a831e4112fd60e48b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-osx-arm64.tar.gz", - "hash": "794ee8831dce488dba840a04c021c7e8ab9a25ce1ff752140fb2b78ba7bc42857b6e0973f7c02fdf4fc99867d2116e8ec3cfc21723af2ce783d3462c56c45ca7" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-osx-x64.tar.gz", - "hash": "21848cb14c4808a39e503f8c0f2590dce58734b8e5d2bde70e51b42c99ffcd1a46df7b84a0a433b082197b3bfbaefb4cb4fe81ca76bfae15e95ddd64e78e1425" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-win-arm64.zip", - "hash": "a04382d06cccffd03f86a155549bad5ae0fc47b6c413de07934ef3ef693a466e5f1e0b6d32f5788bdb3f20d7d4ae047b75bb1acab1de30e7345af5d7a0b4c8ec" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-win-x64.exe", - "hash": "9451a4cdf15edf9f0f352bbe6ab6eede1580e8ea7903e788772f67489d62219601c383bd42b6045c89724cb11fc2522c5d8755e56df4c7f7e9f636541eb51840" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-win-x64.zip", - "hash": "3aaa75387c78f0bffee37689d4f6220b32f9264d9f5c7eece04aa7e5db3df81a465f1e2da94a145797dca6f66d44a865b6d925bb8550ea1183ddcd975e514f88" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-win-x86.exe", - "hash": "c609a0ed776c5ac5a5960f778e9dc4f5935e06017c0b67e0488645a7e55f29da4c586dee74748ee24e0b9f0c32ae658fe459d5b773d11ded76f4c602d43e8f64" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/aspnetcore-runtime-7.0.0-preview.5.22303.8-win-x86.zip", - "hash": "7e8d0c3074d5ed9372d11023535805cdb4fe05f046c46bee8ef1f632c269012b4fdcbde6819709b6425e3598a4e1a0f22be2fd9f7e0dd3f24cc7f888b760bfd8" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.5.22303.8/dotnet-hosting-7.0.0-preview.5.22303.8-win.exe", - "hash": "6cadb9198ceeac6901b86126029507b77c1317651204042af0f73230b0b240a4084599b59561f3ed44b10cf127ebf6f9402dbfb216c691af323f530773368180", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.5.22302.5", - "version-display": "7.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-arm64.exe", - "hash": "3de94f8d5537cfbed747aa4ec56edd755c38c58efa0865e397c36fb7472c9b72117b2da7c5f3256e43197c8187db25a23753ee862b9920df2144e865b8bd5321" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-arm64.zip", - "hash": "2f8ef6c944963e7b4af2d80785c6923b55f6303330b8669d2d46a049b045aa93b3ea49ca93b4468128126476d1689473f5266533c40a03a140ce2cb152b3a3c8" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-x64.exe", - "hash": "0c28eeeb7d69f492f00af393438944494af8c34aa095b9874bc6f1003626c27293e00d393b144c9c36532bb57a13a6a76b3ed540d65bb9884239d264783e69d8" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-x64.zip", - "hash": "f84526cbe85f9c575ad7c1a4578857ebabfd75ad16c69e6483fd019472eeedec2c1f80558edcd99fd801e86ef2ad22597617f7371f5e1c08afedc63f084b238f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-x86.exe", - "hash": "a9ac398df168032fdf68027597bf419e641063a4dca030d33da6f80907ef0c4339f4ebb747ef2d35e0818740b3aabf9371dd16407ce8b36609f64d3333cb785f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.5.22302.5/windowsdesktop-runtime-7.0.0-preview.5.22302.5-win-x86.zip", - "hash": "00d56cc73ae6879c9cdc512f88feb7077d3b9459ba7d7e89d3dc37188c6f5e35706801cbf0877eb4575782392db4e40610899e090d2fa72011b631b3d699f6ca" - } - ] - } - }, - { - "release-date": "2022-05-10", - "release-version": "7.0.0-preview.4", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.4.md", - "runtime": { - "version": "7.0.0-preview.4.22229.4", - "version-display": "7.0.0-preview.4", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-arm.tar.gz", - "hash": "3726a47e90f766763927cdddbd7edf0121fd3a18ea06108ff7b45349694178d65cc736434d7514a5fdb6e15b32346b058165d6117bb938a0711e9e55d5289925" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-arm64.tar.gz", - "hash": "ddced9182f8226ac513ffaca188d521d2f777ede0859b13927ad0f9ee07f6891614e95a4699c852ebd202a2c5e965714ce611838c0d53c3be0913d2abc6eb0db" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-musl-arm.tar.gz", - "hash": "5d9ab3e9db75b10cbf606dc81e51f87f71ec7f531e726ce18c56aa48e6dd18559ddba995941237c7970ef38f8bfbc69affc1b1f10c44bfbc9eda5ad3a64234e6" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-musl-arm64.tar.gz", - "hash": "a71b75af6c5f11e9eacecaafa57c8d0a6b597e3e0aa723dba617f7a95664711226fb0fd74c1349ed92a4b16651fc1c4113df066addb60618467533b33bb75916" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-musl-x64.tar.gz", - "hash": "8b550424c2de09cf5dfb161197d911d7e0a2e2323619de2d4c9031ad6d2a32793bb3d74054010fd4f815aefc9170328ebea04828f6818d066e9242ee64e9cdd2" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-linux-x64.tar.gz", - "hash": "0b55789e4825924a08a91b603d3e54d654443e39f274c61947d7afea44ef2b16b8fdae3f2087acf672ae8b653bee93094091a4089a823610b7177fb38f9006fc" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-osx-arm64.pkg", - "hash": "8e0fc91b322ba7f4603b1c049f94d37b8dffc529a9a9c7e97f472fd9f6f98ded3756306b97cc2560518933b242ff4a1c0bbea8227616895d0a2a91e352033673" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-osx-arm64.tar.gz", - "hash": "1beab2bae61d0a3fcd0ae18797762e7be8ce1a5e9f7ffd31bba569f12dcd5f930f14f09b7fda275f741662c64fe04468338811b53cb2025f7f426e0e0ecbbea5" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-osx-x64.pkg", - "hash": "e5e6c27c426edb0835d501c882428d6e6eccbbf29e511e4dde949d16dd8507c784ab940eab0ae571676ea169c3064612beb6e17eb0eb3c6970d3168eb6d45c76" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-osx-x64.tar.gz", - "hash": "9addbb6bd460165ccf18f861f4979cf54a89c5a35ac425644d172d875bc0b046bb5901283b45d33c97eef4cca2dabd18673ded0c8c1a7c67802686d3483ecddd" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-arm64.exe", - "hash": "a35a5397e96810577cd4d94a4ca53365273838a57bb45d96ba41f728a27b0f5149e5098a4e5f3d81082736a3118dae91bcc90a0691a8606ab04fb1cd280c8495" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-arm64.zip", - "hash": "e615f71a02ee4a5d834c32f37ddac32d7dfeb89ba16e946f7f8c93671dfd4e0e80419fa76174ead195e3fca5c35948817b60c5e420a7cfa1b67a7a20344e7266" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-x64.exe", - "hash": "97568be294d7513735f7b378263f4c2310d9f01cf2b2b7072a2bbf7af292b392a337fc218dbdcbf5872f4cbeba80ad3273a2058dfcf2300ccbf451ba27d47418" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-x64.zip", - "hash": "6ed044e1cc4a1b851299cb2fa78df51752496c1c2a93f3a8e5d32eaf14ef6c1a845dc5b746f6b7c3a9ac540099f10db32cfcb18d5c7346dff0cb409e6bb3afae" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-x86.exe", - "hash": "ede86fb1e91cb625c289467e200c585bee1fcdcae9df77e4087b42a47f47b8588a46595f2642174386b62afb86485e409f7b30329cd9ea6ceb0154b6d1acddc1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.4.22229.4/dotnet-runtime-7.0.0-preview.4.22229.4-win-x86.zip", - "hash": "29ee1bf36c78f111d76bae23e2f87aba7bd273ef8e6ffb532c8ea9c420bbe05346d7df122149aaddc930605bac9f610f5085337bcf3bbfc5cc991fb55f98fbc6" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.4.22252.9", - "version-display": "7.0.100-preview.4", - "runtime-version": "7.0.0-preview.4.22229.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-arm.tar.gz", - "hash": "019fa229d7800bb2856aafb47fe66e8fb9854283b9bbb37534ef60491eb176b439fe08e1e61c4c4a8e94d58fffa829d388d186e7257507a213756fed763766a5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-arm64.tar.gz", - "hash": "a04fbd748c6694e71fb6f3f378a3ef8c8c014d5546e1285825e804e8e8a6677e6d75dd9c0c88f44df8e34ee55103bd1039f21caf294e23d916eb42cc202f469c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-arm.tar.gz", - "hash": "ddbd6e39f7ab05026b19a480505809c79d7af799d97ef6ae6b4dc0204e64d015c12b6aba2adae43cd88ccade552401e8de5c6317c1f702b504845717fd6581f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-arm64.tar.gz", - "hash": "3cf0eedc0902c38ad77f2c0fbc895e310e1e3e2ed248203e3832407df85a7296d3d5568b26f177bc9ed239a3b0c8e3d20bbae59277a1e1f22c8a98e23b84c1a9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-x64.tar.gz", - "hash": "f2c70ba9fa914c7e3b2c4f1c0ee17a46e66c7b88265bca8cd4541aa886a670e5d8c6a9ab21197ef296e481cac2af99bcc2f72e9c74242852138a45ed1cf5baee" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-x64.tar.gz", - "hash": "35bd0ed3f22ce9ba2fc9d79ad5e01f75b5c819ee8d5ee2e253e3e8dcfec510a284196afc510c682bab65d56481ee4c400ad86a4c7ef547c24c5188a21f205c90" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-arm64.pkg", - "hash": "27ed8911f48e99dd73d4ffbe91036a3d412d35c2ba79c52a0e5a814f1748d42a112f9893e5f8ca30ca7924c2e997fbe8e39250ca637458c6b03c1df8cb941871" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-arm64.tar.gz", - "hash": "216219b641804948423c68658feff01f6e07058524034b0ae6a1f9175fb63f60cf2f9e3e54d933087a5fbf0af1d0f71bf7075a956bd5388eba4e7afb3b902909" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-x64.pkg", - "hash": "84339549d54b655fe87e2b60e3ef2a4db20842fc421da25f72578b2e8c30ea56863b0b6c029a42370d85aaf37cb37038a93fabc407434a69a09c6c8298e260e9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-x64.tar.gz", - "hash": "36590fdda60d78cd94ceab865298d2efc2c5d0d97ac5c41bca72dafbfd0f6aa29b8b2d56b75d90d3007354efbeecc31790d2edaa65c00933baf13abadb1551b1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-arm64.exe", - "hash": "9f90683f61bbf6e96fc948f131ad2541c3d4f3fdc84e1833604afb7d637295e7e31bba1757350f5f0f9d7904483f66495b0719bf5df595ecad78cd032d4409a9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-arm64.zip", - "hash": "97708de607771eddb314b058187100606306ccfb0f407b8441b6c84c0878c730bcf08f829c40042f8cfebf7c3f042f75bf352077ea5f24ff07e80d14b3abdb57" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x64.exe", - "hash": "0ee6139a51b13f438256cbf52c6c70ea03930988606f480f8a3b0c9bf11e2fa12f4176b23b1b436547e43d6bb3ddd39d67a65ebef0dd30eb53905e7a00ba046f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x64.zip", - "hash": "6063d0fca37ce0fcb397c4095189d554428f8cd5c6e58d6cde83959e805eb1f1d6af7619fb15518671d8147a1742eea666d5617913936f1422fa5df27fa14714" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x86.exe", - "hash": "77e4e449387afbfa476ad3942313c4e3e19dbe26c6356c69b6e2bc72ad2c640d58be9dadecb8a9436342d2342a74ebd727b62de424c319b6be1a2547947aa541" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x86.zip", - "hash": "6613f3d511dd1beae8db746c0a33ba78bbc9c36a60e24427727cc125a760c3a469a5591f54a37e89034bf8315fa144b93cccc50c9fab6f7d863a7265ab1f8ac0" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.4.22252.9", - "version-display": "7.0.100-preview.4", - "runtime-version": "7.0.0-preview.4.22229.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-arm.tar.gz", - "hash": "019fa229d7800bb2856aafb47fe66e8fb9854283b9bbb37534ef60491eb176b439fe08e1e61c4c4a8e94d58fffa829d388d186e7257507a213756fed763766a5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-arm64.tar.gz", - "hash": "a04fbd748c6694e71fb6f3f378a3ef8c8c014d5546e1285825e804e8e8a6677e6d75dd9c0c88f44df8e34ee55103bd1039f21caf294e23d916eb42cc202f469c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-arm.tar.gz", - "hash": "ddbd6e39f7ab05026b19a480505809c79d7af799d97ef6ae6b4dc0204e64d015c12b6aba2adae43cd88ccade552401e8de5c6317c1f702b504845717fd6581f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-arm64.tar.gz", - "hash": "3cf0eedc0902c38ad77f2c0fbc895e310e1e3e2ed248203e3832407df85a7296d3d5568b26f177bc9ed239a3b0c8e3d20bbae59277a1e1f22c8a98e23b84c1a9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-musl-x64.tar.gz", - "hash": "f2c70ba9fa914c7e3b2c4f1c0ee17a46e66c7b88265bca8cd4541aa886a670e5d8c6a9ab21197ef296e481cac2af99bcc2f72e9c74242852138a45ed1cf5baee" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-linux-x64.tar.gz", - "hash": "35bd0ed3f22ce9ba2fc9d79ad5e01f75b5c819ee8d5ee2e253e3e8dcfec510a284196afc510c682bab65d56481ee4c400ad86a4c7ef547c24c5188a21f205c90" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-arm64.pkg", - "hash": "27ed8911f48e99dd73d4ffbe91036a3d412d35c2ba79c52a0e5a814f1748d42a112f9893e5f8ca30ca7924c2e997fbe8e39250ca637458c6b03c1df8cb941871" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-arm64.tar.gz", - "hash": "216219b641804948423c68658feff01f6e07058524034b0ae6a1f9175fb63f60cf2f9e3e54d933087a5fbf0af1d0f71bf7075a956bd5388eba4e7afb3b902909" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-x64.pkg", - "hash": "84339549d54b655fe87e2b60e3ef2a4db20842fc421da25f72578b2e8c30ea56863b0b6c029a42370d85aaf37cb37038a93fabc407434a69a09c6c8298e260e9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-osx-x64.tar.gz", - "hash": "36590fdda60d78cd94ceab865298d2efc2c5d0d97ac5c41bca72dafbfd0f6aa29b8b2d56b75d90d3007354efbeecc31790d2edaa65c00933baf13abadb1551b1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-arm64.exe", - "hash": "9f90683f61bbf6e96fc948f131ad2541c3d4f3fdc84e1833604afb7d637295e7e31bba1757350f5f0f9d7904483f66495b0719bf5df595ecad78cd032d4409a9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-arm64.zip", - "hash": "97708de607771eddb314b058187100606306ccfb0f407b8441b6c84c0878c730bcf08f829c40042f8cfebf7c3f042f75bf352077ea5f24ff07e80d14b3abdb57" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x64.exe", - "hash": "0ee6139a51b13f438256cbf52c6c70ea03930988606f480f8a3b0c9bf11e2fa12f4176b23b1b436547e43d6bb3ddd39d67a65ebef0dd30eb53905e7a00ba046f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x64.zip", - "hash": "6063d0fca37ce0fcb397c4095189d554428f8cd5c6e58d6cde83959e805eb1f1d6af7619fb15518671d8147a1742eea666d5617913936f1422fa5df27fa14714" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x86.exe", - "hash": "77e4e449387afbfa476ad3942313c4e3e19dbe26c6356c69b6e2bc72ad2c640d58be9dadecb8a9436342d2342a74ebd727b62de424c319b6be1a2547947aa541" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.4.22252.9/dotnet-sdk-7.0.100-preview.4.22252.9-win-x86.zip", - "hash": "6613f3d511dd1beae8db746c0a33ba78bbc9c36a60e24427727cc125a760c3a469a5591f54a37e89034bf8315fa144b93cccc50c9fab6f7d863a7265ab1f8ac0" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.4.22251.1", - "version-display": "7.0.0-preview.4", - "version-aspnetcoremodule": [ - "17.0.22121.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-arm.tar.gz", - "hash": "7c9fea7315f425baa583038001c0ea7d451a64f8f708f1d115e254e8f5d3f71b02352505720906771e125b9beb6f688ee73377987a5a6f3023a4b46951203cec" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-arm64.tar.gz", - "hash": "c4c06c7fc7936bad76ef9fb514277692e8bbd7397f874e81784184041899ce3ad7d1c170f6638812ab149b289d91f62f480d655261e0ea917bff643c96da3a6f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-musl-arm.tar.gz", - "hash": "e6d10c20870e721cb1b34ef867aeb8cc954311b6d109d4278bf32cc53fa203e109ff8a49b66eaf3f05b4daeea2bbd26a70b1cf48e81a0cdde4474e5840dbaa93" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-musl-arm64.tar.gz", - "hash": "f1bc9d47a27e21a23d5cf6c737a01a2ea6485bbff2d2e3c427643f51423e05bf08fc1605dabcded5bd2c01ba044ccea2083e2bb0e966a9e946dae4499a926c17" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-musl-x64.tar.gz", - "hash": "0091895f2c80e7d9de0dd6fbbbf43f8529ea2d74fbbf4ad56fbc364f1444975e84b49830fe131ef922fb26e892fb4003b4fa0b0a709efd77133839235072909b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-linux-x64.tar.gz", - "hash": "09e9d7dd6c3fdee25706a7799c7007e3c3d5cbe84492a233ed979c24139cfb1a9e14bccb336fb463010be00fbc2276e3b69b08a07352d26a72cfdf4c4a33f64f" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-osx-arm64.tar.gz", - "hash": "84f16b76f0a6e630e7ef6ca7dfe063acdb1686fda0540df790e11ceb63d44e9e18d47b117733a95c11b33583a4aa3d4cca08567ca953c1fd6594109e75603c04" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-osx-x64.tar.gz", - "hash": "7311a928831b5d403d690f9aaf33285fb2ccfa511c8ed3a115ce02e402fd26335565baeae90b0f8d8f33545b57b27825f6992c4f96e3785ddff750c414da8bfb" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-win-arm64.zip", - "hash": "fc7f04e85341bfba59eb84af9d3e0883cf3598ef0699bf65766cd4b06af42a4a2e4951f17c90fe0ea6f138cec0508e6823e6837baafdfef664362f281b80e163" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-win-x64.exe", - "hash": "ba1b2fdcad619534c3dbc7383be5cadc08b9cd524bf011ee60a65e0ac3ebdced26d3fe9537053784c420a801b8d59e461b02c3e2ce87de50ede7fba140be2517" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-win-x64.zip", - "hash": "9ab282f5b2e5f05c0f29f7187911012be92d515946518ddbc3d431cf73a4dee64b5c2f3f654d1dccf9357a339262e142bab30996f2c6d50e08ec5fc901f7dfeb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-win-x86.exe", - "hash": "8d4d54f3ca36766c62f324d0daf23d9d75f94a6549bb0ac6cb2c00a7da395a2a13822eb981da766453a47ce1c8c3046a9bc57f2f56d5f6cbdd123c2160dbc817" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/aspnetcore-runtime-7.0.0-preview.4.22251.1-win-x86.zip", - "hash": "13fa242153fd84482a51de7c8cb877b8e31f41747dcefa6a198ec530ef66c2362b892a1c69df4c10ad2b9e7df89d1b46dde47e5f07a21085848294c5b9219d1e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.4.22251.1/dotnet-hosting-7.0.0-preview.4.22251.1-win.exe", - "hash": "5cfb1a65213393b84ca6e29f4c4869d86b5672adc18aaaa95cc957c65bfe3cde3f0448f36cbc74e6f945e107f436cabbfa180041c73c37e603a966898cac8048", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.4.22229.2", - "version-display": "7.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-arm64.exe", - "hash": "a52d47a9fd12587a56bf4d607660009a9253a68c7c783163979b6165379bf351eba1b9756b34a46d087cd573448d5c50e4e5b6f6381e3d5b1efcabbaa62368c5" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-arm64.zip", - "hash": "edf1e93061cfdb2f545ee42f22a68e37362257728b66e4cb00050d0e0c6c5fa23d50114ae6fced0024e15ff012f4321fa61fc1b371d2e099a65802cf36f8e9cc" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-x64.exe", - "hash": "2342f75d856e8042653832d4f418561309e1609c7f23b4c0fd01d760e87f80d01d3aea5cefcfde7278729695734a1199bb8f837945c7bd07ad8d738c2f7b330c" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-x64.zip", - "hash": "5ae110efeaa13e66959d04bf48e6ea2b15c0f2eb80d19144f45c181cdb905ce5fd7707e9ba121defd07d76cf269e03f02c9fbd8516656dc8263f8141756ce98a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-x86.exe", - "hash": "690f8ffa5ce237aadd28c08ababd08c56844f48e7d1a2cf824a42014fc36fb7f90676fa3368c8ea1466af9475a5b43d358df870c659ca9680614d5cc97b33d7b" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.4.22229.2/windowsdesktop-runtime-7.0.0-preview.4.22229.2-win-x86.zip", - "hash": "43382f22ce6f9d08207cb09e6812b0e83eb5d9a06e61c11693951a878b0b585662e3c731f98cc1f2a8cb9c8fb9ff1e622514df05fe9eaf5c28de1a6d102fc347" - } - ] - } - }, - { - "release-date": "2022-04-13", - "release-version": "7.0.0-preview.3", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.3.md", - "runtime": { - "version": "7.0.0-preview.3.22175.4", - "version-display": "7.0.0-preview.3", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-arm.tar.gz", - "hash": "7ec4bdcbca48019880906bcec7e9568c8bf22bf47bfde0b6cba913d23558e792505d0c069a9a72e54a4eae1d9bdbae86d3ea9c8ac692d0f9a31c670845447e2e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-arm64.tar.gz", - "hash": "bbb77d2e3d780cc67a02231b64b706811729a682864d335a2fbcb1995bfbfecd23947d0c5149b6ba3d0c848566a3443c79cd62c9fcc68459f19bcf1b2efb402f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-musl-arm.tar.gz", - "hash": "8fa0dd1ffc4ade2402e9e35b6be28de3c2cc5eaf504d62fdbeeebbc619a42d5aab9ea322d5757aa9a25e4330de5bfc118f0bc76e7d02cea07562d1d0157485d7" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-musl-arm64.tar.gz", - "hash": "2828b340ba85d056a6f58e0cba065c35d44f5d2a7749e1b4c5a966879c97db52de45f6c86f47a071009696412eb8f11af732bb688baed2b5a12ae4a454d686b3" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-musl-x64.tar.gz", - "hash": "50103b1a4c72e457c2199209db0bcfd874b12be767f1ba5c6cc1322ba5ed42e6497f43011bc0027dc1624bdaea0e7dfb1946aeecd60cc9866b2d6e4ffba2f45b" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-linux-x64.tar.gz", - "hash": "f4546f7cc56ff30b9b0f63d9430caa88123ce40cc13b3238b3602e75c4f648c1face2d63414f5da2e1abd13046c84f2ec0dfd6dc84d09c26d8cd1641c7a40030" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-osx-arm64.pkg", - "hash": "c5a57f8ebd6da2b2950dcdd6f2d215db3c2016d5f249d84fe5dd9f8ea098ca1b5b65c8684c6cad68fa56e0cd1929293f6570ee34cce260449f549249ebbb1bbc" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-osx-arm64.tar.gz", - "hash": "42ed6277a7fc90810cd2b3c233a5664462198e618fe99c5509cc333c12f0d4ed79eda8e9317f9a304abddecb66d653249655e63f3d71237895428b8ec628baea" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-osx-x64.pkg", - "hash": "f0cada6ba663bae0979de2cb66c6f0c92744e7cd79af58a0aa4eed633744f31b08d05733d02f69cd3025dd4e8ad31ce5053e382c2d03988cd61a0ac814002e0b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-osx-x64.tar.gz", - "hash": "b641a6c8484e9356aa0b987da42f0453063ffc2cd22b27a5da4ea24d66a01a1ccec3cce57aab73d837822ae39dfad905a9cff252ba8118a09ca054da54638212" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-arm64.exe", - "hash": "f9b28fb72e674c9636d954c8930db5e9d7ef349a9388eb59afcbfda39848625b6bf7650c34581b75810561e2116f36d38c314ea4f9d6ae48b86c6d1cc182f8c7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-arm64.zip", - "hash": "9ddaeb071150434af13294e2cb180364eaefa8cecfd31dfc43599e2ae2534f35918f4f2d4e63671737147e27f9da089d9723da708c6cf1fc8481a26021a037e8" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-x64.exe", - "hash": "eebb89158a3dbb26aac2ecce89aca8126b0ba3f29061014b5aa6b2652f0f2847f1857ad369ac24837e89cf07a66266cf4c8df35da035383bd0d644668a20db79" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-x64.zip", - "hash": "40991e008252c890c523432f87471f19e979f02b936cd1445401a0c157f82101ec61de128c7e05c515b58a32232c7d43f2074b63edd4372b72dd1f750564f5ec" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-x86.exe", - "hash": "91b8df8ea30ac0ba0ede4372dedbd162a1817219743c1a1e5970de6f8d882998345e794337fa1180c65a8ccf9ca1b706bd6ed20d2f3dc61b20fc5fba6498d97d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.3.22175.4/dotnet-runtime-7.0.0-preview.3.22175.4-win-x86.zip", - "hash": "f5914a97da27464c7682adf007ddad8f1f0eddc5e2d9d6c1718e90d4fa84223026e6126a485d76d2ea8a63cb9d976527d05309f926b43b90d9f07eb0b6103079" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.3.22179.4", - "version-display": "7.0.100-preview.3", - "runtime-version": "7.0.0-preview.3.22175.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-arm.tar.gz", - "hash": "1fa8821cc96c7a1fbf64a7a5f9e29bf2c78e5aa2299029a02d121de6eb6c8dd9fc9235d91796e9a15703eb1db3aef698293324df1d9e77e37ef29fb044f22a76" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-arm64.tar.gz", - "hash": "ce8073860b35b4277fcf2efbade1329201716a96919f9246a36d71d9a0f3b2837b5827092546352157a9428b58f69599a6615f318a735ba288e2c8bca0dfdad4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-arm.tar.gz", - "hash": "35147e1073eb298befb54e571c5af962aa31a218bda05735ccfa2b4d07b3d6a849d2859385a3793c2fc526f59ccadacc082e830eb7956c368c522132ec42f720" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-arm64.tar.gz", - "hash": "290bb2085c14b4aace30f34b079e9e48027cbbfa641dc504d634489fc57562b0c9e0a085cfd44076a4cc645097b15285acc91ec481e198f6490bd70e4b96a7d1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-x64.tar.gz", - "hash": "1e6946857db27a38875601a8dbb4f7f4dcace0718583cb00cffe988dbd5098e3a7b5c23457d8ef8780a573ea13dc4f65bf67330c65beda61420d7b43217e61b4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-x64.tar.gz", - "hash": "ec4db3742fd9342d9f876ba3b5b15d71c2ef6e9ce57ea6f5a18c1753118b930797863cb19bb6661b5ab15fab097f8aa47294e60cf74cfbc2953d354c3e6f38cf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-arm64.pkg", - "hash": "90183e118b6141d21fa0faf7a14ac3f3bee8239fe629b9b48876be43d12bdce80d3d8f8d54207041a9ebc05d0b436f4f72515f94934f6b52b377ffd4913dc184" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-arm64.tar.gz", - "hash": "3c84fc4450e40a8c787c763a93ba4ea68340ff4196850b7d693afc1f955e45a6dc16adb08d7edc1fb0ad70994bf6c0cd00aa74dcd98ed62f161aa79e67666f91" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-x64.pkg", - "hash": "5fed6250cb308caaae214391bc29db6bc7dd70c5f45db31b5e8433cdc221107664b990671dedebfc5f477954b9b35f242eb0f2394475912dfb988a741a25a5ae" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-x64.tar.gz", - "hash": "ff780e0da4c5926f273de2f2d13f3342eb3ea98a824147fd003caddd00afa551f78b83a088df460ebf9a476962ac37afe21ea3b88b258d04a2a2ba01a26a19e2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-arm64.exe", - "hash": "7ca38f828e3c405b5b0efb59531e4c6be4674dbb2b5a4e95f114f275ef12b432350758eecd825540154da716d9256fe7ca109d4fe7157941ed9c93291d176334" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-arm64.zip", - "hash": "b28e2fee0f0227f2d506e32f73309ba89b20afedf58a866ef58162934bd5ddf1f6a892d262ce20f8d0ccf3383931fec061eff51fec6521ddf882290b866b4858" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x64.exe", - "hash": "508b38dc317581b9e48a0e3946a5d6abd0a00a6b17aa45ac3eb6114d3772fb3e36988c01a16158da490632725f6040f9e27ecf1976dfaa84e422f7c301f1e696" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x64.zip", - "hash": "7c73e80a358e4a027ab9450d94edaf74d4f3650b7b74fbb5612e6a66645cdff23da406c791d3e4ce954b5d50ead4681a322bb20a6041268f3e05850e4e7c07c6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x86.exe", - "hash": "2e79653c6605fe707dd378be7905fcdaaae6c258e2078c4b7a28f259e25770bfb8dec982889b8b86f6961ec643e8282fde3bb47f6b068994db32a752ad8d9bce" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x86.zip", - "hash": "52bb85cddd60756df97b86877d855dd39860b05e47570c34466d3fee717773f2ab43fc06b3a7f394082fcad52e06c19b4aa5e1a1e3f4af06978691b867d999aa" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.3.22179.4", - "version-display": "7.0.100-preview.3", - "runtime-version": "7.0.0-preview.3.22175.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-arm.tar.gz", - "hash": "1fa8821cc96c7a1fbf64a7a5f9e29bf2c78e5aa2299029a02d121de6eb6c8dd9fc9235d91796e9a15703eb1db3aef698293324df1d9e77e37ef29fb044f22a76" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-arm64.tar.gz", - "hash": "ce8073860b35b4277fcf2efbade1329201716a96919f9246a36d71d9a0f3b2837b5827092546352157a9428b58f69599a6615f318a735ba288e2c8bca0dfdad4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-arm.tar.gz", - "hash": "35147e1073eb298befb54e571c5af962aa31a218bda05735ccfa2b4d07b3d6a849d2859385a3793c2fc526f59ccadacc082e830eb7956c368c522132ec42f720" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-arm64.tar.gz", - "hash": "290bb2085c14b4aace30f34b079e9e48027cbbfa641dc504d634489fc57562b0c9e0a085cfd44076a4cc645097b15285acc91ec481e198f6490bd70e4b96a7d1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-musl-x64.tar.gz", - "hash": "1e6946857db27a38875601a8dbb4f7f4dcace0718583cb00cffe988dbd5098e3a7b5c23457d8ef8780a573ea13dc4f65bf67330c65beda61420d7b43217e61b4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-linux-x64.tar.gz", - "hash": "ec4db3742fd9342d9f876ba3b5b15d71c2ef6e9ce57ea6f5a18c1753118b930797863cb19bb6661b5ab15fab097f8aa47294e60cf74cfbc2953d354c3e6f38cf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-arm64.pkg", - "hash": "90183e118b6141d21fa0faf7a14ac3f3bee8239fe629b9b48876be43d12bdce80d3d8f8d54207041a9ebc05d0b436f4f72515f94934f6b52b377ffd4913dc184" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-arm64.tar.gz", - "hash": "3c84fc4450e40a8c787c763a93ba4ea68340ff4196850b7d693afc1f955e45a6dc16adb08d7edc1fb0ad70994bf6c0cd00aa74dcd98ed62f161aa79e67666f91" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-x64.pkg", - "hash": "5fed6250cb308caaae214391bc29db6bc7dd70c5f45db31b5e8433cdc221107664b990671dedebfc5f477954b9b35f242eb0f2394475912dfb988a741a25a5ae" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-osx-x64.tar.gz", - "hash": "ff780e0da4c5926f273de2f2d13f3342eb3ea98a824147fd003caddd00afa551f78b83a088df460ebf9a476962ac37afe21ea3b88b258d04a2a2ba01a26a19e2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-arm64.exe", - "hash": "7ca38f828e3c405b5b0efb59531e4c6be4674dbb2b5a4e95f114f275ef12b432350758eecd825540154da716d9256fe7ca109d4fe7157941ed9c93291d176334" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-arm64.zip", - "hash": "b28e2fee0f0227f2d506e32f73309ba89b20afedf58a866ef58162934bd5ddf1f6a892d262ce20f8d0ccf3383931fec061eff51fec6521ddf882290b866b4858" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x64.exe", - "hash": "508b38dc317581b9e48a0e3946a5d6abd0a00a6b17aa45ac3eb6114d3772fb3e36988c01a16158da490632725f6040f9e27ecf1976dfaa84e422f7c301f1e696" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x64.zip", - "hash": "7c73e80a358e4a027ab9450d94edaf74d4f3650b7b74fbb5612e6a66645cdff23da406c791d3e4ce954b5d50ead4681a322bb20a6041268f3e05850e4e7c07c6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x86.exe", - "hash": "2e79653c6605fe707dd378be7905fcdaaae6c258e2078c4b7a28f259e25770bfb8dec982889b8b86f6961ec643e8282fde3bb47f6b068994db32a752ad8d9bce" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.3.22179.4/dotnet-sdk-7.0.100-preview.3.22179.4-win-x86.zip", - "hash": "52bb85cddd60756df97b86877d855dd39860b05e47570c34466d3fee717773f2ab43fc06b3a7f394082fcad52e06c19b4aa5e1a1e3f4af06978691b867d999aa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.3.22178.4", - "version-display": "7.0.0-preview.3", - "version-aspnetcoremodule": [ - "17.0.22087.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-arm.tar.gz", - "hash": "83889bd3dedebf3b5c058a12e9c8d542dff00bdf9364d8e4127817ad171573783d370e595dc969bbabe75cb75558f07b3c4692cc57aa8fe1f06a289418e5b359" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-arm64.tar.gz", - "hash": "be6af7b0d591dc77bc479f315a96bfbeab3dc86edc7ff7227d7da5268bde0820f7fca11e7085c50851040330eced245af5cb23cf77057a996b7cc25e489e7a8a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-musl-arm.tar.gz", - "hash": "7fd9677570d60e86e506f33d1532a01afdb561e8b82d7c9b5572b17d5463b8eaf0004ccd5ac723365d861e2082027ef18bc5d7f186e50c6ce76c1909237d4221" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-musl-arm64.tar.gz", - "hash": "dc2fa82d013ec2c7894bacadd1858f362aa26f1a6a08f97c7b16002a75a781c7ccb40a3f7fa5e5754718cd44cefb233de53d7591ef85d6a9e75bf0871e19e228" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-musl-x64.tar.gz", - "hash": "766915fa5ea28d80f3d47df8a89dab0a8c83af2e2d2f268a51a62398aaa494f2085da7ba2adbef9bc09c11123d741ce03315b08d63914fa3fe3eea3ebe3c66c7" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-linux-x64.tar.gz", - "hash": "718799d77533e5e486e10ed2f61b05bb81414230402ecb9188be57969a4e3924913661262f9f69b19872f7317125edf8a5b955aa85ff23f078cf55c6f8b496ed" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-osx-arm64.tar.gz", - "hash": "25dcfd7142cf88e503285ace24a78e21f24a2d8ac4a633c61e4dcdf92da083a522908e6d931de7e05b17ff72a9eaa629494549bd8dcfa43cf65149f0c2e7ab44" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-osx-x64.tar.gz", - "hash": "8fad23ff1e212f7e58cc62b2d44ff0fead60d6f24b8e22ac41e2a52c1410529f118f696f1aa9576c4d97579733819d939c2cbb89c8c2f76a9b65fbbb84e88ddd" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-win-arm64.zip", - "hash": "acbedb88be6a7664c7b2853ee4f10e813abc05afaf4411a3c5ad9d8d935540e100b07b75e142beb046ebbc05de2fdb839d3a3e5d42947ee3c5134b9bf3d2a918" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-win-x64.exe", - "hash": "647d373eb97883aff3e6ec4988668d991ffbe6b96578a21f011f85906672f6f802c57142061708714df791664352295f559153224eba945afe501aedaf685316" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-win-x64.zip", - "hash": "f126538ed56f2ee5e551e44ed7c745c14182ce8445d73288861a7ba48650d129f9f315c126e207b027f4517ad55e49c4a283ac918dbc819e2fab8bfdea6202f0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-win-x86.exe", - "hash": "ad979f844d6409087cf04cdf8e61f170e865e988041e9b85cbf36fa4cceed18c2332d25155caf2513ef623fb1149624261e9501eef05cb017851f28c73dcdd3e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/aspnetcore-runtime-7.0.0-preview.3.22178.4-win-x86.zip", - "hash": "20717ed6626c23b4ac43766b96ada8d0c10c84e97ef0e6619790a33b7c3de4afc7bcfd607f3d2c942064c48416a9ff89fe79e2b5488ff7f7abe6c525a4f077ce" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.3.22178.4/dotnet-hosting-7.0.0-preview.3.22178.4-win.exe", - "hash": "8d622146823cbc9c44a694aa3874daebd486b31afc5504b0f92c4cc66ee664e6a47906cc6afe95ef71e06807ae1436aef785af127e7a2c51cc6450f74b4a30d0", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.3.22177.1", - "version-display": "7.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-arm64.exe", - "hash": "6f516833c6c4d8d19c1d7a87cab5081116f4e845d44c054cefa998986b3c9a73e9deb7f8d4744b5398f1c46d082e04b75af4e56d77b5e1469a63940a843c9597" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-arm64.zip", - "hash": "689b37df5c7dab46b1ea33ef38404279f2005a7cc077601d4b80e242961c23c34f1da9143a8d1dcf6c7f757ace0270d051c3bc4a6bb761330f33b5703296e8f2" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-x64.exe", - "hash": "6afe0acb6691d39d82bebf11e0a5d298cb9079fc8655ab71bbf6069f42d60f30e99946d556bac4170dfd4e0346eddbb44d9c2b25999b9fbeaacae46f2c3afa0d" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-x64.zip", - "hash": "fb9fae5314bce8502321c9629c9f087c6a7e5455197667131d5148c0a90694af88a30202ba517466c0009c0b7e2b7674314839d973b5122c5db0e664c01fcfec" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-x86.exe", - "hash": "ff894420a3666206334f9b8284a8e64420e0cc030a705ba3b061a30dd111b6ce12f6e6eb7ba6cf84e3a16814bd6bff8a24eeb5151514dc80b70fc9a99adf1eb7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.3.22177.1/windowsdesktop-runtime-7.0.0-preview.3.22177.1-win-x86.zip", - "hash": "7a9c487e845513129a4fb35799d68c8cb90f989007f71513dcfe6085dcf246684da1c6bfd71ec8eb974f721ee0076182284b298eda5f7d529d3aa420f9066a4d" - } - ] - } - }, - { - "release-date": "2022-03-15", - "release-version": "7.0.0-preview.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.2.md", - "runtime": { - "version": "7.0.0-preview.2.22152.2", - "version-display": "7.0.0-preview.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm.tar.gz", - "hash": "5c24f63816516c22930512a7d92ac2eac4a96b6f93e8987e5c77017eb0fe5dee560debb3ce9192e553510099e5b879260e3c238d7508a72eae39b8eeacc4684e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm64.tar.gz", - "hash": "61eafd2a578c54797c28b466fbd9984e6c2f36b0358d36c1a1c2357aa05cd49d8a8f0f3019369f5277f4fab9c89eba48bf95c80eafcc63ef356e3b7dfb47713c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm.tar.gz", - "hash": "84a7618018fdc538e8d1d36ea0e9996beff93f5cdfcd6c2b902f3d7598723a6a25e64ad0a36c9367696f161fdf5fd93fe16e389d6416ba9811132373dc495f1f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm64.tar.gz", - "hash": "4e064f48b52580f0e870281c9119d5f655d133ca8ae64bf3a0f06ccc644fb8cd531236f49ee5ae8e1316660c9df253a686412c86ede9d386c838cf6131b87d23" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-x64.tar.gz", - "hash": "0020af8b0aa18099d3f7ea1ea9d989bbf51f66fe269625701681cb57e46f6e0c2aa61388606b8150e521142f516df50f4ee4f15dc9c73237007fa4e77552b96e" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-linux-x64.tar.gz", - "hash": "31240cbaa948dbfa53b1b35f2971cbd0192273e866c5ea4b31646b2a3cac50aa4dbf5d6ac9a6ceff4d928b995c298e445c2f2e948102c0a1888713fb77ef4938" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.pkg", - "hash": "a62255f67f3b7338be3d407b3704b791bbede4c49497f6f696c48f3d530aed24419b86b01b12e3c227fb1919c9853b5c5eda512ce92521641d1964e1e8a12594" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.tar.gz", - "hash": "75758fdf22f1fb65d9a3022fca333750bdac4a32252fac873e9eb5836f040c7c1a1c01b191b6d31b6089a6b60a0bdf628f48173aafda700dd5751bfdcc335cbd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.pkg", - "hash": "a0a7e2599d37ea77dde76523ba18f17a3b6ae77dbc780f174a7d4f5f2b5fc20d0ae9567cbd3a3f5db9393bdef986cec30b1a065aa35cd90d34697c2b7031750d" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.tar.gz", - "hash": "74cf4b54891c61c4f0a53ba8fe5fd48def5be664feb84efe0cb0ffce5b7d76d3b3b94f24309d9aa0843b32b7c2dcae88835f8e04a52329ad0df62c587b0f800a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.exe", - "hash": "3aef27e905247442a9fb3a308f5204c23b76033af6bb11dbcbdd6e86528de5e01ee2e1bd6cd20d0e49d5e61c903e33125ef51121dc74fc70faac2a511a242700" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.zip", - "hash": "2533679c76583caf74742b704a9851657359233ae491ec389fefee7b2dd37d8b279a2a5bd2051e86eb6ad37df26019f7883db123d509a2713c2260e521141f76" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.exe", - "hash": "8b1e4bc5c1229f02242537425b23068c22b958b74df1cc62691aabae4e5118c6f41508946c11bfa997b1cff998d200569db4158291b642b2967c790598c4a619" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.zip", - "hash": "bbd8c05cca3072664ac3921f1f96d01793dc8baadeeac826949a9b285268e0eba0951968b264368ab9a34a2922a02ff2ba6162209c30df673782413d40420a78" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.exe", - "hash": "30aa930f20e48cf174b563bceaca5d23e2c6035827fdcff235c634707eaa67b99effb4a9d2d1c355274a965e4a5add0a7ebee88709497fc9e526c17b6af6f664" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.2.22152.2/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.zip", - "hash": "460d1b5aa9b1d0a0b0e053554d1cada1c32865435ae3de7a5e2ed9b9468021cfcadecd06eb133d07ed81c23b2c8734a01bdde1e20c7f287eb68f7fb4f1f73dc8" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.2.22153.17", - "version-display": "7.0.100-preview.2", - "runtime-version": "7.0.0-preview.2.22152.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm.tar.gz", - "hash": "cc95d32002661af468d17493c96362f781402f7508e5ce6b3616086512d04ee327942215b50ab1ae10eea7d9d40e805ced15d17b00ed436d07159f8a04ac873c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm64.tar.gz", - "hash": "049534f71b98e1673b8534bf88e9900e396b9c28ed155874df6ce6b8bd9d6c720f567a1dc5b95097bcf629331db14fad1cb35635459c5c9a82c737a69e99fbee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm.tar.gz", - "hash": "0b043cc5b995856116fa51d294cf10474ea8ccf30bbd21f66d41423b5667dbbcab4aa1bcb2c6b3890c39d2bed6c77c2274f70f4e91524aa4874b09b8a2fd666e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm64.tar.gz", - "hash": "a7b2a444840ae4a52bb36a76cbcf284fa27250c98628203601ff1a523bc54e440932d8da39036bcd94114553f644b22115120975c2a496e6e27ca4062f270ed6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-x64.tar.gz", - "hash": "ff38288921b1a8ef7c48c7c31035b91004529d9c9a746485eb0a9677849430d7f795e5230033a17a72679090833a40784ab694fe749e47fddf8a79e30f0d4ef9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-x64.tar.gz", - "hash": "279521b1677ed1832878a0318e928b68bb9aa6d578e0e6e69b5c5da6aa8999f0a60ec4c33d622db1c941f926cfdcdc227f413622d69ea28d5f9d6ec8681f7bc3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.pkg", - "hash": "b17117c068e2f9d66120dc0133c3674284f71dc04622c0774c3a231e7abce4af8e0523c7d0e5e7940319457e336af10be08c2440e38573fdd51232a01e7b7677" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.tar.gz", - "hash": "cb37a63721c26e250f498c6c71a68706c38c43f2f9274b822d7b2f41c5fd44eda83af4a498e627cdbc0f9e68e918266ad3fbcb1c2b75669fb27c9b9164eb2d09" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.pkg", - "hash": "5399006d9d25789cde5fb75ab974cb3d832e7c6a1d451911cb57eed8e6cdf825f35c667a733766137d4292753af804dba360100b865391d81e9988e491e4b82e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.tar.gz", - "hash": "0175c0ee1f30eb18d206ac834e20c9fac64eb30fd3c1c12ac0d66e89575b2a5fc5bb5820e55bc70824105ca7b36923916c69b548443ffa8fba5308806b335199" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.exe", - "hash": "8f6da29b7dac521a503541258259e1c393579b8f9f629e4b040e48aea30549cbfa186a068fda1563b3216099cacce2970091ef54f03f3520c67194b89ce4e051" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.zip", - "hash": "4c55a53d63a5f624f9a1330163d36697b343de3f8175cab1155478952ac78d2773c95109881b6f8f4ba41935d71b8c723c7171d8dafdce556709b3e28667a2d4" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.exe", - "hash": "4acd6d094f801981d788277705fb89393031fe50c2bc8c4586d557f17a421403921bbba0274cb922fc4ae09c187ef606a7cca646f813240d89f7f29ac65783e6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.zip", - "hash": "7e604a040f1629394a2d02cda532afdb6e13d96c0758e119b7ddbab9c53cc6ce73a4fffcbaed2228256a1dfe0b0797bceb2d9fc5b5d3a454493435ce5af9cf14" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.exe", - "hash": "c785761f75166a6e069969d18d710e6cd6aeb19280f73d1ca17b0b305b33dbb27755f551ead41e750d432744bfafb6201fa71db6e1ddb807e433b7dff8e9865f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.zip", - "hash": "6a0a2dffeb4de4176c0b16318ea081ef41d9fb3f2f7a8f1b46d2b5bfe0e06bd2100e85941a54822a1f034c18ecd97b972b74dd026ce302c3ac8b2dc46fc559be" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.2.22153.17", - "version-display": "7.0.100-preview.2", - "runtime-version": "7.0.0-preview.2.22152.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm.tar.gz", - "hash": "cc95d32002661af468d17493c96362f781402f7508e5ce6b3616086512d04ee327942215b50ab1ae10eea7d9d40e805ced15d17b00ed436d07159f8a04ac873c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm64.tar.gz", - "hash": "049534f71b98e1673b8534bf88e9900e396b9c28ed155874df6ce6b8bd9d6c720f567a1dc5b95097bcf629331db14fad1cb35635459c5c9a82c737a69e99fbee" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm.tar.gz", - "hash": "0b043cc5b995856116fa51d294cf10474ea8ccf30bbd21f66d41423b5667dbbcab4aa1bcb2c6b3890c39d2bed6c77c2274f70f4e91524aa4874b09b8a2fd666e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm64.tar.gz", - "hash": "a7b2a444840ae4a52bb36a76cbcf284fa27250c98628203601ff1a523bc54e440932d8da39036bcd94114553f644b22115120975c2a496e6e27ca4062f270ed6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-x64.tar.gz", - "hash": "ff38288921b1a8ef7c48c7c31035b91004529d9c9a746485eb0a9677849430d7f795e5230033a17a72679090833a40784ab694fe749e47fddf8a79e30f0d4ef9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-linux-x64.tar.gz", - "hash": "279521b1677ed1832878a0318e928b68bb9aa6d578e0e6e69b5c5da6aa8999f0a60ec4c33d622db1c941f926cfdcdc227f413622d69ea28d5f9d6ec8681f7bc3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.pkg", - "hash": "b17117c068e2f9d66120dc0133c3674284f71dc04622c0774c3a231e7abce4af8e0523c7d0e5e7940319457e336af10be08c2440e38573fdd51232a01e7b7677" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.tar.gz", - "hash": "cb37a63721c26e250f498c6c71a68706c38c43f2f9274b822d7b2f41c5fd44eda83af4a498e627cdbc0f9e68e918266ad3fbcb1c2b75669fb27c9b9164eb2d09" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.pkg", - "hash": "5399006d9d25789cde5fb75ab974cb3d832e7c6a1d451911cb57eed8e6cdf825f35c667a733766137d4292753af804dba360100b865391d81e9988e491e4b82e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.tar.gz", - "hash": "0175c0ee1f30eb18d206ac834e20c9fac64eb30fd3c1c12ac0d66e89575b2a5fc5bb5820e55bc70824105ca7b36923916c69b548443ffa8fba5308806b335199" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.exe", - "hash": "8f6da29b7dac521a503541258259e1c393579b8f9f629e4b040e48aea30549cbfa186a068fda1563b3216099cacce2970091ef54f03f3520c67194b89ce4e051" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.zip", - "hash": "4c55a53d63a5f624f9a1330163d36697b343de3f8175cab1155478952ac78d2773c95109881b6f8f4ba41935d71b8c723c7171d8dafdce556709b3e28667a2d4" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.exe", - "hash": "4acd6d094f801981d788277705fb89393031fe50c2bc8c4586d557f17a421403921bbba0274cb922fc4ae09c187ef606a7cca646f813240d89f7f29ac65783e6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.zip", - "hash": "7e604a040f1629394a2d02cda532afdb6e13d96c0758e119b7ddbab9c53cc6ce73a4fffcbaed2228256a1dfe0b0797bceb2d9fc5b5d3a454493435ce5af9cf14" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.exe", - "hash": "c785761f75166a6e069969d18d710e6cd6aeb19280f73d1ca17b0b305b33dbb27755f551ead41e750d432744bfafb6201fa71db6e1ddb807e433b7dff8e9865f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.2.22153.17/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.zip", - "hash": "6a0a2dffeb4de4176c0b16318ea081ef41d9fb3f2f7a8f1b46d2b5bfe0e06bd2100e85941a54822a1f034c18ecd97b972b74dd026ce302c3ac8b2dc46fc559be" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.2.22153.2", - "version-display": "7.0.0-preview.2", - "version-aspnetcoremodule": [ - "17.0.22062.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm.tar.gz", - "hash": "e5631113fa2531825200e7270cbff6ca4b1678eb82056cf6b31479114599b59ed2ed2c47986fefaf9e056f767e14bc5fd4b5c01373ced7f40be3ab63dd0c48aa" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm64.tar.gz", - "hash": "884c66cc2fa5097aaed7fae6595b96a6c66f0f5e3fedc0074dee123182bb7c62f0a04d2df20a68252b4e3d35b4b82e5e3e70b35c92a7a582c1cc69eb88231d63" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm.tar.gz", - "hash": "ff26e2c96e3357d37077f70eb1f03816621eda4ddb13e59930c382a0e023bed144272a53a5fc6b586e5db7f069c6f73b8d1e3d0cdf911ab7707329ca136ec7cc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm64.tar.gz", - "hash": "ac98b8025125dc23545544c2ea91a887c049cb334e5855c47c4cc76c7ca5438b895124dc20ec80df7414e4d9987105d0e3815365b85a3ea0ea108e66ad3fa458" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-x64.tar.gz", - "hash": "4d7e8c4d92c1c742eadfd9f830e9a3af00a5dc5e9becc2aff3364b86ce2770042899135ee08e593c907521ff3dfe860b37eceff3a6c3a753ed79358672fa9a8a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-x64.tar.gz", - "hash": "b5c713de49282b383e0c69d4f02a59a34db32982a576945cbfdb327cf18076ca0a67e970a36d0cd3e9de6f895b8d0d92cf7687af94fc58ac952fd1df91e44554" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-arm64.tar.gz", - "hash": "1cbf11b8776f6856cf63f0739de231674f592812d54b8588f0f42a46f28bf4136dcdf80ba1f41612b37aa24ae8f2bf23307f22967308a64cfa741475c080763b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-x64.tar.gz", - "hash": "806fb11a03c7c59d99f55705479d8c12f007a770e092ce3070e9c9b066169edc0ae742847ba7f996f330b481fd5c03f3a3cb955be33f7485fc28f68284340f48" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-arm64.zip", - "hash": "d88c6507370de62e940906a87a92ad792be3ed698db9af70e409ddfcfb2993b8af1181dc944d313a95924c57ac8d3e02b1a970d69fc3ca922191fc32370de118" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.exe", - "hash": "8c1148cf34ccb75bb0b37057f1ce8ae49379be5387acf50e4e7b49aeeeef519497252dfcf0b0985089f6b0e623d6f21f577662d271c1eaf2d30fd388c03cb402" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.zip", - "hash": "7f720e796573e4d5c14ba3491663364b98a61eab6691c4cc19c1492a16814e1ba23d6a702fd69837b591c051c5c94db1dfeeec13adf73688daa5b2421ef8188e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.exe", - "hash": "c23bed8e89e87c1c632c46b0450a44f21b0999328adfbec18c23d9f722e0eb5bda25906664462d48280eb25bde94fd3d1f5f2dfbafdd19a83e428035d9df797c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.zip", - "hash": "84e21292421201a7a5c096ed48fcb82f892009e176db2095375495d8c87c1c8b9370598a7514f857108b946624a59962847e14c88522c868e38e1fc656f33ddd" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.2.22153.2/dotnet-hosting-7.0.0-preview.2.22153.2-win.exe", - "hash": "ac4de8f001c5405261ba7ace6b6aed58d1057aee0c5ce497ab1057328edfb0f651e64bf32ea1d4d2822544aba749cab9d3a4adaed741626dbe8dcd5b7b7abc1f", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.2.22153.5", - "version-display": "7.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.exe", - "hash": "6f54cb7b542f73a60ddd5b859be68b55ec2561e326b435a2264bf88011f48f7409eaa0966d54de10141e43156788a450c8bd8e8bff387d6a94fe9dd1713b23d3" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.zip", - "hash": "977c23b44fe72a5404681208efa5a88b26ae2043242a47b658dc686eff5af33274b34b91ec6e0568586ad66f59e48e1e1aedb5c8b8dceb9ab99ccb688051c7eb" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.exe", - "hash": "038815bae5d9133f00efaa9716f9a3409be6383f548721723f4e6dedc787efa9a1dc77b4a0eb67e13f3d578f82edae22563a5b634eb8f3691e1ed9034b3d12b1" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.zip", - "hash": "dd6823d1e5a476de34d9e0125937f8c394b04e896e4fb0c2d4adc16670ed6d27baf849e092df17ff02eeb7a5c4654777d2847eaa88913c9c4194bd178acae426" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.exe", - "hash": "64c2b6283f6d707f7264013f212a4f946fd2c809a86fd22ea1809b49fac34aacbf497577c613cb1570b8526e8ab80fd8771f9ef0cd80457899fcfa68c9221fff" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.2.22153.5/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.zip", - "hash": "4d2ba3d8fcfe2dd29f753276075dc990b49230e0d26d5587470226cdf5049ec848d4f4a65d4e5d2e51f4f3c9ff338623df0e4dbc244aa1f2c27fb96900f8b874" - } - ] - } - }, - { - "release-date": "2022-02-17", - "release-version": "7.0.0-preview.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.1.md", - "runtime": { - "version": "7.0.0-preview.1.22076.8", - "version-display": "7.0.0-preview.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-arm.tar.gz", - "hash": "90bec2461459694b0d6e430066171ae40669690920f2db2542f4c0dba51465a1e402dea21c24c0917626666e0e4d41512ab4f9cc157c30f42c7f8d1b8b4962cf" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-arm64.tar.gz", - "hash": "0675ac88a45cd102287094b90df0b60e2b5c0b56bc4518658ef60dd87a0868950043ad5b4824022b54f89adfd5e7c63d77a1cca98ee1c871cdef2d6ecb8130d7" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-musl-arm.tar.gz", - "hash": "db3a841fcebe667144a62c3e15347da2ab826e908fa5da7c693371645900df2a533af7bc36e6792466c65556938827baaa16a570988848fad06ae3aba5245f56" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-musl-arm64.tar.gz", - "hash": "642bee46020fc51b4710d542570cae2facbecddcd7ed36919ee11cd419fd1a933bbf489870594182ff40ed6fc273d6ee8721f40f4ab8ca447e21909e902b6f99" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-musl-x64.tar.gz", - "hash": "74cdf90223f293adc5fc884910be9f8c26f8d476269df5d86ad022c6449a9376f3bf2a8c251ddd3bda7f11a8be1ae6a0876e988ed445e0baeeaff8d4e9456948" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-linux-x64.tar.gz", - "hash": "8d48436646071c371b862002fcdd24de07addd02ec878ab413cc6c98a5ff6da821f2175c637167462261ad5e47da0d2b83f465949e673462f0e147d62255651c" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-osx-arm64.pkg", - "hash": "7b859147aeb660ab44d046176ea987ed1fa73bef5c0157c8d9b9e092d32e8d51781df8ab8ac8386191cf0569d161e3c91fc85523076d695042bc513c108c0f7c" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-osx-arm64.tar.gz", - "hash": "a7bff58263ed56f714848e883453b41b8106c7bd219bedaed2de539dc18f8d29e539259cd7bfa94c24db96e405a1e27bffc9bc062b04fd910d471f72f8b5d196" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-osx-x64.pkg", - "hash": "7b6b691a16af60674caf888e86a44b66d02f4846fd85f77285383009199dd499a4dfa41823a4283b04addc7054907c6af4c20afd0a8fde7baddf627f80b0108a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-osx-x64.tar.gz", - "hash": "df8bdb0e403d895fe97d595496428508af0890ae6aa1ff098f9e5805346d96bc9aa34ce423f46c2ad2203894db7e7ead40b625ba7d370333c54b36c2056e420b" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-arm64.exe", - "hash": "60e43ac59e59ddfd4f9081534153d076664eb6258e038312bd9e998bddf51ee16628f86c0f32ae0775340ed82831a80b6e1cea8b5e874cc8b560fdd594236ddf" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-arm64.zip", - "hash": "2a2949505230699e5299df9de3f56a888297b4db55127788bcd6137d4a6649b837dd5abb26592a8c82e92b6ef84b60b62d5b8c4c1386af0131968cf96cf8998b" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-x64.exe", - "hash": "4679158271797e5361543400431215d7366e1e392be6a3a65f64bd3cd339380744f2981fb3e1dc26aed4f224322c8325d890c58c45d25f3ec9061ed078f346a0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-x64.zip", - "hash": "b353dc44d87e4f9d528d48d4874a115b59822d9baabf553ed5824404b16b11fd6f2309057895790dc96a64126335055fb86c70e91d1c4d2f447100264afbf8f7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-x86.exe", - "hash": "c8d92d699cf5247510aa1446b4ee3b23933f93691842ac636c2e5355103c9959b52a4c5dd4f57e41df9df93fd4b00a100d1f0dae2dfe3435c8cda24f0dd45876" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/7.0.0-preview.1.22076.8/dotnet-runtime-7.0.0-preview.1.22076.8-win-x86.zip", - "hash": "d4b90483a5cd9a9fbdc8a91dbec41f5c27eeeffbc585078cab4b1fa3dc015675436f661c555911e3b1ac169544d3e028567fe79942c4832fe30c5d14e1cff761" - } - ] - }, - "sdk": { - "version": "7.0.100-preview.1.22110.4", - "version-display": "7.0.100-preview.1", - "runtime-version": "7.0.0-preview.1.22076.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-arm.tar.gz", - "hash": "22c112bce0b36e46140bd17ae9379f7801f72b8b12156ae43224d3a2e9bf8ca8226653986601c6ba5cfe4e68515069d81dec935fd918634a0172418d6e7a5236" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-arm64.tar.gz", - "hash": "64b78bc4878623e5d145efc7ba3e01e5d4073bfb900eb5f200f8cca0e6828a0da62a93ca9ba781f5d3c9b7e7eadda715789fd6c7ee3cbd2058f9500893e7733e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-arm.tar.gz", - "hash": "026af35eb1f6fc6002ba60f92b5f856bf5f6e445ad67129e976c40350a086b8a3251f81e90ec7d664203ff5310440e42dc55bc1d9d8efa8d47e8dbf7fccc4c42" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-arm64.tar.gz", - "hash": "b9960bbc90a63a46424509dbe807b1bf39dd505ac4ce4c1b48a901622f8e57493d521b358e03e2df4dc03022fbfe575ad66d8ac48321d6c5735d8c93c6217f85" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-x64.tar.gz", - "hash": "195ec8d001715106df5d2487ee1ee44291acfbc17aaeed890d1967bd75f0c1767cc68b54076ec82e6bc23118ae469b0dd8483872a7ba4da26f4ff81fc997d78a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-x64.tar.gz", - "hash": "54488a911172f059e3823d6bf52e1fa87305eb09e84d97f81a40e0815fc8a73a480b149023283f557a672ef0341f022b8ca16ebec92264ee16a56fac8f35e2e2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-arm64.pkg", - "hash": "27cb15e73e02d2f2d14b70113e7898b22f80a9974d7deb3e9881f4fa452fb861f35a6c35cd61230a9252e62d55b6cc42b3a8aca6085af675cd95f9b454a84d44" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-arm64.tar.gz", - "hash": "a94221b69b9f9959c60456720efe2ea50fb8a073903103a473e311a656871c0d32ae310a253b77d5030dda1396ce2d02b3140e2c69ec927f915f72519c7cc798" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-x64.pkg", - "hash": "0b819050a6ba1075f8d7d0d0dfed35db0f0999ff722f87796d667b4fcccc62d38798135e7cde23c0ca26a17c9333175326a67c8d61fb310f9b8d0c73c5afdbf2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-x64.tar.gz", - "hash": "eb521adc05226661ad7440f9ec1da682a509456d24fcd07c5e41dd5b07a0b676bc4921d60748aad92c67e1fddf53c9beaa24933d4d2ddae78420edbfa32bf52c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-arm64.exe", - "hash": "bdd1fff69e7c0fbe6d001f6aed852b7992b78a4747e56b22a9811a42f69834a232acf2543587a6acc8b06b4955033e0fc4d5abcde98cfb21ce174c40bc68d492" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-arm64.zip", - "hash": "37f69c0cd345e7f6cec02f6825055cc37dda3da58a09648fa720ea9424176638bf60aee4d418c0ee35acd7e13ee12dd5e9d4728e6c4b0dd6ce01f18c0545335c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x64.exe", - "hash": "751b20eb4fd94f16efb6f71bfc8cafab3fa1bf42bfd73163caee4d00899d933622b748ccb3b328104f66210436c7a0f5b585ff7d617435807d97eb528277a924" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x64.zip", - "hash": "9ec5ab0620e38c363b12b09239829524e79f460e76be0e81069e1f54a7a79ca01dc06a6246e08ad45808633fbb3310559ebd303e083f9d7bcb267157e6e48a61" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x86.exe", - "hash": "42becb52fc803d8c42fc733db528ec41b383422a39fbb05a208dbe556fe0d113618c6c217b3e3bb0838537e263ae58f448e103f0400f757290e13c888c0f962e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x86.zip", - "hash": "ad9873676c73d8e008e37fc3200732e566c5d8644f30f1ddd3291a5623a77f436c4395ed3f85da9820026c3a45e3e47aa1343b59cd7e232bac072afe0852eaab" - } - ] - }, - "sdks": [ - { - "version": "7.0.100-preview.1.22110.4", - "version-display": "7.0.100-preview.1", - "runtime-version": "7.0.0-preview.1.22076.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.2 latest preview)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-arm.tar.gz", - "hash": "22c112bce0b36e46140bd17ae9379f7801f72b8b12156ae43224d3a2e9bf8ca8226653986601c6ba5cfe4e68515069d81dec935fd918634a0172418d6e7a5236" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-arm64.tar.gz", - "hash": "64b78bc4878623e5d145efc7ba3e01e5d4073bfb900eb5f200f8cca0e6828a0da62a93ca9ba781f5d3c9b7e7eadda715789fd6c7ee3cbd2058f9500893e7733e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-arm.tar.gz", - "hash": "026af35eb1f6fc6002ba60f92b5f856bf5f6e445ad67129e976c40350a086b8a3251f81e90ec7d664203ff5310440e42dc55bc1d9d8efa8d47e8dbf7fccc4c42" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-arm64.tar.gz", - "hash": "b9960bbc90a63a46424509dbe807b1bf39dd505ac4ce4c1b48a901622f8e57493d521b358e03e2df4dc03022fbfe575ad66d8ac48321d6c5735d8c93c6217f85" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-musl-x64.tar.gz", - "hash": "195ec8d001715106df5d2487ee1ee44291acfbc17aaeed890d1967bd75f0c1767cc68b54076ec82e6bc23118ae469b0dd8483872a7ba4da26f4ff81fc997d78a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-linux-x64.tar.gz", - "hash": "54488a911172f059e3823d6bf52e1fa87305eb09e84d97f81a40e0815fc8a73a480b149023283f557a672ef0341f022b8ca16ebec92264ee16a56fac8f35e2e2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-arm64.pkg", - "hash": "27cb15e73e02d2f2d14b70113e7898b22f80a9974d7deb3e9881f4fa452fb861f35a6c35cd61230a9252e62d55b6cc42b3a8aca6085af675cd95f9b454a84d44" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-arm64.tar.gz", - "hash": "a94221b69b9f9959c60456720efe2ea50fb8a073903103a473e311a656871c0d32ae310a253b77d5030dda1396ce2d02b3140e2c69ec927f915f72519c7cc798" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-x64.pkg", - "hash": "0b819050a6ba1075f8d7d0d0dfed35db0f0999ff722f87796d667b4fcccc62d38798135e7cde23c0ca26a17c9333175326a67c8d61fb310f9b8d0c73c5afdbf2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-osx-x64.tar.gz", - "hash": "eb521adc05226661ad7440f9ec1da682a509456d24fcd07c5e41dd5b07a0b676bc4921d60748aad92c67e1fddf53c9beaa24933d4d2ddae78420edbfa32bf52c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-arm64.exe", - "hash": "bdd1fff69e7c0fbe6d001f6aed852b7992b78a4747e56b22a9811a42f69834a232acf2543587a6acc8b06b4955033e0fc4d5abcde98cfb21ce174c40bc68d492" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-arm64.zip", - "hash": "37f69c0cd345e7f6cec02f6825055cc37dda3da58a09648fa720ea9424176638bf60aee4d418c0ee35acd7e13ee12dd5e9d4728e6c4b0dd6ce01f18c0545335c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x64.exe", - "hash": "751b20eb4fd94f16efb6f71bfc8cafab3fa1bf42bfd73163caee4d00899d933622b748ccb3b328104f66210436c7a0f5b585ff7d617435807d97eb528277a924" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x64.zip", - "hash": "9ec5ab0620e38c363b12b09239829524e79f460e76be0e81069e1f54a7a79ca01dc06a6246e08ad45808633fbb3310559ebd303e083f9d7bcb267157e6e48a61" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x86.exe", - "hash": "42becb52fc803d8c42fc733db528ec41b383422a39fbb05a208dbe556fe0d113618c6c217b3e3bb0838537e263ae58f448e103f0400f757290e13c888c0f962e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/7.0.100-preview.1.22110.4/dotnet-sdk-7.0.100-preview.1.22110.4-win-x86.zip", - "hash": "ad9873676c73d8e008e37fc3200732e566c5d8644f30f1ddd3291a5623a77f436c4395ed3f85da9820026c3a45e3e47aa1343b59cd7e232bac072afe0852eaab" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "7.0.0-preview.1.22109.13", - "version-display": "7.0.0-preview.1", - "version-aspnetcoremodule": [ - "17.0.22031.0" - ], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-arm.tar.gz", - "hash": "222eadc1a700219f02b8d56c38b0a623979b2a5242f9d497e3cd8d0120e9d69c4ec015ba801a593e6cb9e7e6aaed1d7ba3a59063ea14554ee8954914ca6ee386" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-arm64.tar.gz", - "hash": "33737fc5478ae12c46f61d64817a66038b74d62f60eb9d23aa4b10a681739cfac61afbacd62faefce8514d8b615ec13ce84bed243619631529903d1f9d1f6d61" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-musl-arm.tar.gz", - "hash": "69e3bf1888d88b11610377047a253ee296360c10a7f42e5385ef577a69c4b3b95fb8fc8fed08c245186babe432499d9cf0bc7bf4d7be6c92d8f1385fb432b415" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-musl-arm64.tar.gz", - "hash": "7fe85e4f21612393e32a632c5f5747696cd86456d9b7ca6eef65d36631c27aa5bebbb5ce45d004090978b7fb87ba5c961263179a61f97b0105f105d3e460e001" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-musl-x64.tar.gz", - "hash": "687488c28de26201710c403bb8b9405aeb4afe633e7cb093a0ea004aaa0f1c730f29cb9a630dde81cb2c64853833bc0f174c7ab00840e95de5bb76a9daaf68a2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-linux-x64.tar.gz", - "hash": "064d65fa3aabe1aa1c7b4142e7ced64b194474cefc0c52710e17aa7f156e3259ed51ae3abacec164c58de29240ac21d51aa7c153ec048c4937104eb3bbb00c74" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-osx-arm64.tar.gz", - "hash": "f2d46b8109ae65bd5ff826861a26b2f8f953cee71c49d772e43dcce769ae737fc0c2ba35ab42983d6e6e3de53eff41578900a6c6115b626b15f283c0e63d2e4e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-osx-x64.tar.gz", - "hash": "a57a6f96284b505309a765729223e2f68b48f47032ab810b9745e0a756208dacb04c236e9fec151daa92a0e29ed259026375a2837d8b1fd2c34480b59f31738c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-win-arm64.zip", - "hash": "956b86abcd4e1544fe23c01470f3ad0b7299348951180f51d6ae3209f5f5701de4a5985fb89a89d52606ea0f3708f733a53ac67e3ed3c2280eafc7f9b757eb3e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-win-x64.exe", - "hash": "f6ccfa8fa070cbaa456203a3d208ead6eec6c082ca84fd5955c81fe38419f3e74e55225c38f97e5e689926e1bc5e721c099ceae0e9342bd9616fd3426b2dc591" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-win-x64.zip", - "hash": "a9930d4d24702a7954c289bf159188a8ab0ff34e1d18a02561bb85cca95b480e0baec6b592e21497f894074493da39c12c07b5bb08c45a4e8f0c38ec66335231" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-win-x86.exe", - "hash": "0b0a83f1b06e40c3be8b0ba31ae5b0f604672791075ae71a484dad0c03d09375e8d0c053b760e1e7155191a283bb7c13fa01bfc34e0a9540f4be71cc3da23df7" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/aspnetcore-runtime-7.0.0-preview.1.22109.13-win-x86.zip", - "hash": "29117522fc34fa6997d5745c9e4345b73975bcf17e7562a3f0f454e3118cec5ad49a399c1b6cca9f1990eff3ca9455882af67fda926eaf5539a942c5d0922b8e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/7.0.0-preview.1.22109.13/dotnet-hosting-7.0.0-preview.1.22109.13-win.exe", - "hash": "0797a79d18455e891bca621562f01bd20a709be309b830695afbaf63d6f6479da9d049e966c7c31d32b92ff2023e82f726416182267c010157be0b9ea9bdc221", - "akams": "https://aka.ms/dotnetcore-7-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "7.0.0-preview.1.22077.5", - "version-display": "7.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.1.22077.5/windowsdesktop-runtime-7.0.0-preview.1.22077.5-win-arm64.exe", - "hash": "3cc7b849490c2300fd024ac55c18d500495d72d5b57aeea2ca104fab8f114abc60157918731816d4d61b8a70665d58a9d562e1a6368db0a28668796b97bf23e0" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.1.22077.5/windowsdesktop-runtime-7.0.0-preview.1.22077.5-win-x64.exe", - "hash": "450e95a702fd19e0cb89d82393df850680e1efe0813240d2d7f0addbba6926d3ef54bc20b390ec0d3d027e81dcb2290d3439b5dd9b0b272fb9bc4b81a088be2a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/7.0.0-preview.1.22077.5/windowsdesktop-runtime-7.0.0-preview.1.22077.5-win-x86.exe", - "hash": "ba27ce99b071bce9957ef5dca1eae99c40e8680c4d363157c75a09eb1c7d1c20ae30642df36c9fa29e225572d4b1d097b3f9fc638daeb2b38403ba318f100889" - } - ] - } - } - ] -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/8.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/8.0.releases.json deleted file mode 100644 index 1d6ff9417e..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/8.0.releases.json +++ /dev/null @@ -1,18992 +0,0 @@ -{ - "channel-version": "8.0", - "latest-release": "8.0.20", - "latest-release-date": "2025-09-09", - "latest-runtime": "8.0.20", - "latest-sdk": "8.0.414", - "support-phase": "active", - "release-type": "lts", - "eol-date": "2026-11-10", - "lifecycle-policy": "https://aka.ms/dotnetcoresupport", - "releases": [ - { - "release-date": "2025-09-09", - "release-version": "8.0.20", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.20/8.0.20.md", - "runtime": { - "version": "8.0.20", - "version-display": "8.0.20", - "vs-version": "17.10.19, 17.12.12, 17.14.14", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-arm.tar.gz", - "hash": "3a15f6539dcdab1d8965e23e852af2998ad868ddc6cee6ccd460a77d9da18df82c6b3730f3367b90b1f7038f93d66f55324e5efd0f7cea5f84dc77d75630b2e5" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-arm64.tar.gz", - "hash": "58fd19afece5e41bef0ecaf151054d747d13f908f3a627e0fdb73b85ff40bbb5d2aba85aa43ee06d515b9591cbcdd4f87ac1b4e74923dca894df9b7fc59951fb" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-musl-arm.tar.gz", - "hash": "03ba0411efe21ba24a009a380a98ae8c13fb9271f69a6086b8b986303ec0d850967d6cb6be31a69f445a93223e3187e6eb89ef7f73e682f0dcebb654c3c15ddc" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-musl-arm64.tar.gz", - "hash": "3214b7ce77afbcb87e5baaaa4b88beed543dbc5f2cdfdd72b6471cb9dcd1bf3c56cc67dea9a2150d30dea0ef0c585c049db17243d9ec613ef928509eb9d64b4c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-musl-x64.tar.gz", - "hash": "97a6ceeeb3d132c7cf2a3cb1092304c0250b376c82ca50cb0b2789e7cf3c5e04ea25c664447f9266da060e4f573fdba7ed75fc575961a883aa3330fcc795d7b8" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-linux-x64.tar.gz", - "hash": "4b801177e009ec710d5e2511500aa60bec95811add50fdc59b00a5c486840c66f00c48f272cf7a2f8129ed158ec5b887d1dd60594e612f749ba48fcf48af9cd2" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-osx-arm64.pkg", - "hash": "20aed35b92ea9e678aa00f4ef0449bafa94aee2dc405feccac9af71453ae05ebc0bec5092930c4636bc2a3ad461945c4953fbfdeab780ad2d6c576ef6adc9682" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-osx-arm64.tar.gz", - "hash": "45a728c2bab895a10f836a769ded483f0f5720068020fc35e90270db6c12851d2bab3d6879bf2122b4ca18c0afc2a578ea0c1527f8483c0572988b9e2f23b60f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-osx-x64.pkg", - "hash": "9be155aaf0e53fedb3a1f188fe5be4f6b719b47b651b46a3c61127c5c4624c6bd34bffcd3d794d2f3f816a13cd4456f571edfcaacbbf4e52aef7007425409c92" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-osx-x64.tar.gz", - "hash": "36e54fac04e2eb51a5ec86251978200007341003cdd34d21296e4b86c75c5fd16cbb1f8522d7bb557f51afae85e774634fa9a47dd950cf1858236e2d8c9c6e7e" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-arm64.exe", - "hash": "46e1757728c9c95071f5f3c50c406bba640da6333daa2e76941a2950e9db8c6df93dc52f381d44f5173c4792170709721da8948e3b76acc7fadb4c602f1299cf" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-arm64.zip", - "hash": "1788fb4eb739e4799fe7da6512e5a33f21184e6fc95c9522e5a2cc60354e12c047cde34840fdad51c5a15e151325132c831a80fcec4a9181f73c8f74dea9c6d4" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-x64.exe", - "hash": "94191e7c6d6e95f979e99ee0367aa95aa19a0a0df85847e5a8508673543143638d246115d50e9f357b66ca58408995ffc1b501c37bd0c62556a2449699f861e1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-x64.zip", - "hash": "a90b44eae62175523f5c956decd23a32f3813d5a5fb74fb3b41e6777e0229d70a6ff91fd0acc33698bd37ae66b4b9f350a87bfdf208f0cd117d70098a47d6b9f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-x86.exe", - "hash": "913c737a28d18a9b51716d57aec22960425bc529c79a58697508a63887660dcf529ebdb1f6f7e5dc10f9e86244454e5437f5db8bc2f55bda6ba487c9f60bd63c" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.20/dotnet-runtime-8.0.20-win-x86.zip", - "hash": "056f6003fa3e11a89b92ab781d92ab5736f00718a1565ba36dd65cc640a3dc0f0ff1f070310b8e518ca1246078faedb62ebecba81075185e71fd25bb12d1b69a" - } - ] - }, - "sdk": { - "version": "8.0.414", - "version-display": "8.0.414", - "runtime-version": "8.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-arm.tar.gz", - "hash": "3628da2b9438cad58d3bdfd16bfdd4befa9b765d8cfbf1c396d29a28bf99130f58f2db1658fcb16d04c24fcbc61078c5d5100dbe6ea0ede9a62732655c06af89" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-arm64.tar.gz", - "hash": "21025157705f67c9d4897af66acf8995ab33671bb6ed52117f86a1dbcdaa1afb0459c5e7141ce5c863af71738bd9cf9e270a35b6d40344a9e8300b41c1df03ed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-arm.tar.gz", - "hash": "cd5740db21778a3ac235c3815e41b97729f382d354775869075a1c738f73c0d1c9914e609c4a895f635cfb7136c4b85d71adc36a96e45c69cf1fd3320ea52ab5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-arm64.tar.gz", - "hash": "fc5e728cebcf852af77819fbcbc43ca6cd9746d33e61e3fe5d0748d3a67512387bf39d4a97183e43dedff7d1b0894e29f172adf785a7f4f7a4dca63592f2f205" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-x64.tar.gz", - "hash": "429a06013fbc6cf55ecea7ebc5c429b3cb415c82eeb937dabd7f46f028719c550185f38c97320f0825cf5bbe9ac07a7b4d22b70ef427261f1bf686a98d1882e8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-x64.tar.gz", - "hash": "bdf6b151f787ac57d393e625e8b8fc8e19ac75902e76227da736f20e042cf7ff98bfd1a6669b77fdea7bfe678a0f23103e0cace1db83e9aee568ccd6f1b5b264" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-arm64.pkg", - "hash": "176cdf529ba374e31fc269b49edbc8150c6def7e288cd01ca7346ee5a69f7f6c9296d9f2ab81d11ac5c664eabefeef252ebaa80565dc1eed2724e7b74319f530" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-arm64.tar.gz", - "hash": "8e8a452eaa2e28195eb1bb33e0d9bff31e223e47d0fa4761ba339a47a6736f001013dc121695b580883845921e3c1151d5fd4693ebcaefc07f0d6500a0c01e36" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-x64.pkg", - "hash": "5fcdf8d663c173cbd67dab4fa305c06cf2de543d945d6ecfd20e931eff92e66b8d2447f8fbc8ecffb44cbdf2f7f63ae01d56c3567478645b004d6e2989aabb6f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-x64.tar.gz", - "hash": "dfdbb8f9124a29646a55343798ce66750d27c5ebe53db1ed79dcc4f5f1785f6d4b0a588202c65277a16a368d7688c9a89122fffaaa83cd94500a47395ef584de" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-arm64.exe", - "hash": "99f443f6d6be039afdab45ae21bafdd02f4ff2c16ddf749ca3c31de64b37ab1ab642130ee65e18a0398b8fd82c096b7627ae925ee3e75e673a2f2511bf1c80cb" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-arm64.zip", - "hash": "ca49c102173ca46fa6fe0b7d65527e8035d6ca5b2687ab09e48194b0477559c03c8c49bea1c4a2c77f8d14e68d4bf26072a1c1879be617b2e70d45fb472ac68e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x64.exe", - "hash": "e0339a14f2896c9b9348c02a5eacb31033d5ddcff63b18e5ed4331d69e8505fd81592d8884221ca4890b856d36fe8d09955f63d48da81500959bf4c223819f1f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x64.zip", - "hash": "ae86d5d9aeff5be9db7e306e0f85f708a41cd611f3cbef99ce60a3fe48c19d18fa1137d8f632d959ebc2b032e594b6970850581dd0e2afe64b9842d59899d2d6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x86.exe", - "hash": "cc8cd94c6942552b4e21202cfd9b1435bc19f27aa551019b250f6e120df85ef17a8cd70bc45d6381ab82db0d8699940201ed8aac21d13dd808441d28614200fa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x86.zip", - "hash": "67468b4b3080f70fe20ce7e6728532a5237e8a6cb68e7ba96368a3d0a5ed0eea3e1062b9196955cfb28eb4f89ded6951b02cc39745ce6d2c182dec3c67d5e58b" - } - ] - }, - "sdks": [ - { - "version": "8.0.414", - "version-display": "8.0.414", - "runtime-version": "8.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-arm.tar.gz", - "hash": "3628da2b9438cad58d3bdfd16bfdd4befa9b765d8cfbf1c396d29a28bf99130f58f2db1658fcb16d04c24fcbc61078c5d5100dbe6ea0ede9a62732655c06af89" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-arm64.tar.gz", - "hash": "21025157705f67c9d4897af66acf8995ab33671bb6ed52117f86a1dbcdaa1afb0459c5e7141ce5c863af71738bd9cf9e270a35b6d40344a9e8300b41c1df03ed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-arm.tar.gz", - "hash": "cd5740db21778a3ac235c3815e41b97729f382d354775869075a1c738f73c0d1c9914e609c4a895f635cfb7136c4b85d71adc36a96e45c69cf1fd3320ea52ab5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-arm64.tar.gz", - "hash": "fc5e728cebcf852af77819fbcbc43ca6cd9746d33e61e3fe5d0748d3a67512387bf39d4a97183e43dedff7d1b0894e29f172adf785a7f4f7a4dca63592f2f205" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-musl-x64.tar.gz", - "hash": "429a06013fbc6cf55ecea7ebc5c429b3cb415c82eeb937dabd7f46f028719c550185f38c97320f0825cf5bbe9ac07a7b4d22b70ef427261f1bf686a98d1882e8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-linux-x64.tar.gz", - "hash": "bdf6b151f787ac57d393e625e8b8fc8e19ac75902e76227da736f20e042cf7ff98bfd1a6669b77fdea7bfe678a0f23103e0cace1db83e9aee568ccd6f1b5b264" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-arm64.pkg", - "hash": "176cdf529ba374e31fc269b49edbc8150c6def7e288cd01ca7346ee5a69f7f6c9296d9f2ab81d11ac5c664eabefeef252ebaa80565dc1eed2724e7b74319f530" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-arm64.tar.gz", - "hash": "8e8a452eaa2e28195eb1bb33e0d9bff31e223e47d0fa4761ba339a47a6736f001013dc121695b580883845921e3c1151d5fd4693ebcaefc07f0d6500a0c01e36" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-x64.pkg", - "hash": "5fcdf8d663c173cbd67dab4fa305c06cf2de543d945d6ecfd20e931eff92e66b8d2447f8fbc8ecffb44cbdf2f7f63ae01d56c3567478645b004d6e2989aabb6f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-osx-x64.tar.gz", - "hash": "dfdbb8f9124a29646a55343798ce66750d27c5ebe53db1ed79dcc4f5f1785f6d4b0a588202c65277a16a368d7688c9a89122fffaaa83cd94500a47395ef584de" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-arm64.exe", - "hash": "99f443f6d6be039afdab45ae21bafdd02f4ff2c16ddf749ca3c31de64b37ab1ab642130ee65e18a0398b8fd82c096b7627ae925ee3e75e673a2f2511bf1c80cb" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-arm64.zip", - "hash": "ca49c102173ca46fa6fe0b7d65527e8035d6ca5b2687ab09e48194b0477559c03c8c49bea1c4a2c77f8d14e68d4bf26072a1c1879be617b2e70d45fb472ac68e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x64.exe", - "hash": "e0339a14f2896c9b9348c02a5eacb31033d5ddcff63b18e5ed4331d69e8505fd81592d8884221ca4890b856d36fe8d09955f63d48da81500959bf4c223819f1f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x64.zip", - "hash": "ae86d5d9aeff5be9db7e306e0f85f708a41cd611f3cbef99ce60a3fe48c19d18fa1137d8f632d959ebc2b032e594b6970850581dd0e2afe64b9842d59899d2d6" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x86.exe", - "hash": "cc8cd94c6942552b4e21202cfd9b1435bc19f27aa551019b250f6e120df85ef17a8cd70bc45d6381ab82db0d8699940201ed8aac21d13dd808441d28614200fa" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.414/dotnet-sdk-8.0.414-win-x86.zip", - "hash": "67468b4b3080f70fe20ce7e6728532a5237e8a6cb68e7ba96368a3d0a5ed0eea3e1062b9196955cfb28eb4f89ded6951b02cc39745ce6d2c182dec3c67d5e58b" - } - ] - }, - { - "version": "8.0.317", - "version-display": "8.0.317", - "runtime-version": "8.0.20", - "vs-version": "17.10.19", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-arm.tar.gz", - "hash": "6ed48a99fdaa5cb80256de243f94e9a1c0c87a9201341242e9de0d8222ac3475b5507d173dbc816974a4f9d1a48ae375cb0a895b62ba8a1296350d782ded8932" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-arm64.tar.gz", - "hash": "f176417d93e3873d101a22fb9db9ccb444b01859cd1bba65e991c71000d4f7a475ee0cc720a1e079f9e605abb190ee7f45c8096503bcfdc57a347214b5ca2951" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-musl-arm.tar.gz", - "hash": "f1da4e52fa72adfc3602aca86edaeddb9bec8e9d2f1e1043b5b97567e853c673617f68414bd904517bb579ef2c1a3e9d6f0aa86da525acac60e19eaf41a5d5d8" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-musl-arm64.tar.gz", - "hash": "27859773d070edd029d3858c9e4f2ec626cbe62cb1396ba67fa2b70435c5d2366438c9e43534254453a345eeb5ea476f75f9782671caaf179f2869715d951984" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-musl-x64.tar.gz", - "hash": "957659bc00b54234836d4b97fdc885f543180c08f971738557191f87b0c25f2ae6942258a4c9f4ed3fda45b2defbdd8ac129c49f65170f3854799da668b70b01" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-linux-x64.tar.gz", - "hash": "175bad499ed14374de3d6726f0fa20d2bf5d94b20eed5e0e0388647d765cf4a6183e22bf559e21ef5f5f7d6aa7d46d20c708da3e386765438a23014aa3348c59" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-osx-arm64.pkg", - "hash": "a07b71cd4f608c7a6f16ef2a570c80ff6e288381891cd3d3c6c829caf176c4a260b1fd0c8df66be0b529b892bb7e44c6b3964bfc729a1cd99000dac05b2f720e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-osx-arm64.tar.gz", - "hash": "fd40a4efd8bc276bcd63906007525cec78edede05175fc2a9761ebe65811ee340b29890a1a1650a9666a4167fccbfcd88415853330e71fb6589a24acaf0bf126" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-osx-x64.pkg", - "hash": "75a6cee81df34477edc151ea66b52433afc2562aaabc69fbbbad11b0b58b9750d1b8dd0e3d0560b74f322cd90e5ee26a1808fa2e1c9ebde2cf78f3ea6b165a90" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-osx-x64.tar.gz", - "hash": "c27ad490a2cbeaed1e230a3aa7a4b112182744a43980525f8cf099ed680f332840955aec80dfb3f6cb8d0f818e81567d6e8dd2cff2ce942913a6d0d87f3af69e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-arm64.exe", - "hash": "3eee13af0f649ab6b6ea13322963a411e3d9094dbf50ff31ef6cd42392936813c35dff2aa8d4604ecfbcc6d34a50194061f9458b26ad46cd7f4b999bcd7c9427" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-arm64.zip", - "hash": "ef7ea3c4f512fbb75d2de1c9bc3c1e0ed4916d4125b3e8738cb1a4a2411bb642b1b81d24d596324271880d854faa28948357851c6118c05a0eae98e09734b7a9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-x64.exe", - "hash": "b101f75ea0813290c8553ce98978a5a887b4d040f10349811178f78ee869c5fcc42d98c75bac63c482ffd3e1020f5ea91449dc0effeae795c15ec259fc937797" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-x64.zip", - "hash": "091e807b7cb6d16673b0e9c7d186ebf14fdd272618685cdcf12b9b77eb828667a6de5cdcf13277f857e5319fea74cb71d608cc9977f00e4656d47bdd76e9c86a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-x86.exe", - "hash": "d027aed879e0d0da353d41763f3a5d472dace2907856f875322aeb4591340dfbe3598363ea374cba8bfc2814de38a3666598d5a34108c65b58f0ba4b6152dc02" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.317/dotnet-sdk-8.0.317-win-x86.zip", - "hash": "93585a88593bf74ee6ad1bf72fe2bd08d16c27c7be6b08f3cb3193b0d70d8ac60a48d19ec47365350a6343989bb93a9ab19b085b39f1a9c4b678b7155c5303b2" - } - ] - }, - { - "version": "8.0.120", - "version-display": "8.0.120", - "runtime-version": "8.0.20", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-arm.tar.gz", - "hash": "54e52be1d22c413946ce170563636482c8cbaf29053c6934fe3b5e55d680c0e959b145a9c536a24f078fc28f4b9a2e1adfd79edd44ed208beb2d4000dae43f48" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-arm64.tar.gz", - "hash": "4571bdddcbda1fd064219b8cfda2cc58b44cbe37595d378f7f8137b5a8eb16c3f5218d09c42069b8abd7a31f6d756bc8fd2c37b3be54dd4f0a7afe2012ba0a06" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-musl-arm.tar.gz", - "hash": "338c05188db71410762fa90ab9cde839b20aa89d280fdc1e38bdffd9e16d771dbbeab48f9ed6488f6eaac384194680eb1d2df394abd6c30932467b388ff3fb6e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-musl-arm64.tar.gz", - "hash": "c6eaf72bd4bf511210a14aa5c972eb2751176e178b3b129f77ddc6a257013c75bbfa22c7cfc2dc38a2c1eef7fb7386de251f318856fffb76b76dadda7ce5f244" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-musl-x64.tar.gz", - "hash": "b1122adcce25b423fd7b381bb876ba734e2e787aef575f17a78813d00d98a5bec04d11ba30fcdaf602d9ebf1d9854ba4380c80768e377318e1112b88d9f6365b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-linux-x64.tar.gz", - "hash": "2184f0f06e6b063e0c5adf62190f81f004c631cf9f340011e25517eceb03cd35a94c1876366e5a730bf9335d2734e1b7796cad1964154bc4dca5aba78fc6677e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-osx-arm64.pkg", - "hash": "466e5faf1f4cf6a81cf5c3b9f612355b182f9c81a3a06adc07fd350ccac8095904ab0014161e48148f72125838043dec7a0cf154d03f3439c7b425ff81453600" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-osx-arm64.tar.gz", - "hash": "77de5652c86d7918b51c20140710dc6e978ecdaf46e074163db475e43d92ac294b50df3343895ac6480a7cda9751a9fb1e2683bc381c36f0b95b1bbda50b744c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-osx-x64.pkg", - "hash": "286240ec3701b9c06c154e91c666222ac27859f6afce681fd2da407b7bcccee2d781cef1432002e53c26ed6dcc894fc9b33b5d7bcb916a4fcd5bc1d03e432e98" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-osx-x64.tar.gz", - "hash": "ef81d8dc939f8035b3b3392439538308aaf910fd1798fef5b7ccca757818a6dfc7b235b9d72dbf2267b569baa0ae8e242b085fa0a1d03845cb813cdf29132cb0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-arm64.exe", - "hash": "1594289f1bed5bed055f5e2e2a0803f602abb89730f2034c089a8e808cbb32bea39c7931d57f89f573b0f713d35634da4b8eb92bc7c24249024b9fdae80e1773" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-arm64.zip", - "hash": "6cb6c3c2be90dea8ff6c918187fa6e347a9514ac488a41d05201abdac1d0029781c7fc93de8e5b60c1fab48c9799a0744b6141b5e7bafe548b325a9f0e197575" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-x64.exe", - "hash": "9cd8c5cebc3204166f622cd977329bfa02debdf0b86557d5828e1c18e7a8ce9318d61a0c9b1619b016e9ce39180d451b3dc1f8fd9a700b70da6c54284c267ccf" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-x64.zip", - "hash": "8fc2c93aaa62a151cfbb0dae024a1fa221d60d52ff9ece889ed1b8ed969a5a9f57da7e6088fb25d3bab87a5aa497b1cd7ad372a649e7c20b30d710121cd13b1e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-x86.exe", - "hash": "d0e6a42fe2a6c05a7fd2862a851a271a4f885c45ad760f85d586f5948a2e8b85e48aeaaf44c6a457023783017b0465655f50bc1c202e63928f46a7feffdf287d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.120/dotnet-sdk-8.0.120-win-x86.zip", - "hash": "27c4cacbf4c1a723436b89e05128dab6ea33cae230b66d284990333eb33b2a06c595c453cb5feea568b11589e56b46130d778e2a1d5a13f9e80e52d2bfba835c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.20", - "version-display": "8.0.20", - "version-aspnetcoremodule": ["18.0.25232.20"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-arm.tar.gz", - "hash": "188dd1f2c4ebe8932aa325489d019236561d2219248b7f36801609b423ceccf6b5b6ffaf0ed365fb19b2da0b54378b5145d9e87af5cd95fa46fa7c595f3cbe42" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-arm64.tar.gz", - "hash": "17b01d6309899eea40200fc449cb606df5541c5802b973c21e71d7f5539b72cb35e2daf38bd9e17ec6dccfb23c3c17afdb1e7f05fb13f10701561d2e00b19645" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-musl-arm.tar.gz", - "hash": "cb6258dd5322adfb464f3d0c05534fc4fd3e2c09bff9dd84eb6522161de77ea6075ac959d3ce9a6901514fbb7dd7aa21729efc3a0a9a1b40140c11b7641acbd5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-musl-arm64.tar.gz", - "hash": "f10e19379f76611f376ed19b701dcc2a3407cd83a57d806f9929295a90153fa28fc62740f8e5c34094a955e834a704bf401b0993f2528a0ee2f5d9cf876179bb" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-musl-x64.tar.gz", - "hash": "7458ded8d275499d0192ada896b042501830c2c29859581e2e2db1d36bbc652af22f30029d086620cd1c2a7269ab94d0ebd94e2b4d599096289946ef39035132" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-linux-x64.tar.gz", - "hash": "228713f3c3600c49e7924e26dc86115c9674b5308b44514a53f670fa785038aa885ead8cd2c1c1850d1565b689a95a92e97f472d86429930dbfb114aa6020eb7" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-osx-arm64.tar.gz", - "hash": "efd22a8548e37e7d9f0214c5ac6f932c452a303807968c38c5b0e0433b36ad463d57505efe974acefe0d935eb86ebdb2f710aa9a742b7f4958859e475b47ebc4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-osx-x64.tar.gz", - "hash": "539dc54d5d2a542d56da5a33f4a36bd04caf03cd393fdc710fff36112d9cc90d1fd5f70e134b851550064bc00a91af61aec2ff4993ab87b17c41ceb75ef1b5f1" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-arm64.exe", - "hash": "80fbeecccb633e170490824bb97d6ae169c42bf9f89e41d68d0cd0776b00d9b254ca62348077c6254316800a7b00ac90c92ba6cd12ce9c4013a56eaab3ea80ee" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-arm64.zip", - "hash": "33274a0df2243bbba18fc939a4017215e1c357e4972f6bcf5c3728ffa68c1bca3ad36f5ce69715b44cbea2a1c54d20e1dd7a28e553d712a70d64294aff545387" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-x64.exe", - "hash": "2fd0c48ceb776d09ec5e53664cf85789c567d97d71180b8dad0c8291db8c6921b2335deb2cc8c514a6bdfd6b78bd288d9ce32c0d75b4495c4c760d6550159d0e" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-x64.zip", - "hash": "50a472b9369a54c428ca668edee2c66a6f8c819f5c97c8eb5ed405c74b2ae8f626d3b441d96fcbedd225acc6500a7c8007dc711ebc9defac6f4931028fe5a1b6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-x86.exe", - "hash": "d1df207f04b9773561a2d3fa5184442039911d7544dd5367606994c328e1ae474ddfb7967dabd38e40c46b245610045b97dec046d5008ee4d582cb0bc4d82943" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-8.0.20-win-x86.zip", - "hash": "3f9d34f4b8f1cac6133c6255e8a3b367686126c3e405724163d0ecd184e9e8198609a90ccf1850799fa89f87dbad71c95491610735598368d89fc728aa83d7ea" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-arm.tar.gz", - "hash": "eafc678496d5e74d0fe52970f744f079a71b75384aac0963ed6ae8a6b0c1894b7149a917c29965549d1c9d573e81fbad6603e775218253a1e91d0b491d3c6510" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-arm64.tar.gz", - "hash": "542a81df9d1e30b7719bac502cd4fd20261c6ea4fa2f3781cee9a4a97acb9bd51b6b269287eb6212016690cbfa7659f345fdf08206f232da436f0356343a977a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-musl-arm.tar.gz", - "hash": "48dd6b22f40e561a80fab8ac85e4231bd101b558048c09f2045938f76604e7b6888f8fb380279d6b8d33c82360ab8b37a2d34405c78acd05d5f3b64d495ad90b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-musl-arm64.tar.gz", - "hash": "0382914c0859160702142766c601fdd4f7e664aa3f28f813e40fc4ed5daee15230ea407deff9ddfeec32531e64f42f13977332055fe71dcf9656de6103d69ada" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-musl-x64.tar.gz", - "hash": "96fac367714da089b1b5d2af1b94ff07fcddcd568faed18928d303bc0b41aec89bf00c66a6c751fd6fd706f27eb039f38d457fac99466a0464670793f4052c93" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/aspnetcore-runtime-composite-8.0.20-linux-x64.tar.gz", - "hash": "9b31ee0a76270966f8deccf4338100544ddc9587f00b4578893f3d0d97cfabd3a15ab571becc36c19464524782e1ddedf2f89e0eccb50519a2f83ef0945871b3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.20/dotnet-hosting-8.0.20-win.exe", - "hash": "8ec9ba9333b4911c42502b01ca752bb68bd461e5fcc015ef908776b0b93da0cc7860bbed776d535c694bd0f47a86b7f5c0d74a87c100f77b8ccb36d6e0ae8b9d", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.20", - "version-display": "8.0.20", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-arm64.exe", - "hash": "9d38782d667b24e2ca89cfd9df972195bf885b2190de814ba401237b183867f8e4f6a27511ab9bf95b621aa79ba2c738cef39fcf4c62f6abe37668f062ae0bff" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-arm64.zip", - "hash": "e3b3d4069828dd267da8b9a56489dc85a32f9b54857a00a582a6e98049bc0217ad7862d91980cd13c178210d1f6e776d0969ce0de1a7a022ed57685f5b687d77" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-x64.exe", - "hash": "df02b7570252b00d12d31753abf922abf6b176480fbfb68c8ff3c7fd3d09248ddfb223ba228926b3520e6619c02905bb5483ad5a557c90df3ec0d214b91e006f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-x64.zip", - "hash": "54bdd4446c6d9195886f44438f59d6b9c84ca82e20113612fc7d0acb8fb88f39fcafaca35b348ca5430fae8b086242f6877b47365165e505e1a4ad19fa6935c1" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-x86.exe", - "hash": "5858242d690dc41cc8ffe186e002de6f23fbe8d650618ad96bcec3ba751baf3373d485736f1bad60fae20d2c7cada9681899f61d9022c4c0110bce31a97102cc" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.20/windowsdesktop-runtime-8.0.20-win-x86.zip", - "hash": "e9eacd6f05415969704942471f62e5fdffa2d35e7c71fdbea20223a0bdbfd07893c836af0eaa6a7e5bafb891cba442392e00b3a93c692d86c982191e8ed3b3f9" - } - ] - } - }, - { - "release-date": "2025-08-05", - "release-version": "8.0.19", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.19/8.0.19.md", - "runtime": { - "version": "8.0.19", - "version-display": "8.0.19", - "vs-version": "17.10.18, 17.12.11, 17.14.11", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-arm.tar.gz", - "hash": "b2ab05f6a29cff2b8440211bc591af0930fb1e9d082b180b95e61b7d4e1b3f79fd2a729b29baab71148780d92c64618ecf8c56a8cf3aca622afb29f487701d82" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-arm64.tar.gz", - "hash": "13f5607daa2eb0f9a0fb6a36193d28abc9454208af5573da8bc5fef5cbeb70b187deadaf6a52b3d46fdcc59c8567db77c293775cfd76a43e81ff99c4b425058c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-musl-arm.tar.gz", - "hash": "3d5695212ca36745e3a9e94f527d24ad585d38bea171f79cb47225ff0104c7c6f82815c316983e12be5426ab92b260755d3b44de1447c6ab2256326e85617213" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-musl-arm64.tar.gz", - "hash": "88e2d81ca6ec52d07fe710372d064f2a30895735c764d2d9adc148e4e47ffc8aa37761032997ef7d317c29ebcabdda9ca0a99dd1fa5f17b9ec96bc6d34a8863b" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-musl-x64.tar.gz", - "hash": "36fbc5edeaf879ce43044e1e1000207f229f2f12bee4c3521130476980091c832a7410dcf5f3779de2134987aedc2fa3f7847dbf9a313d627f2094bfbcd32a16" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-linux-x64.tar.gz", - "hash": "0f66ee564fc9a86b8eae5403f431af59565e62f5eb59f6e50377e72c58ad24552db3b72ecfd824b850a4234faedb213983b89cc479372fc436a553fb086bb9a8" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-osx-arm64.pkg", - "hash": "7e70f110a39d796b703d4eb50c1c6df6ef4fb51397b0801b10c7fc5bdd73bd159575807f8e72a20d5ce9fed71530447302dee37307899f8bd400da312b6cac8f" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-osx-arm64.tar.gz", - "hash": "14b46a52b82a179cc5d1293f4bc0968051471f0e62b37e3525a8f7411d2990fe0676ce0e17fe50b2b248800eeb3d1bd9bd83bec3a527b670d825e1a4c43e8f8e" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-osx-x64.pkg", - "hash": "08723fe16b6dca78bfb5f567a6213ba3ca46de3651fd18d515b8dc9fae814aebe09252e118188193b73c25a71c1d6db59f5cb720fcd1858120dd180fd7dda207" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-osx-x64.tar.gz", - "hash": "bad3558c0a886dedf933e6542ae7b41b7061236ea144170b39e0fbe9b615ba76d9f0656ddd1b9be89ef932f894ede9e1b50302ed093ea0d8a00f04ae61364bcb" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-arm64.exe", - "hash": "b0d3dfcc0b5a7557e2c0afb06cec9346dada3ed93160ebbf5156b4075d3a5e373737546f3c617813195ec25006f2da8e55b5749f1fa8e1d3628eea590f71a145" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-arm64.zip", - "hash": "24f436120309f3c2a780441b393770b147c4d3555cf172d2c49757613f7755b03d8a7cb7153b37eb1dd5fc4a2ecac9107abe1b270549cd9bd8323b8998727ab9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-x64.exe", - "hash": "a8836b7ad6e2b2b8d54aaefbd00ffb6a332c44ad54076ad123ca8a91d37f6f700b4469d16a15d0cab17d6638a05686f641f229518d956045b4803637b7abce67" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-x64.zip", - "hash": "5d37d9cbe9c7dea38c1a7f87f48f65828980d9858e8610a878f8e013518b326fe330145af410516caa67630a24e9cbe13f3604f79e284e058b29e6dc9c6479da" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-x86.exe", - "hash": "c6caf1dc3da2688e322481a314c8c0a55096338aa88f2c5d32293b62733a9b8e587fd944689090612099e029f9b3244137f1a3ec34308305232aa49126fd07b4" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.19/dotnet-runtime-8.0.19-win-x86.zip", - "hash": "b0155454154bb037d2ef14f217a99e6a0fe75766c2ec0e80b9dadf22d92d1b687646654aad23f77d37f1f08c0700d8e26c538cfb1d50ecb1fb4a3fc6ee4e66a6" - } - ] - }, - "sdk": { - "version": "8.0.413", - "version-display": "8.0.413", - "runtime-version": "8.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-arm.tar.gz", - "hash": "a02e1ed410d47e9b6512267acbc0cd0315b7918617ac40dccc14ec7789a331b67690f059f4112bb879633fd6f15645725dd9943367f7f13df3edcd79fa1c2846" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-arm64.tar.gz", - "hash": "7972e2738b8d1c6b4f32f53ef94ee7cbed10d60c83aec190c4e98f823d37aefef629ef9e3c4c8c26b042fe81e0a34a8b26d6f812e0c932746e66acf95183b87f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-arm.tar.gz", - "hash": "92c068a2cab47f1951e4cf824f633bf8b6ec85f22d32882e0ec943c2c3d46a394603cc0c36748b829e59e72fc6d7233c53156f0cf1398e94107e0f7008cf04f4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-arm64.tar.gz", - "hash": "1380ddfdc715b831e459ee48636d8a2a89aa6c34857e4a428a63effcab40f88cf6c72a076f9b210c496c39bde24dd17c1db9f7b110e724174e39fb748f8e4b50" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-x64.tar.gz", - "hash": "1490e8061d8665373506db3cbbf8a30b7b7d99884de02d4f6e7ace5852e16a4f9e061a668abec1cc0af21e4d5a3fa1eee804b60d249f7d568363bb9ee1abdab9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-x64.tar.gz", - "hash": "f173346751b2922887bb2fb1eb48fc88df9ac62cb7e8eac697f9a4cde17ad84f926dd02fba896968f1425b566fba3127b781dabeb74a088ed29a951d427e178a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-arm64.pkg", - "hash": "5ec3b444fe8157e6d5758fa12607d451db66408e4c28e0e873b25ca7cf8a23a4e84459833a5b68d928a6475d79ed82d95f84c92be1d329b86606467dbdb9d5ce" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-arm64.tar.gz", - "hash": "fdaaea5e7fff2badbfc894ba117116a7b88a8cc04577ceae0a00b4d8c9aea53724b3a445df0d28c8b1771ac92b62b9cc68895c98ff1791eab6f8a3cf19bffd01" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-x64.pkg", - "hash": "dbf45d62b9ee13bb625c3367a84b3cb5bbd94cfb470c61c2cbb29c1b775f3f24a8766208c8a63e5e8006a945f1dac1758604e98d616575f9f7167b673045a5ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-x64.tar.gz", - "hash": "ba938fcafa343213c2e81936e4c33436cd15b2bdcdebe83d7d005dbf84e8f08eca4dc4a886152cfd0c842f17816367e3efb81313fc2ce4bffd19d6aedf45d322" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-arm64.exe", - "hash": "fdb454f72253e1304c238ae6d76991d23e65369e261a36bb7213c0d1609675bfb1aa058373bae26dd09fc671acfe327f86d199414a1193a6f10a0cb6e9819b7d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-arm64.zip", - "hash": "01c652ad09ff2442b63e33b58db68e08bcf3ec74d160531f7c6155d7b93d13ae3aa04655b1ddd0de8de7e196c33b54bb6120fb1558aac7afe7dfa4b4ad7139c4" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x64.exe", - "hash": "10dd767b032882de4b55ee77ba567366645446988a05fa7916bb17e9b22781eda15e0c91c645e1b1b7f60ad1435337cfc321f7ab66a3504acd0c20d60e36bdf8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x64.zip", - "hash": "a2fac0881d963c05b9844e5133d71b3008a58b2ca251befbc617dd1666ff74d9496327f87037319f49f49e89c113038020027f158bfc71105d4300e1bf446b35" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x86.exe", - "hash": "5144581cc096752872e8d55e872eccc41f6a188d0a73ae1a3a5b0c5e2054c2415f03724ebc43c1f2f233bee7219dab2b8f46942a88cc1e330a752ed6b8de9366" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x86.zip", - "hash": "9135316ab8db465ce55e5baee65e3259ce8a575ca27daaa0b6e51b8d224bc4ffb0054dde76e8c38fac6b3adc70e0fac0a35b74c80eae2cc48766fa986c7f2d77" - } - ] - }, - "sdks": [ - { - "version": "8.0.413", - "version-display": "8.0.413", - "runtime-version": "8.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-arm.tar.gz", - "hash": "a02e1ed410d47e9b6512267acbc0cd0315b7918617ac40dccc14ec7789a331b67690f059f4112bb879633fd6f15645725dd9943367f7f13df3edcd79fa1c2846" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-arm64.tar.gz", - "hash": "7972e2738b8d1c6b4f32f53ef94ee7cbed10d60c83aec190c4e98f823d37aefef629ef9e3c4c8c26b042fe81e0a34a8b26d6f812e0c932746e66acf95183b87f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-arm.tar.gz", - "hash": "92c068a2cab47f1951e4cf824f633bf8b6ec85f22d32882e0ec943c2c3d46a394603cc0c36748b829e59e72fc6d7233c53156f0cf1398e94107e0f7008cf04f4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-arm64.tar.gz", - "hash": "1380ddfdc715b831e459ee48636d8a2a89aa6c34857e4a428a63effcab40f88cf6c72a076f9b210c496c39bde24dd17c1db9f7b110e724174e39fb748f8e4b50" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-musl-x64.tar.gz", - "hash": "1490e8061d8665373506db3cbbf8a30b7b7d99884de02d4f6e7ace5852e16a4f9e061a668abec1cc0af21e4d5a3fa1eee804b60d249f7d568363bb9ee1abdab9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-linux-x64.tar.gz", - "hash": "f173346751b2922887bb2fb1eb48fc88df9ac62cb7e8eac697f9a4cde17ad84f926dd02fba896968f1425b566fba3127b781dabeb74a088ed29a951d427e178a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-arm64.pkg", - "hash": "5ec3b444fe8157e6d5758fa12607d451db66408e4c28e0e873b25ca7cf8a23a4e84459833a5b68d928a6475d79ed82d95f84c92be1d329b86606467dbdb9d5ce" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-arm64.tar.gz", - "hash": "fdaaea5e7fff2badbfc894ba117116a7b88a8cc04577ceae0a00b4d8c9aea53724b3a445df0d28c8b1771ac92b62b9cc68895c98ff1791eab6f8a3cf19bffd01" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-x64.pkg", - "hash": "dbf45d62b9ee13bb625c3367a84b3cb5bbd94cfb470c61c2cbb29c1b775f3f24a8766208c8a63e5e8006a945f1dac1758604e98d616575f9f7167b673045a5ab" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-osx-x64.tar.gz", - "hash": "ba938fcafa343213c2e81936e4c33436cd15b2bdcdebe83d7d005dbf84e8f08eca4dc4a886152cfd0c842f17816367e3efb81313fc2ce4bffd19d6aedf45d322" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-arm64.exe", - "hash": "fdb454f72253e1304c238ae6d76991d23e65369e261a36bb7213c0d1609675bfb1aa058373bae26dd09fc671acfe327f86d199414a1193a6f10a0cb6e9819b7d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-arm64.zip", - "hash": "01c652ad09ff2442b63e33b58db68e08bcf3ec74d160531f7c6155d7b93d13ae3aa04655b1ddd0de8de7e196c33b54bb6120fb1558aac7afe7dfa4b4ad7139c4" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x64.exe", - "hash": "10dd767b032882de4b55ee77ba567366645446988a05fa7916bb17e9b22781eda15e0c91c645e1b1b7f60ad1435337cfc321f7ab66a3504acd0c20d60e36bdf8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x64.zip", - "hash": "a2fac0881d963c05b9844e5133d71b3008a58b2ca251befbc617dd1666ff74d9496327f87037319f49f49e89c113038020027f158bfc71105d4300e1bf446b35" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x86.exe", - "hash": "5144581cc096752872e8d55e872eccc41f6a188d0a73ae1a3a5b0c5e2054c2415f03724ebc43c1f2f233bee7219dab2b8f46942a88cc1e330a752ed6b8de9366" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.413/dotnet-sdk-8.0.413-win-x86.zip", - "hash": "9135316ab8db465ce55e5baee65e3259ce8a575ca27daaa0b6e51b8d224bc4ffb0054dde76e8c38fac6b3adc70e0fac0a35b74c80eae2cc48766fa986c7f2d77" - } - ] - }, - { - "version": "8.0.316", - "version-display": "8.0.316", - "runtime-version": "8.0.19", - "vs-version": "17.10.18", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-arm.tar.gz", - "hash": "27e966a82df7e358f2e44e8756dda94f863c3f702f380e1e7bdc15e2847cd5907c98fdabf59b6c1a6dc6acfe558ed3372e27fdae1a55e2daaba873886db18d1c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-arm64.tar.gz", - "hash": "016dedb1cef90facd6c16095c094c244cfa7028fee0a93f270e7033a3a4da224dd821e8ec563df7bfa55500497c01181cfb58b8089eacdf9751eb2e852ced9ae" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-musl-arm.tar.gz", - "hash": "182240a5959a9c14b13c5814fe12c4ab474045889f3cafc6a9a1f2a13fd38b1cfca624351aa964b5f960ffcb5c44bb98129ef2d9eef4454a7feac0175383e49d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-musl-arm64.tar.gz", - "hash": "1dc160a703dcc81e1af2aea42f414191a338476632219a762536c1d2214fe320bde5cc7de05b290d9a27b1871efb56c5c1def9a9776c4101b400cdd431c9e946" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-musl-x64.tar.gz", - "hash": "fd44c27c328e56049297b2bd5d7aa1fc3241f8677808bf624f8aa6955bbb7b202d4969404bcd8134adda5227289073fbc691a6c3209cd65a1ed01b4509c03a48" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-linux-x64.tar.gz", - "hash": "e41065b03a45a1c9659ee44b7ef105a5d1278a10195adab1a6f0c8a7861a3b0d586eb80f06b71415f4587eadbbe304fffaa86ac02d52b4088705aae845a661e7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-osx-arm64.pkg", - "hash": "c7824617707cd1cc893c483a1834624fc8976cd1ca5654837ee1d86da9faffbd2d968650ebf696329b83f4c5f0a1ad0c48d27ea2270e060b6e27e06f51bd4613" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-osx-arm64.tar.gz", - "hash": "46cdd68a6c7995d5fa8a822b7bd4d87381656b15e3f5a2358eb50fa3cef7952cd70ecaf282c3a790bf9c93e99669c761774d8304cb6812179887afe6dcbd7bbe" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-osx-x64.pkg", - "hash": "08444b8cde3b1c26d42543444171a0f4127d7514ef7ae0d8b1a03a2f19b234eabedfea33908d7666b9dd5547e197991a510e2dc95e4ef8d1309ae88e3071e06a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-osx-x64.tar.gz", - "hash": "b9cf058948d5bb3e7031fa833f52216a23dcf40da60f7bc754b73156708573d5868f2348186a3bfab5b1a98341c6a55f833ec8b0c367cbcd147b0122a7d805ad" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-arm64.exe", - "hash": "3da6b11919de88c30df276dcd3ec59cbe11c3f05fe7071efa53cedfd73f4e4a13fb10b642b3f06e623edfd52733a6331ad1a5d3ddfdbb0fae58fd2955991a904" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-arm64.zip", - "hash": "51248f778be8522b127051932356b2de09ee8548136898223a811b538b63334ee8b45d1fe237a7c051fc208d07abf463ba53643b3a422608ac7e8fb3d1f85266" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-x64.exe", - "hash": "01a8f0431a13023e154ec727a3fec8c50e52316c7450e8e97d0f1a8161ddad7190c154dc59af929ece739cf608064c25aa2d3d3101193c44c68c9069f545cfad" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-x64.zip", - "hash": "cfb55c2a43adb2e8b44c9f18979ef8a141666869c44d99d8045548fb361a956a6224c24741fcf3d0a96b8867da55629f68aa21cb161937464fdb0e9c2ecfd3cc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-x86.exe", - "hash": "6e4a2adefccca54d344eb71fc45d33d27eaeb158f1bae35c4ca9f20a516ba4a2c1da3086d20234f7f7a1714ff3db4e46ab1499c475c57402c3ff332b4cec44c5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.316/dotnet-sdk-8.0.316-win-x86.zip", - "hash": "0602437434ad31382961bd79031a9ef1544bdb7172d49d1de790ba0797d135e1212db149834c1d9246d867f0ec988e13f8d56ea4333ebcf58a2fc3a403c5758e" - } - ] - }, - { - "version": "8.0.119", - "version-display": "8.0.119", - "runtime-version": "8.0.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-arm.tar.gz", - "hash": "5e529d15d49fbd76c988c48be332abe402ddd54242954240c2f1cb62465277592e8cc7634f19cdb1e4200582ca777a20bb761cf8fc98455e5aba9ce9e38d138d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-arm64.tar.gz", - "hash": "cba4154b551c182b1185cdf89a56ff52bb46a135f34bdf641ab1340deab23ee6d0f24c070f0b7a5ae20105d71dc315117f28ade2ffa32c2242bdb2e9c8252ccd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-musl-arm.tar.gz", - "hash": "5d55c26715fdb2b050244e1365e5b7159d206cb4ecbe05d40f16e3b586d5a7fbdb490412af721717bee61ee17c16d709c8e518dd3cb0c51c6d11c290a769a0ae" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-musl-arm64.tar.gz", - "hash": "255e4a1709482816021cbc2b9fb702dc11bd9ee7a4b1ae8cdd89db576d363399a80f616f7edab64577ab34dc067f605ecf247606e417dba4e3c648ebb4ea6949" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-musl-x64.tar.gz", - "hash": "1ced38d2a0b6bd560975c70c887068b64e09c80523959164ff05f0d95694a9b7be73f8eb02decb9271832e9204b4466434ea3e2c88aaba3b9fcac8538336d4cf" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-linux-x64.tar.gz", - "hash": "2ffec3380a2ac23e801c7c7507b3962ffd232911ad06024b74b97ddacb6f46804d8f6319eb4c7fc7b025f716777d47110219caeebc30a3b1fe9223066ff8a8ca" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-osx-arm64.pkg", - "hash": "ce1944c2716770020d3dd596cf1bfde81cc1872484cd088bb2b2f3a298fe33d233127cd131781875c9968edde23c131b3363584841a662f5032df0cb0cce602e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-osx-arm64.tar.gz", - "hash": "34d1119aa7bf9aacc42606993aef02d290f5dc1e6c9e6d9a4db09bf492117bd1d7e15d50b7b869f00954cd4aa97e897a1e85ef45ef52efd4ed2e82dd2809e980" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-osx-x64.pkg", - "hash": "89f1750c824988f26c2ed61ede1dd941b53c83369f3c0103154af79338613b9f846a1f82df15a801496cc8f93c3b724ef42ab81497c6a4c1df37eb0abcbbee87" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-osx-x64.tar.gz", - "hash": "03d1fa28e2439ab4d20a81518dd396392952f340380335d0f62f094560e6a22431d469f45037740adb807d7c024f4280709f975e051406b4769df2251a81ddf8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-arm64.exe", - "hash": "7d2a73b0fddc72a0baf4da8397a106bd1bb654553407deb726a0041c5c88f8ed1e00fa9e5424f4d90ef3f83988c38d12987bf0ea31e629b6f49b5b5bea2d89ba" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-arm64.zip", - "hash": "c29a91ec742d7237fa8dd7b73d1a226929768a9b26debfd7a07a5ea6aa1cfb956cc813af7407d334dfd2916ce1e41797d022c7341b8800f6b8084d7a9a201b4b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-x64.exe", - "hash": "b8116845c3acf4589a841d7cf4ecd2732cc056380c095ab2dd3098c2ede8024852d92129278e4ff6ca1a103c6fce386b0bc064301522f94039a085d0ff8135ce" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-x64.zip", - "hash": "00698dc1b577a6b97c2b4dbc5540882dfdec9bb8a8d70f2da7f29104372e6d7a8f0f7c39fcf43e2ca1981a3b03809d8fb95b3a69080235c8f4b5539af2ae0b9b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-x86.exe", - "hash": "1f2775ba86a9a0223e61b9d6762dc9a77d5943a836ee4de07471cbc05b1f8a21064a61428f206cf2d6b9357f0b76885ceec7901b89457f8ef01e1a39aee76637" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.119/dotnet-sdk-8.0.119-win-x86.zip", - "hash": "f9ccad08d4f5e868d06aea6d150f7bbe2242154c1751f1972ad9f3a4338fde2e02a276ec24ae063e34a8180db2fd12c678ececd229d9848856ce8d2acd02eb25" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.19", - "version-display": "8.0.19", - "version-aspnetcoremodule": ["18.0.25203.19"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-arm.tar.gz", - "hash": "6b4afe7dce6ab2e7062cb485c46126dce9cfdb0003721e0d8886ccfaa9a6deec3eebaf8a4de69ebe49463940c6c8ef5addc4512d9c2263d81710b934f41b91e8" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-arm64.tar.gz", - "hash": "cc14503e5c1d94a333fd8048f628760f6df2b2acd4e0d5ef465cbbfcc13517753d6fd5b1d5fe4b38b07704418a713e1338005453a7cbb8fb3f300760d00fc6e6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-musl-arm.tar.gz", - "hash": "7ce63c0a80420c1ed3fb2958cb4a23d74ff25efcef0a678ff771f82c3539c9283fd6dc55403a0ab4c95cba2806a76e0c8d7864bebe98d8914fefbdeef9704926" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-musl-arm64.tar.gz", - "hash": "4c656e8ab04882f74c91f7931174f083b26ed90478bcfc90984b1783d4fca6beb1d021ec04469fae610ebb02df73fbfa58af3df1e8d52cbf5e068cbf34188d21" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-musl-x64.tar.gz", - "hash": "ed899d524bb9a24d0c3cafded6d0f46ec620857f3d8b43aaf089fe8606fa86c25e85d92c5fee9a016d41a75dd76c303e2edc2d3393c0eb4dc386c5ae3634c22f" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-linux-x64.tar.gz", - "hash": "9503fe84627716cb9df02c648e34971c6ec4d44686f213bc6f6bd74bc54ffb41ef272fbd2c8aa3f0a309b20664796c12f9c77b137015f84581ac265af2f21687" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-osx-arm64.tar.gz", - "hash": "0ddf1c7498c528b2098263b3d30afaed0b4046aa2b43d5c7a837403a1e558335c1a958aa859b498dd2a253af39d41f181cb269aae91cd8dd103b64a0609f9841" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-osx-x64.tar.gz", - "hash": "9ac20eb6a62615dfb82c5657c11587b621f3e7f0c7c6dd3111df061482092d63c1cb54fd29adb0fe43a58c63eb2ca8ad322f7c722c6e47b24b78385feb93ea45" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-arm64.exe", - "hash": "e82c942b571e338200634e36f2ed5977e1146313ab76abab6059fff6922a35033192a44d8b1aaba63e3180bed002b017dea78038e09893ec8df033ae832f553b" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-arm64.zip", - "hash": "73edd1673d076a3a73f0c597525a125daa105e17c22cf8e1d04bc22f51e1c0b5c9e27874435735085da8c948789c854fd34f0ae8c01e901a7a3643c847e2f096" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-x64.exe", - "hash": "6093b2e8239b542bbfbd4b67c6c20e66f17d15ec903f2ff04a3db9d115bfb3281feaed226ef5962712bb28a39008d6cfb965f81360a984b75f34711f0c83f470" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-x64.zip", - "hash": "017f291661297e88df5d546898277526a979e97fe21d65d03923cbf55e6fc4a207545846c26c492d4117f4e7f69e7f0c8e5cd5f3bb418a83efb76aa6dd9f10a0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-x86.exe", - "hash": "82fcccacfe56856bc2c7d20559539a593fea024a206a2dad93e554288e587f9b0d4c03c19e4c9c87d5dd8bad54edd42c22f8b4e7fb22cf6f6c358869232eb1ea" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-8.0.19-win-x86.zip", - "hash": "4f32bd9614d13172731ae726a065a0bc83fae7be9dd3fdc301a66be1b0b57374261b94d50715d2ef5a1735e5085214dc8d84be6ac3c902e7a368242dbe866a5a" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-arm.tar.gz", - "hash": "d33565780a255d5b0674bc59189f0ed6fd504745ee29ccb77289a61740c617eceab6d17c5ef88edacc809f5fc4724a26ed5dcef68929bf2a0364e5f1f4712fd9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-arm64.tar.gz", - "hash": "d063c16e84e9fd9ffb81ae023b49849e7207cd024fa6c151e632963ce06388de1de2fc827ca9e1a3126a1b1ae7b58a44c222883ad8d0e4f04dd8efe3984b52ee" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-musl-arm.tar.gz", - "hash": "e45730ad71275b23189eaabd2973165f68abf3fd62bdf68e009fea37d6ffeae8567a94151bc7046a8f327476479d04a6739f8bffd851ab96bf5ffce8ada73161" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-musl-arm64.tar.gz", - "hash": "c2958153531c4850be840c88e53642ec344f241e107a25198c2b36acaf111955f32c848f62251eb48a95820dbd0370bd745b3ada8dd13fb2313900678d3419a0" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-musl-x64.tar.gz", - "hash": "df26e8b98a7b554aefe3b4b718966cf91a76c8bca0942a559b468fb82e8d2eb49a1cc8a67285a176fe6b6fc21468d15f35c672d7c35bb9991db9b1d0d5b36004" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/aspnetcore-runtime-composite-8.0.19-linux-x64.tar.gz", - "hash": "e8c9deb1fa218e23ac0935ac466843d38a7197043040ef0e1aa0407aa8772a1bc94d635fe188a371c6b3e1c034203a406a84bd9b7290fb0e153a3b71cf52408a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.19/dotnet-hosting-8.0.19-win.exe", - "hash": "b4cd74651fc427da5f13e21d77b630920ce73eeee849e06d89a3132248c5c8985b05fe6ab1a36f7ae5e2a9fcfd671b1e33489b34e15cb0b839bb63456259ef96", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.19", - "version-display": "8.0.19", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-arm64.exe", - "hash": "dad6049c6a49799db74af708652eefe0030d80e7c7c35329ed90e047d4ef8d24d56ba8db2cf3f2c97992822e131851dc1fafbd9fe06665149957db0e213cd349" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-arm64.zip", - "hash": "fc0166b155fc952b71a93b1bf67a0587489e4bd2219d5ade4ebecb3725f32b2a6389d138bfe061d8461c140e22aedca5f94ef3777caa3fc57f37f63698aefba0" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-x64.exe", - "hash": "73395ac04b47011ae3de694756873bffb68d65cf885b60c14ae0e7558fa666b8bab0043a8c6928148ff36a2208cdcf333a21e0960cdaa127d9e752b21891af22" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-x64.zip", - "hash": "1f23b403749937dfdb213abc11cc6fe39f8fcc3aeffc73fea18c94ba8dd4d1f3b78515cdfb14623493f60434c663281f9584c1a7b6901a1eb352f8a8b3f84a52" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-x86.exe", - "hash": "ff38599e60157af8118336d623face98564244fd4b894ecec7c119f53d72a3674cc8dbf0cfb5856e5a25241b59a5622d7acc8f1ef29b2ad4ddb693a3069ac0c4" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-x86.zip", - "hash": "b6a50170bedb35e297adb25023c0424d612c1bb807b7e471d3a0306ac261eb0850e5a4c2ac0187d331b8f77070bbf7b91623a0db0158992a753a461179f5c8ea" - } - ] - } - }, - { - "release-date": "2025-07-08", - "release-version": "8.0.18", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.18/8.0.18.md", - "runtime": { - "version": "8.0.18", - "version-display": "8.0.18", - "vs-version": "17.8.23, 17.10.17, 17.12.10, 17.14.8", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-arm.tar.gz", - "hash": "90cc6bd368ec1ab725e9e814e998c3781ca5df67e2833345c052ed17106203ba1e88cf0206ac7c33f813d03f3164540402dbcb8be0d36bd8fbefce3b2df04d4f" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-arm64.tar.gz", - "hash": "7d96a090a2e56f393fc32385da1451535dbf4e4d98edc192b1ae6ea0d097e667a059828c7f2375fac6bc275f8db1d83f5cd262a71fef6c28241caae2229baa3f" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-musl-arm.tar.gz", - "hash": "1c5ae15a547e2991071f38e69ffc706e93f93c241bbcb18918157a42db528d5e5a1f3ede01e9cf0d171b1f325cbde6dd3747c42c6b0ba45bc55f902a9705a47d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-musl-arm64.tar.gz", - "hash": "3cafeb136c6df2e45f69dfa641466013f51a730f154354901b055526c44dbd51d7e001726951d1524538706664e7aa6ef5e451538ddba8317989c229be8c4858" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-musl-x64.tar.gz", - "hash": "aa02e18a534593922b4f06efd0b447a70170ad78f4ea31b08923922043dae1b75801db8b04b49d8fe24ecacf46c8541bb2b1466298608c64612e94e4d0e5360d" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-linux-x64.tar.gz", - "hash": "15d754a01c93183ea98bd608f2691193c86f284ec7feddfc810fad919e2f7ba20d41e1de45789fc1d9ac9fcd8be82d49cb8fe4c471dec892f91272fea2e53f08" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-osx-arm64.pkg", - "hash": "7003d9f57a8fc221657e013f32d9c7145dc89f7a146db5f35b3a8262a29d520a8b62bbab0de87654ff48624cf936e227df1b86d01e2d868c4c7dbd2e3e4f91ef" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-osx-arm64.tar.gz", - "hash": "ea793e2503b40ecf56d3bdfc0dfc21fc899e18a94144bbb50ff64b3dc1f38392a7bd2f57f61170ecf3afe733bba0fc24c5d0e00057b7df2da8f26fd7f69612c9" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-osx-x64.pkg", - "hash": "d2f7554c36cd41f0c0c8f83111b6b7d40eb644923ab3614808f9b993bd7c78146c1d83933763a3a82718587d23680d4374df1f1d939a2cfaa99bf6cfb6450fca" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-osx-x64.tar.gz", - "hash": "cadccad42290c00b2914f5f146f6777946f905a7fedf558c104ec6ec6ac31e2e34ec0069fdeedc357f5a69165ea31bec1193f024d706e92866a31edaa74d9efb" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-arm64.exe", - "hash": "87d5fedbb4812f26ad3a62df874aff2af397a9cf6a85db8dbef082830feac683cbc45dc4bdfb028afd0f86d3271aa2eb849053801ab435f4e46136030d77d789" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-arm64.zip", - "hash": "c7495b643be567fac7d4137bfb8c8de2967e0c74af120260ae0d54b69dc6c046d1cd11f0b57a3a3c9db2b7a87d0245b9aff30bd40e830826a672dacd600db45f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-x64.exe", - "hash": "4bddf4af2637d06ca978631c89044567f76b3e806c8f3c77224a2e7fd34fcdc7a8732473e90457d73e71ad1ee1146a2d3b4168d39238acb30938145328d524d8" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-x64.zip", - "hash": "3c682a7fc0c35b666cae065c8775a0151875c91f12ff12bcf9f1cac2172eb9d486b04036734d6d812d728b8f3ae7d6f72fc063fd0da76c1f35d0e27d07b434b8" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-x86.exe", - "hash": "a7602ac6e9c6a1a104f5309c436497dd6937ab15d922291d6945d6a4fb04693eb129710d7f68404f0521f395fcc83e4686a3a81686a2e3ceb1e2278d58386140" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.18/dotnet-runtime-8.0.18-win-x86.zip", - "hash": "e9d8433f8d0eed0e955e7834dbb171ea3c9d8b8ad1309cbde24da968784abceec56746ff1f9466c7dbf06679f729a453911670eac123abcb58cd3add0b31f2fb" - } - ] - }, - "sdk": { - "version": "8.0.412", - "version-display": "8.0.412", - "runtime-version": "8.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-arm.tar.gz", - "hash": "275314440cbf38a379311cfad011135797e0d6628a01e0f94d0889f4db0d1c5cd9f746b847f5a51d2ad5a5d269cfae76945c3f0497d9e158cc88baf9d594d0a1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-arm64.tar.gz", - "hash": "0549d24447b11d4bb4206c812f5d113bf6cce3932999094d5ebc118dd0cf95da85aed4fb7ace942aa683b3970a3c253e7db9de002027c418854f88354879fcd7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-arm.tar.gz", - "hash": "cfbf6c45999db8971a26ae27d3620910ca5dfb62a975f16b5a10aad85c6119de6d909347e16fdb2ab43963017379240c4f7c046be81bb751aa924d9d25d9897a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-arm64.tar.gz", - "hash": "e683a08c370de2f29643fa3721ada15f670978402e3662741bc256ff28cbcb672a3546ac7baa82521ca7cbca25d752733c8490740ab3b4ae055fbe3a547d52b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-x64.tar.gz", - "hash": "c3dfbbd26a699b0ef76dec4b61be7b3092dd25b26cebc12b0202fa6146fd836760cc1a251a2964091507bd42d96722cdf7588b366261ca7d7ea9e849b3ccdf1b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-x64.tar.gz", - "hash": "48062e12222224845cb3f922d991c78c064a1dd056e4b1c892b606e24a27c1f5413dc42221cdcf4225dcb61e3ee025d2a77159006687009130335ac515f59304" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-arm64.pkg", - "hash": "05b9ecdccae9fee7b5d891ddc9b255180667360786f522bc7b019e0146cceeb27f3347ecea66ce910b772559a3ffceb5552771bf4ff0aa95b2cfd78006938ff0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-arm64.tar.gz", - "hash": "1027b5069c403b441cccfb7fc0f82584aa58220529861a1c4f2ae91c6f30b19ea84929de7658de92f5ccba57504fb6e2b28a760376e203279c84fab354b9f116" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-x64.pkg", - "hash": "cbd56359965f918ded5fd19033ee9561b1c4a6450ad60b3c53e94e04ba30d124e7a5aa3c9d0da67b435be5f60563fd027918e3c2e01b5a1445a83c11e1be7830" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-x64.tar.gz", - "hash": "0050a2ea8b510edab6a4a40e7e45b935a651ba75a471de1e6bd1a8f1b43802aa2e011567d4be68d744807b7c57c0a553d0858d167ea0a532971d1014e5a3fca8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-arm64.exe", - "hash": "d990abb280d3b084988329351ba75f278a84d513e7684cc3a4f1a020b9ca4b5645c3ccb59d5d805e729622555d26101fa5a3db3f493c78f884b8065dbe06a6b3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-arm64.zip", - "hash": "c073544cbb942b629a68652106b8e5b7513cb8461d376cbd30a2de33fb1d818217bb9486540739d1c777458c225d948410a5d6ff1e3a994ff12f6301a9498794" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x64.exe", - "hash": "6218d166dba2217e80d8a9cce727a730d1dc4b82d3944ad59b2780ea885204317bde7dbcb1453267df5a19ef2477fadadfb7061e90bfc5a9c8c8c92133ea5151" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x64.zip", - "hash": "22535fcd2ff53723f4fcba8475fd36b703d08b8df865dd1dd5a3af997f766a55cb719d79ff3db420c25f684cf707059f97da3d80d3dc27eaf7d08f8a97dc7bfa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x86.exe", - "hash": "4ec479128895a88192cd51f7536fa62d708678f7b460705654bcb4429ec881867524da51afce03ee73f3b84ff6f5684722942a4273195cf203dfd98a0f25c45d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x86.zip", - "hash": "5ffdcb2e60d5c85af5d091028fa9e93c42c3432baccd731f9a785bef6593f2263b6ed7e0c47a23c497d7552d0d66a77e12d7e796470723b640541fd915de67b3" - } - ] - }, - "sdks": [ - { - "version": "8.0.412", - "version-display": "8.0.412", - "runtime-version": "8.0.18", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-arm.tar.gz", - "hash": "275314440cbf38a379311cfad011135797e0d6628a01e0f94d0889f4db0d1c5cd9f746b847f5a51d2ad5a5d269cfae76945c3f0497d9e158cc88baf9d594d0a1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-arm64.tar.gz", - "hash": "0549d24447b11d4bb4206c812f5d113bf6cce3932999094d5ebc118dd0cf95da85aed4fb7ace942aa683b3970a3c253e7db9de002027c418854f88354879fcd7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-arm.tar.gz", - "hash": "cfbf6c45999db8971a26ae27d3620910ca5dfb62a975f16b5a10aad85c6119de6d909347e16fdb2ab43963017379240c4f7c046be81bb751aa924d9d25d9897a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-arm64.tar.gz", - "hash": "e683a08c370de2f29643fa3721ada15f670978402e3662741bc256ff28cbcb672a3546ac7baa82521ca7cbca25d752733c8490740ab3b4ae055fbe3a547d52b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-musl-x64.tar.gz", - "hash": "c3dfbbd26a699b0ef76dec4b61be7b3092dd25b26cebc12b0202fa6146fd836760cc1a251a2964091507bd42d96722cdf7588b366261ca7d7ea9e849b3ccdf1b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-linux-x64.tar.gz", - "hash": "48062e12222224845cb3f922d991c78c064a1dd056e4b1c892b606e24a27c1f5413dc42221cdcf4225dcb61e3ee025d2a77159006687009130335ac515f59304" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-arm64.pkg", - "hash": "05b9ecdccae9fee7b5d891ddc9b255180667360786f522bc7b019e0146cceeb27f3347ecea66ce910b772559a3ffceb5552771bf4ff0aa95b2cfd78006938ff0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-arm64.tar.gz", - "hash": "1027b5069c403b441cccfb7fc0f82584aa58220529861a1c4f2ae91c6f30b19ea84929de7658de92f5ccba57504fb6e2b28a760376e203279c84fab354b9f116" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-x64.pkg", - "hash": "cbd56359965f918ded5fd19033ee9561b1c4a6450ad60b3c53e94e04ba30d124e7a5aa3c9d0da67b435be5f60563fd027918e3c2e01b5a1445a83c11e1be7830" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-osx-x64.tar.gz", - "hash": "0050a2ea8b510edab6a4a40e7e45b935a651ba75a471de1e6bd1a8f1b43802aa2e011567d4be68d744807b7c57c0a553d0858d167ea0a532971d1014e5a3fca8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-arm64.exe", - "hash": "d990abb280d3b084988329351ba75f278a84d513e7684cc3a4f1a020b9ca4b5645c3ccb59d5d805e729622555d26101fa5a3db3f493c78f884b8065dbe06a6b3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-arm64.zip", - "hash": "c073544cbb942b629a68652106b8e5b7513cb8461d376cbd30a2de33fb1d818217bb9486540739d1c777458c225d948410a5d6ff1e3a994ff12f6301a9498794" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x64.exe", - "hash": "6218d166dba2217e80d8a9cce727a730d1dc4b82d3944ad59b2780ea885204317bde7dbcb1453267df5a19ef2477fadadfb7061e90bfc5a9c8c8c92133ea5151" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x64.zip", - "hash": "22535fcd2ff53723f4fcba8475fd36b703d08b8df865dd1dd5a3af997f766a55cb719d79ff3db420c25f684cf707059f97da3d80d3dc27eaf7d08f8a97dc7bfa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x86.exe", - "hash": "4ec479128895a88192cd51f7536fa62d708678f7b460705654bcb4429ec881867524da51afce03ee73f3b84ff6f5684722942a4273195cf203dfd98a0f25c45d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.412/dotnet-sdk-8.0.412-win-x86.zip", - "hash": "5ffdcb2e60d5c85af5d091028fa9e93c42c3432baccd731f9a785bef6593f2263b6ed7e0c47a23c497d7552d0d66a77e12d7e796470723b640541fd915de67b3" - } - ] - }, - { - "version": "8.0.315", - "version-display": "8.0.315", - "runtime-version": "8.0.18", - "vs-version": "17.10.17", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-arm.tar.gz", - "hash": "f1078b2977ad3029d91d91619ec273eaa48962b4c58bcf7fb7d0ab91d02c9d651e4711c6018d2026eaa5813e4b9437a5076753e1971a7833ccd1b94a2a71cef9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-arm64.tar.gz", - "hash": "396e91f0e94b51458e9193208b8773949fc29974a4ea77b2ad3d40431abc787176ac0da2e361ff3b45008236f5373215b775128b0ee835033e2fee15fd14e985" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-musl-arm.tar.gz", - "hash": "4a76836b982e873d13432b71fc110c9f5df3ee001c77b0f7f5f865c76c0006cf9c44a7aef51af218987626dc9c250f41ad0882f3fb40616562a530431e767e8d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-musl-arm64.tar.gz", - "hash": "372b5a7e8146708f41051476c570ec4abc9d5951d500e83f38fffc696e258f729ad7949a785f7dab6a57dd8f87d94a18ab5fa70a308b87254fb4e9d9ff995543" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-musl-x64.tar.gz", - "hash": "4fc82661d83559c53df9345a55a1b94eb543ed7731ca06be8e9596c35e0cb3e3ed19fdbd8b4a2162d34387d8cb02331ecc06b9166b2bc3304d367664fed058ac" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-linux-x64.tar.gz", - "hash": "5121f6e731d2ae7d1335629329fa3eb08c8b2e1bd6f10e6d4a54b8f83f49a2e43ab54fa4e0d087d95512cf3c6d59651fea638199bfdd34684ddc843790513c4e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-osx-arm64.pkg", - "hash": "c398aadd225f0601347f33ec06382d58878c8a89a063e863bd8394b9ba052ccef1a134f8d6629e17935975e931f1788ba9faaa796d7f9a7084d921bf77f0f2b4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-osx-arm64.tar.gz", - "hash": "f53ec39e469c3ba0aab21de5cd3cf426214d0a22f7cc53779d6973dbc1f73ed6c800e0607624ba63f3af691ec5dcd3571fe7f62946001403ec5f397a00ea8eb9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-osx-x64.pkg", - "hash": "85d42516ad2210c23f8ca81b1d11bece58d42f068e8f5d257e957bf50324172f825951d358cc105e9384d2c8cf0f333b6a72a6c0f507af8b12b952399e7d7ad9" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-osx-x64.tar.gz", - "hash": "6a71dcd548b8a632cafe958aa27db310b534e002e0f6f354a5fae46f42575fa4e315553431854ad1556b651e726e095229513fa92b0b80cb84af0c47e8e5c998" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-arm64.exe", - "hash": "11fe26e03fc1a504deb39416142ddb4f8f421aabe024507bda8c45f5f0dd0c5d2ceeaaffd963a150488bcbcba11988fd7240f98bb6509332d19bb846ca1f75dd" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-arm64.zip", - "hash": "8d85aec3ee4a5c1009b136b6acc9854290946d3309260387a766f891e01a1d4a6686fdf4323d78d5853ef614e701c4a1e3fdd5518c7567b0f7878e491e12e1da" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-x64.exe", - "hash": "86400c86e555d91f5f538e223208cb86260c3ab984ab6043313f88c0e9ba36cc4bba46d3753177279c94bf94bb545185448852f9704edbeb25c056c98862805f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-x64.zip", - "hash": "38af5e0c834dab77a890083268e3662c6fafb67197cb6604d0509af529fd2c399b53ed3cff9b1901ba4c05570b6f04472c32c2b2380923eab575360c9e3240cc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-x86.exe", - "hash": "5ee8f1c16302002a01223d66c89774407a3621360dad4df58679f5f6433726542c0a5c1e873a6c54ac62b647e54cc448725eb7c0fe45ccddbdf8b1c463edca43" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.315/dotnet-sdk-8.0.315-win-x86.zip", - "hash": "78248632a95a4f01cafd06acc0437efbb15e91acc1839e97bc4acd9e666e3d104ae77387e3767faead457c63a82675a9d9fe4a9a67fa01349929926858471bc7" - } - ] - }, - { - "version": "8.0.118", - "version-display": "8.0.118", - "runtime-version": "8.0.18", - "vs-version": "17.8.23", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-arm.tar.gz", - "hash": "30dc739e4376bf049c17f18a44313c9e85fb4ce0b826e4c890aa5db0300d821b3058f3ae5cfae17c3781678ef761042f8c8f66f9311b6c8755010f63b891a7b7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-arm64.tar.gz", - "hash": "c209d88ef57840b7360e7b28ca5c229b3fc8fd82d3e1b0e299730e9b801abfb4a5ce6f64dc667d5866c6244bafe10b4abde6a4bff733be4d4ce0791cbdec559c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-musl-arm.tar.gz", - "hash": "586861479f36ee7e0a53bf914beb7ac1e31855f1e72663d1d7efff24ac38ee05cc954d7d4efd81e32fe8cb3dbf0083725e4c10de5af76a30a694243184a58a20" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-musl-arm64.tar.gz", - "hash": "07620444f2a0ae0db5078df533aaf28e65595aa628241a3d6d27133f3a9e0e19552cdafa4d6dc4a417c27a34d97eaa7152fe930ac3ac812eeb6297430274f866" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-musl-x64.tar.gz", - "hash": "eb31c6845f3a1ff5ccc7b537edc08eb6745104850f77e675fa8b55378039cbbfdedcecb5a2571488900ed8a5138a64e3fb730c3051816f366a48f98f00aa2a31" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-linux-x64.tar.gz", - "hash": "daf2f8052dcceaed00596d1f887b31b19932ea6fc64477006fadd7ebdb565b6ccaadac2b2c38d57ba58d6e156b72adb094a7350aea1d511e77ad967548321a6b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-osx-arm64.pkg", - "hash": "ccb3b91288b09f7bf8e53ed360e6d1a3c126fe165eea0c2658a1f4e989d3d2f66654bd4d4e6f340e96d5e576ac8da45947dbe8c96c1a4302be0404528291fb82" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-osx-arm64.tar.gz", - "hash": "f68b219257e502976309bb73794b67f29dce0e695f40544bd128274d6435c96f13bc7bfb3289619cdc52b81cb7196039ef9c517c6b3228732aa3d491f5ccbcb6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-osx-x64.pkg", - "hash": "e9a6a989989a0a829f97a7204fa4348cd7288f14b828fc7ce0138deab4a9002f9d5312c8e09065f45e5a1646390cce33434514d82cbdec4387f1bc186eef19f4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-osx-x64.tar.gz", - "hash": "71778b9428f6b3b31fda91e585a22feda0b955223becf5900767746e981022bbb632a26b1ebbbd22668674553768bbdb5d324c3f5b68c709c0616e3b8d2015bf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-arm64.exe", - "hash": "92152679ccdf405b6831846dc43bc4163db4c4dffcb086793e6aceed3918c544b6805183644b3c1c6bd982c99cd220b0785727f2ec25b09bb9779b3a9d3ab1a5" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-arm64.zip", - "hash": "43766ae2ce3c484bbe974097c1679179682001686d19c62e8d2c5ecfa7f8114f7713beb790565736e56fe3671c2b99ed8b55c6599218c2f625173a4d4d098226" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-x64.exe", - "hash": "cbb7bce4db15cdff3c813abe614e6ad4c4dc725afea565bb6d74a8a45e849609d8b1472713dc33462b09ff36206979d79744631980d5a64b15ea0278ccdb39b8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-x64.zip", - "hash": "f6f6678ba0ec596c4ea65456b40179a2d1590a87b4d38f2ceafc4df2a2f0214546c8cbeb4e2efc17c64c939616d88b29dd2c77173cf98bba9cc77fbf32c8b44f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-x86.exe", - "hash": "bae225d34b186cb0ed66cef4713cee4d626e4c10f5b6668041cfd94ab655985e43af5281ca87d57658b5b5254ac3ce8bf1d84768b1b6dfd4e0e8be2c4b1224d5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.118/dotnet-sdk-8.0.118-win-x86.zip", - "hash": "5a31e69da9fd81be20058c6f2f7287b85d51b2ad003bf9b4e5b1c3c7ea32dde91af93b1d04116b3c9010b2845d87b72eb42a79b98d0ff2eff02dee46bb485227" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.18", - "version-display": "8.0.18", - "version-aspnetcoremodule": ["18.0.25168.18"], - "vs-version": "17.8.23", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-arm.tar.gz", - "hash": "1c22c5c1036c51361665affb7154e248aeeebc361e80cf02d2e4ab27f7be8e19fb4ca1e69f43a2b961adc7bd90056f6fb56aeb6eb507a87a41bfba653d3f00f2" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-arm64.tar.gz", - "hash": "997ce36180503fbd4dd86ed43b533f618be1db7cf170f500d0d12f899adff22e5b7714942aa2513eece6c12224761c143fbc91d6e97d83cccaed8a811ebcd835" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-musl-arm.tar.gz", - "hash": "ca7780a03c9ab5480b9f92aa9e491482caf19e188c3b6f255e555189233a71974e58d97e949b3b9d2131af168702f17f59290545da0d9385b2dbac410df7734e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-musl-arm64.tar.gz", - "hash": "e6a541de37e2f4750030005de475beed3e3944f15fcd878a21416f0b9527fcea1424a1214564ea96d9b94bdd337e0b009b7f0d31704106d2cb8a230734951666" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-musl-x64.tar.gz", - "hash": "6707e25c0ba25742b68fdd794897ed98a97d3cf0c47ff322961f1e3fae8be983220e930b2bc974eb90c6749d12cc76166f2abe472e0bc4492138ad1194ddd332" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-linux-x64.tar.gz", - "hash": "896e9cab7c3ea5384c174e7e2cffae3c7f8f9ed5d6d2b7434b5a2b0dc3f02b611ff8668f5d70c0b356a6a5d85a28fe40756cf356b168d0306370da11646b4b23" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-osx-arm64.tar.gz", - "hash": "4fca5e706ea2ec1f0622dddaf120776b1b6f2f85dac4ff25c9e5203d759ebc4d391a4f1973c116607850259cd63cce0bb6544cba5752bd962aec15f7710961c3" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-osx-x64.tar.gz", - "hash": "c5220cee5ed5a6ab99db879cdc76b14d1391041341c1b2204570820550e0c1192aa3bfe0e295383a692f6666d85e862c66e59f1747d3ca704e7e1a7fd10c7b44" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-arm64.exe", - "hash": "4f2f2755c731d59ab484b8631b38c48c286a5b602f656161747f86e32af01416db738340fbb7a79286046140f8d944a6f43bb6411c444cce71dcb3fe124135b8" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-arm64.zip", - "hash": "8f5b4a30b43b7ad545bdd706d7034933059cbe57f8efa238b8da1c73ed7c82d91ade8c72688f08a01d037e0c45b27015e67ac29aa4132c18f4fb23cc13d887d5" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-x64.exe", - "hash": "a11332bf03d43cf0e023ab1a31d08e9c9d26539b449ee6d0130bf8c9f76edc42c93533e29663fff80f5edb62be9f3b4507a070c74f68b46e2ee06f83635c6bd4" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-x64.zip", - "hash": "b864bc97b311e319c826dc6466ca7187ba0b6b883c8e6931cd17eac29088201033fdacb9ea67a12011dda10171df92afa8052829a6b05528cc1c9c53fdc98ebb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-x86.exe", - "hash": "262e5ee7afbe75ecb71afce32b31205714feafdd2f37d8996b2d65a8bb455fd6883ea8ebe4893f42f317e039e8acea0a2c80782c3a0f4727955f709863cc0409" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-8.0.18-win-x86.zip", - "hash": "8cc5cf0eeae43361af7821e30bdb289e857f7cc196cd6c918102fb37f80113399c1bcaf0e11642c18509d9843de6c5153e8465895c0851dacfa885b9ef95f996" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-arm.tar.gz", - "hash": "be951a4e3c14d70d306c5d7eaf90ebb702ed73646b70826ea450ecc456b162d53dd5b8acff1e49d84184ca859e5961db14c46e8ff42e9d0d6caa2a860c7d2a92" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-arm64.tar.gz", - "hash": "218425758fcb2dbce415ba43fe326f5bebb0e128ac06c3fe1b355ca495216f33c12e18fb83b7529b7ae001023dda723ac4e6ab9636526ca10cc67e01cec87de1" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-musl-arm.tar.gz", - "hash": "c901887ff4bb2627c17d265bf3cdb42e7bf96dfe630ddff1606402eb7a8a5d0831f52f15fdd5e2fa9e065e0e7b68e6fd6827dee847effe457d1e043120d21ad0" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-musl-arm64.tar.gz", - "hash": "00e1b91201588d3a6e155f25fe6bb47ea44ae0e8d5539d1d4500df7366c480f9c3430790bc1e715032d478673466f2f10dcf7a19ef03ca5ed996d5ae0fa3255a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-musl-x64.tar.gz", - "hash": "b24c5785ad5c0bc47ebc0c1adab925e60603e48598036c5d0df4df859c1a25b8c7180520261ab91f7a4d285287d22cffdbb2862376e6c172f16ee72e18c4aafb" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/aspnetcore-runtime-composite-8.0.18-linux-x64.tar.gz", - "hash": "9a414fa9b4de897e2289c33c4a33fdc1ce095cb909421df636de682c8c6520ae69310db9ea35f6f4e14d9c820b4efede6ef50684f2d275bc9be6a08fbd0821db" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.18/dotnet-hosting-8.0.18-win.exe", - "hash": "a06830385a5f00bef080500736c2d6b9d819b9bee2d81fccb78c4819a0a0063997dbab8ae95de00b39e43de34a8b726549b62f193ccf8e4fa7c55a50f92486b2", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.18", - "version-display": "8.0.18", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-arm64.exe", - "hash": "d25a92a7a2d06f320b201a5ea58dd3f149fa97f016a8af36d80c6d90e856cf3799656cd1909bd9c46bd3cae3637bf3c68f63013a9545ac943ec4101ccb2acad0" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-arm64.zip", - "hash": "c5a5ff5222dd63a70ae918cfc3201f1d51ccc6148c71a013f0295995e0fe31b60b7477896f73a54475781d15dd645369b7ad1d972bf5c2a9690dc054f327486a" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-x64.exe", - "hash": "fd6b4ae532e7106a0faa82aff67321920fdd123ad23a7c6b3a6ce9d55e81a4557c262f11e0e60a3e27114c001ce02f6e6c4c6acc5bf7c0426bead43218155444" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-x64.zip", - "hash": "c109a41a326b52e4054de42ab7c91098965223de12da7908a8a0a0c4a12c6140437f3e05ab2396a7297c9beb7afe070666b54fcbfe70421f9a5a974f001d7054" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-x86.exe", - "hash": "8104111795565cdeeefca8fe1caa42476645286052c26f2de80d7a8ff0f796e371dd8509077bcb911e3b38845fe0cd3a23a1cb85ef2a9249444fabcf1c8defb0" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.18/windowsdesktop-runtime-8.0.18-win-x86.zip", - "hash": "919b60b5ec4573718f9549e362338d351223bc963646c9c1d1b4fd250863dc89309b5b146ff5d42d0aa2cfdfbd12cda76e459d9fd54e7dcf84feccf48119df81" - } - ] - } - }, - { - "release-date": "2025-06-10", - "release-version": "8.0.17", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-30399", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-30399" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.17/8.0.17.md", - "runtime": { - "version": "8.0.17", - "version-display": "8.0.17", - "vs-version": "17.8.22, 17.10.16, 17.12.9, 17.14.5", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-arm.tar.gz", - "hash": "bb61bb5e5deb7fbc030c087fda603bdfc12a8333fb40aebbe760dfd5c4a49a4a12b2a603aa1ce16f666064d6f93aec12fe16f7136e34b4f5e1797e1873984f5c" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-arm64.tar.gz", - "hash": "e42fbc83bf82ee422f17f1eb72ee7f4fef6c19048faea106058715c175fb88aa93f8afb4d9d1df682d0bcf4e67f1a1f4c69cfb42d5d3c66dd8628a8efdcb4110" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-musl-arm.tar.gz", - "hash": "3077b05a93a696dc34970d626dc69f08e173c354bbd979991404d79899c41ebf3fba9884d42a8f852e481ee85d8ca85eb2aefae31f8e4aeb2f7691d51e9df3ef" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-musl-arm64.tar.gz", - "hash": "807e8b4576e71962406349f32506a5b4abd7291d4bf7c951e5eb80fcaccf77cc3f1b57fe4e7110d0b7169554e0e8905c4988bb7417f0309bdecbcadcaaecbd66" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-musl-x64.tar.gz", - "hash": "ea9acf2ed01afdf51d8908976e86635d704e15249d7ade4b36b2dc89f04edb8ed82b40e05315cecf5fdc0e929dd34e9580f703792129ad2c5ce24a03b0a6246e" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-linux-x64.tar.gz", - "hash": "d573388bd64deb12e6464fc6a4240f6ed7cd1c6b17370096304b8ac2d800318c3af36f8185a3b780afe52b041824deef9d377a96a6baed759c8283829054649a" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-osx-arm64.pkg", - "hash": "4df1bf3781698bb503542701b76830ec26ad008e69d116e5233a0d6b6faf74a2d5e6d75e5a5254c71559ee1336dcb2c565e072bcac389184fa1118e757195fb2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-osx-arm64.tar.gz", - "hash": "9f77fc3b4ffcca2c64bb6dec5691a83436a9a104d29c71810b5fa48535026eecb1fbbc7801ee9783336198f0d08fc92db34d5593278ca5c13603556d867a61dc" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-osx-x64.pkg", - "hash": "b7da4619fa506b01d3f78e1ba31606a05e914a5970171a1b9e1b507b738f5ed600b4993c1d236a85c89ad37d44365f8ac3c127e005062b5214f8a6ee6c42c8c0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-osx-x64.tar.gz", - "hash": "faf00d3e057ae9971f30a2937c3237f6ca3fa949032bdab929ab0bafc997b423c18253140abdffad16bcb4519d483fb8b5d0b03fe3e63e34705879b1a8d6ec3b" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-arm64.exe", - "hash": "58ef6b454e8513f3d062dfe195b713442ae7344e46b78dcb3488138232b4b087858065887013585b18139f0e87b885c855bcd5ad198081346501e8ef52ff9aca" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-arm64.zip", - "hash": "83b5aa978112370f23aaf2d4eca88af5f80c536cb0bd046a95cde6e7b43a5a3144c2d0e77f1f7eee31c558819c3f06e7b1a83e22218e73c0c0189d0f161275f7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-x64.exe", - "hash": "1bdaeacfd36db0d49d619bb3ff090c84a0f902613e5414ae4a0a9381c3eb810cb6ff117a7bfe0f819ba7bc036bba4122c65a542a229b266ea7d68fae8ff7e44f" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-x64.zip", - "hash": "fbace810bcfeaf6fc3cdad6fd6758eb2cb241fc1bffd2bf6ded78ff8fc0593e59e5ca013abfd5ca289c20a636cc8a243efd4e703062fdea0a394c4020a9c0820" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-x86.exe", - "hash": "d452f2e3c931276d4bd6032a9df77cf96e39652538176e5c6b4222ac2570db288f9995b9cb5243cb7f44aa663b8651a02e7d0098854887573be88ec0f45624b8" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.17/dotnet-runtime-8.0.17-win-x86.zip", - "hash": "9fd3361a766330ad80e2e75a858fb8bc115799539981adcd1fd8c3ea8b3063333fba60084a60e9c8f5d11562700d39a930b43c0314ce37b8bf07d59268a9675f" - } - ] - }, - "sdk": { - "version": "8.0.411", - "version-display": "8.0.411", - "runtime-version": "8.0.17", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-arm.tar.gz", - "hash": "60060d98f8dedb15b11b8fca709269a9d6b944a7871decc238cf7f588b78c12f73b7f68f21bfa1d7c247ab4ded5cbad4976d6ab8fbe59a4af298d53d0c037596" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-arm64.tar.gz", - "hash": "7fd70c97e549e873ceefb62ed9fef317597fb300b0f95487858719a231e6d333430c7b70e02c8105c1ba679446f6056af0072d22c17368906d94491f4705136c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-arm.tar.gz", - "hash": "697c52dcf201106c51cecc75d9a841f12ade16e8a3c2f7e42b16719c57031c549a4e3ba5044d6ad0201ad116820e36e20a9d8d557d4369ef5231473ff513b68e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-arm64.tar.gz", - "hash": "1354fae8a4c6eb983e03ed005989e0f908e54bb92de9d915f84d77caf5ebd13daaef21916c6b3aefb3e6a3698b48e25b4726d5fed39f0b512f517547e0c96e09" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-x64.tar.gz", - "hash": "d4621c198b6b9fab8a7f3e9422d7377c2671880d8f104f6cd5bab0165f082d1f2f0a341d3305bbce7df0fcdff696c061b4eaaad1a7a84f08c4b8c1fb85d650be" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-x64.tar.gz", - "hash": "e7304c3798c3ad3278a23cfac7e3f873a760d6bfe0719eaafdf6a9666afeff8f2730e7c84f7ff597d34b5e26d1bccb08ecc6e23c7ef4376564c4ed568d6d2430" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-arm64.pkg", - "hash": "806889dd230d89e7ff0718a0be08ab90c558bee56619854ba7b7b9b3ce555fa8d1eb875116810f414879b6a66c63e049dd7161c16dbdd36132b74ad0e4cee337" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-arm64.tar.gz", - "hash": "d991c07a05c3f47ed4c8511d4f298cc93f5f6c60a552717cf5b9b8f8e33df6d3676a5ed33fff0997000f537d597599d1d8eeada8fa5775c6ac3c1d2ea8055444" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-x64.pkg", - "hash": "6ab840c43fde8f670c0390d4878827e3e4bba2ddc54499ae2665fc5bd6e11019711f4a3ace6915c3a1d1ef430dc260b968ffbdce5146753eac5e8ed38ea559f5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-x64.tar.gz", - "hash": "46d732401197a9d08d162bde88832f42546b1a5899f6149140087f57b4f63af72c8db831ade6cd910fd13c91de62800290ad129126c9fc6a6c4c776a65bede0a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-arm64.exe", - "hash": "22b1b91bc1bc81e11113a5630210293bb3de6161d6a904f58d683975870713a8a9c70f0ae9723a4266c586138ff8faa094540ce6498d23ea07addf6b002e26f4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-arm64.zip", - "hash": "e107e950fd13a7ff9c2a3967cfcc9cee651f3d2d163aa541e30153997c243b510be9b07ec3e5c226adf7a2742bc10c172cb7442e8d9220b3a95e9e8d769179f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x64.exe", - "hash": "0f563ba36e83c64fb010b3fb5bb5f63d66a159a2971b6294077566b4cab3c0d755714cd3a53b1ec383e8f9cae0b9f4c7bee6acc2e1fb7bd332c6917a5db65396" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x64.zip", - "hash": "4f72fe242f4d370d8c85fc28c3210b676e7473037bc8450164969e1d6b366a8bede965f692048725358e20ec3368e5f0e041e442a7b15eaecb7c5d135179ff02" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x86.exe", - "hash": "5e994e9409bb9856b8487bc9f20172b75cc15b5ac024dc9207dc69dbed5378beeb7126dc0b01eda966413fcf7ceb7faed1c4b743196de1c44e70cc35d18ca7be" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x86.zip", - "hash": "0fabc4496120aa37e5ebba247653c2ef8e84067bdd4389284bdeab3e8eada75ebe68e8b964602a0dd5eb38dd261ed6c6cea452c24b1c9f2d5ee2be50632152d6" - } - ] - }, - "sdks": [ - { - "version": "8.0.411", - "version-display": "8.0.411", - "runtime-version": "8.0.17", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-arm.tar.gz", - "hash": "60060d98f8dedb15b11b8fca709269a9d6b944a7871decc238cf7f588b78c12f73b7f68f21bfa1d7c247ab4ded5cbad4976d6ab8fbe59a4af298d53d0c037596" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-arm64.tar.gz", - "hash": "7fd70c97e549e873ceefb62ed9fef317597fb300b0f95487858719a231e6d333430c7b70e02c8105c1ba679446f6056af0072d22c17368906d94491f4705136c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-arm.tar.gz", - "hash": "697c52dcf201106c51cecc75d9a841f12ade16e8a3c2f7e42b16719c57031c549a4e3ba5044d6ad0201ad116820e36e20a9d8d557d4369ef5231473ff513b68e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-arm64.tar.gz", - "hash": "1354fae8a4c6eb983e03ed005989e0f908e54bb92de9d915f84d77caf5ebd13daaef21916c6b3aefb3e6a3698b48e25b4726d5fed39f0b512f517547e0c96e09" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-musl-x64.tar.gz", - "hash": "d4621c198b6b9fab8a7f3e9422d7377c2671880d8f104f6cd5bab0165f082d1f2f0a341d3305bbce7df0fcdff696c061b4eaaad1a7a84f08c4b8c1fb85d650be" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-linux-x64.tar.gz", - "hash": "e7304c3798c3ad3278a23cfac7e3f873a760d6bfe0719eaafdf6a9666afeff8f2730e7c84f7ff597d34b5e26d1bccb08ecc6e23c7ef4376564c4ed568d6d2430" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-arm64.pkg", - "hash": "806889dd230d89e7ff0718a0be08ab90c558bee56619854ba7b7b9b3ce555fa8d1eb875116810f414879b6a66c63e049dd7161c16dbdd36132b74ad0e4cee337" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-arm64.tar.gz", - "hash": "d991c07a05c3f47ed4c8511d4f298cc93f5f6c60a552717cf5b9b8f8e33df6d3676a5ed33fff0997000f537d597599d1d8eeada8fa5775c6ac3c1d2ea8055444" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-x64.pkg", - "hash": "6ab840c43fde8f670c0390d4878827e3e4bba2ddc54499ae2665fc5bd6e11019711f4a3ace6915c3a1d1ef430dc260b968ffbdce5146753eac5e8ed38ea559f5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-osx-x64.tar.gz", - "hash": "46d732401197a9d08d162bde88832f42546b1a5899f6149140087f57b4f63af72c8db831ade6cd910fd13c91de62800290ad129126c9fc6a6c4c776a65bede0a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-arm64.exe", - "hash": "22b1b91bc1bc81e11113a5630210293bb3de6161d6a904f58d683975870713a8a9c70f0ae9723a4266c586138ff8faa094540ce6498d23ea07addf6b002e26f4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-arm64.zip", - "hash": "e107e950fd13a7ff9c2a3967cfcc9cee651f3d2d163aa541e30153997c243b510be9b07ec3e5c226adf7a2742bc10c172cb7442e8d9220b3a95e9e8d769179f3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x64.exe", - "hash": "0f563ba36e83c64fb010b3fb5bb5f63d66a159a2971b6294077566b4cab3c0d755714cd3a53b1ec383e8f9cae0b9f4c7bee6acc2e1fb7bd332c6917a5db65396" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x64.zip", - "hash": "4f72fe242f4d370d8c85fc28c3210b676e7473037bc8450164969e1d6b366a8bede965f692048725358e20ec3368e5f0e041e442a7b15eaecb7c5d135179ff02" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x86.exe", - "hash": "5e994e9409bb9856b8487bc9f20172b75cc15b5ac024dc9207dc69dbed5378beeb7126dc0b01eda966413fcf7ceb7faed1c4b743196de1c44e70cc35d18ca7be" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.411/dotnet-sdk-8.0.411-win-x86.zip", - "hash": "0fabc4496120aa37e5ebba247653c2ef8e84067bdd4389284bdeab3e8eada75ebe68e8b964602a0dd5eb38dd261ed6c6cea452c24b1c9f2d5ee2be50632152d6" - } - ] - }, - { - "version": "8.0.314", - "version-display": "8.0.314", - "runtime-version": "8.0.17", - "vs-version": "17.10.16", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-arm.tar.gz", - "hash": "193dbf0588b13b307b7e496db35d7bd5d8dd921a687c8dc611b8241f0ea67faa2ecdfa2774d83b5edb5397b407b709420fc29841dda281e89ba04d23ab1d32f8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-arm64.tar.gz", - "hash": "a81237a34a2465e4c48ae920d10965567f1b01bc646d3478c955e98d4d17bb4ddf91fc303fc1f85956ae7eed1d806728d7ff780bb352028f99a026d8db21e0da" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-musl-arm.tar.gz", - "hash": "625c358517afcbc6cd02b0f390758e006c3bf338c0b0b65f31f4e88b167ffa42a434a4cda6603a6b3274c1170626d6d7ec160005002bb646bd547fa6fc82dee3" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-musl-arm64.tar.gz", - "hash": "2cff8104453ba16685b3dc11b46940e9db083387f49d039423fc02825376c98d4492afc46b430a2e863b1952d2ec6b96d0423378191e4c58923a1d0aac15aa5c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-musl-x64.tar.gz", - "hash": "f5731f395c7e4142785edad74b99bb6443eaeef069b156e47f4a6efb594aee13dc8c3f826f551826eabed1b9c1e37e29cca9ce31d150ffe3e2a119736c31c224" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-linux-x64.tar.gz", - "hash": "afbb0d70392e792c0b58b9f64d7dd6f945760c79bb3995d3bc5998c6d10f38794e56ce634d5207464301c0b0db60a96d3df6f83b68b6c8d66d7a76e466b4b120" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-osx-arm64.pkg", - "hash": "eb0a7f71eed14ee3bbed1c14b2c6fe0a927c2639fdc1a9ca24d7869646fac3d384d50543550ca56d7979beaf86988424fc7fd466b66fb45f7799918c49d54205" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-osx-arm64.tar.gz", - "hash": "8989415e7bd58c4d9a4e68cc78cc58b926cb8ee34784f579fadf41909c9a74c14c0100a7306ac2ff51dc32ca397704fe9c452af0ca6abb76ba2f6e11ff84608e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-osx-x64.pkg", - "hash": "6e600aecb31d427a03c9703d429f6c43a5fad82b3887089aa0dd9a067ffaf2867b3b147e752525ce895279212695f272436bdf043540f1622e27869f1df3402b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-osx-x64.tar.gz", - "hash": "88540bb35701e2333f4201c29e05f3d27ce25e99d8cfc647411e3189b1faec9a6961befceac4ad6951be6fb96948921eae7e2cef22dbaa097fa5c62994db7d74" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-arm64.exe", - "hash": "0883ced433803ab1291897ebf75b877d46409d503f8e0d32d10bd6e7e8859bf7ff0fa23cc0243ec64dd822afacae6b42a58ad0c5013316729e52ce0d974ad576" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-arm64.zip", - "hash": "e1b3e7846aaac273a66d129e737753dfdc17ef86f4a78ee19febb21da2b6f369e6dc40c173bc6f49e9acdb7d1b46a8c415295e2576b41ec6afa32ddbf64016aa" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-x64.exe", - "hash": "317e2a93169b18d653b2c53cf83feffa194f0e6ec8b1989ff2cb56b07f5d6d2f5db8c9d46229f5e2fd793af48c756de5adb380c67ee74a571b150a5471635ed6" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-x64.zip", - "hash": "0abd14b1f826a9e44b4a3f4de0e60dffc71fbf81c3ebe09063324574f737e2cce402d9ce4bf088476a8bb26685ff09d6c0d239014e985850794a7247067d2509" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-x86.exe", - "hash": "bff651d84a315ec934905761937427d7a8b2e2d165378f1465d9d372289598a213d79c1a16902b2620d94b938c5c0302e6216c5332c3b73ea6a07200f39e2d7a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.314/dotnet-sdk-8.0.314-win-x86.zip", - "hash": "09de58f33a0e40cc6eece7b6d4a8e61654fcb51a9742497605076ac3a8b96e4863a0d304ba335490be7186090ad634ccafb8522d463300c6e3515fe4acc5876c" - } - ] - }, - { - "version": "8.0.117", - "version-display": "8.0.117", - "runtime-version": "8.0.17", - "vs-version": "17.8.22", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-arm.tar.gz", - "hash": "0a0cca00d99198c287594eecff3d4ac66f32aa186db83b78822719bbea672c874603ae83bbac67b26517bdbd05919e9f18913fc17f1cc0d51ad47d821e2731be" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-arm64.tar.gz", - "hash": "9b65e1a579240e5370798bd1d85f3e0ffe6b8feb7b6c88328db90706ad37ee38e204394745b778b59dd41c064c03a37c07f0de534f7f0fe011d130c62636148a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-musl-arm.tar.gz", - "hash": "0540faf5174df0ddb16fc0e5ca86e128d0d4b5e4929df623a41c76b06f30dd48d110d20b785448064203e34e1aa4e713b655d429fbcd3617f82b6095c4794034" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-musl-arm64.tar.gz", - "hash": "d919fd80d9060efe1fdbb047654f24de4dc39e07d0236ecccb701f37647e6b58bb4105579adda74f9c4091908afff5abefbec36c81b48588ac6d163b222804ea" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-musl-x64.tar.gz", - "hash": "f01b4126167995c35262ffe7769d21ca6b055b39882f5cccb6853ac2f4c30736250720f389ccb8d91432c182e495d59b86b3c36d1edf69c194264926525b2647" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-linux-x64.tar.gz", - "hash": "a6739b587b776b156ffe19d25711b141261b7b5becff00cb81aee5b2f0694f4600799c625eb844d5ba74203dd5a1211dc34bab62c54961fe7eb7a92e1a7dbf77" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-osx-arm64.pkg", - "hash": "57288ce6731357c95ee1cc7e79e54466d48e21d15ac07823a9f173d47a8428cc570925d144facaffe72f820e5f882e4b4948e01dc0fbebe0f7a0e54268958901" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-osx-arm64.tar.gz", - "hash": "6ac8ed56e6bc5c0dab9e9d759efdfb8eab690e49da4f326aa657bba4f07320d8bb54033fc70d3500876b23db57d85aa68325d766535b92a8ab24ab9f482f7c6a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-osx-x64.pkg", - "hash": "462237c25291c9afb6646e428cc51005108299c0790c5916d39dd341b58161287e17d8c8f47dc0495ea2c15b6c4b81dc75cf047b59e79438f597f20fd2fead68" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-osx-x64.tar.gz", - "hash": "b0ebc9dd8b875fc7b94e986e6c1c9a2d51613e32979163305084da94235e1974a614885281d80e2827e15d7775bb8bbf0001f7751fe68191f710bdab2465e5e6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-arm64.exe", - "hash": "4067250bbadea7dcbf777dd2b518e48b65a30c6a9430251af04bcce5039ca52a5de78cf867af236926c3c6f7dd848a84570275d8383f263af9d6fcbcddc95e33" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-arm64.zip", - "hash": "529bae3c01a91ffa68bf339889fe88fce5acf505346c79a96aa23425cb7f1cac824bd24b519a830b21edb3dc48daebdebbd1a7b01710821de2f4df87617543b7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-x64.exe", - "hash": "3aef2049f710d97853c39fb637c75955b03793b21baae29a2683e196a91ae7908a88751884f11a179cbb758a9e4555f25b2f0069ed958158ba8d318f5ac4165f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-x64.zip", - "hash": "61df0fc920a8fed5c0183142e96b883302b3dd403193b0296c580854601c72899c3658d1cedfedf240835fde62b0a40e1ce93988e343b39f7a8edc31c7f04caa" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-x86.exe", - "hash": "f65e6f63f155cad2f79d30c830751df81289a6550c1fcedf8bde6d0fc8800d690446777b9bacb8fdf7d73938ef5fa3700382f9e3c113ac7cd3671d947b65b963" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.117/dotnet-sdk-8.0.117-win-x86.zip", - "hash": "9546e190e9745bb46ecb128ac7660a58ae78647b5119406ac6be49ce3de36ebfa3591680ec498bf305bd723750e7bc89f1d709abe7c4e6c6e1ec08c5ce5b2f2a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.17", - "version-display": "8.0.17", - "version-aspnetcoremodule": ["18.0.25136.17"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-arm.tar.gz", - "hash": "1308565bba86f891e5c14fe2295cc9e7b8e0c72830c8fab2d6a0d591de9667d8c457845a50f66f05d3218a4d2b1dd43b08ae3810d8672c5a5a3789f46ecb18d5" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-arm64.tar.gz", - "hash": "4f1a441e400b60f814a161d2718c2599b4d492fffe5df5a5d8a494cec553ad3574c0988e9dc49abf8c928b9e9783a86f5506cbcbdf12d24e562090969aced3c5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-musl-arm.tar.gz", - "hash": "0c4b16aae3a8ff3ef9d4a5c8dea33b9b0feb4b6c76745841ecda72863ec166f1a6d559e102b7442dffc1ff22c8a55ce7ee3ad7b15f0c75625156bb9318fe9459" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-musl-arm64.tar.gz", - "hash": "e9ec83100659502c611499f924bfc474c2e6491b518ed69739919c097a799bee7b4a4dd23edb1f0e7868fbce9198e4b1d16545ec5144a55b9820c1665b0dcf87" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-musl-x64.tar.gz", - "hash": "a3540f89c96853538ee114145ac9991f222be8915b80394191814fdaabef3abc235d605799fa375962c0909af03b3d0bf1ac760342c566140d914f7f706692be" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-linux-x64.tar.gz", - "hash": "b292dea52f70035bb7ccc82c1ed908fb084753eb08f662c7bb2e9206e22f396aa611db6573e827d5c5cff21590810b66eae0ead9b534bc3f8fc695f65f47f28f" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-osx-arm64.tar.gz", - "hash": "78174a718172fe518d004a3c1fefcbec731edf68e2a7774c6fa95123081152f2c951efe6c614ad9c1f915897c0978dc60fe79c9f9b6ec3e28a1e9050f785367e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-osx-x64.tar.gz", - "hash": "3f59286366ead7df06149507b8c1c7904e614a0f94d8ff128d1ac04b9e4b2faa308deeb67b1b576c40391cd592693617bb0548a1441fb7c55e17a7456f79c79d" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-arm64.exe", - "hash": "40e1400a529785d908c9220f1831586cd30eb31a87a6ac41da0c0d148b3fea25480cd2d12df7e5dd3241753fad5cf2fdaaa4a09580d04075a7a05289274b25c3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-arm64.zip", - "hash": "0b6409fe36544868e9c136e4c7abc893a6ffd20d3a01914b75509458b002f0cdced0f31c0451e3752b0a0f7e2a06f86b2bde453e0d8149bf0498666506357f56" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-x64.exe", - "hash": "4322d6b3e91941076264dea4cc2785d20560377635d8f2366734ee921506851b09fbc02d3048b5ff16f757421a76d06ccbc3c32d7fa0eb57c6f4026b54676ed7" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-x64.zip", - "hash": "af61590a7fd915ecdc93a4e82e7319ced0abe7e8307102769f52a0541af8064df1d719c8f22e8ede1832f4a9779c36c7e3cf0ffd27837ad2229ae302c8b9c1aa" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-x86.exe", - "hash": "c47a285bc0a40fa000c28cbd9210d7409e2835178fa955d829039a9bf1e42e9943bb3859b39e4eaf20d4c335a254096a073dcd59280a499aa131cc13ee16ee16" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-8.0.17-win-x86.zip", - "hash": "7d1d415473c99d7d36227cb0ffec3b26ed2e5bdb1d304de10f1ad646febe99924c650485bf91868a14aed6a6f7bb31977edcc6b909b3418e7502fdd4346bf0cd" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-arm.tar.gz", - "hash": "82f06fddc2812d794380b6b7fcb7c57fe84ef9b0e9dbfd32dbc2173938c7ed4fa3b77a72df52835663ee3753376644af6f84b4e9c0885aacc9909fb5e1fb4763" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-arm64.tar.gz", - "hash": "dfadb03e43371d01da7c35739b69e4a2f025c7a1425cc4fb033d8e0f15114a04a9343505e48192f0886eabd76ab2389dca6e19a1ed58cd84a7aeb99861599231" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-musl-arm.tar.gz", - "hash": "37d8ad76aac48aa9e064bbd155a6c5db0117f42bac0530b676956845b74d59a6888c0af39f9f7d1b8a9a317f0b58f421948eef8b3545d91979b45844a85f2a84" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-musl-arm64.tar.gz", - "hash": "91026c862cf7978f1cb9833f5c55e03985c2e9e6c10e5bac41582006e8a4e5c4f058859324cb90f96620745842c38449ee7a2a206f4be853a87321ddfb7e4057" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-musl-x64.tar.gz", - "hash": "5e98d742c80e12142f5371a3c9c2946a966a4cf3a11eec1f082b27920574729ba7c8194ede92e8aabcd69a1b3eb5553b4a568db11167df1efb542453b44ce91b" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/aspnetcore-runtime-composite-8.0.17-linux-x64.tar.gz", - "hash": "2c36236bb66c6c2857fff0d1344bb056ac25f60997c1b5363f66ac9980d665804adfbd1c750aac3ea4fdc21186e14042f77303124708697eaae06a94ff1f6488" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.17/dotnet-hosting-8.0.17-win.exe", - "hash": "490810a238fa255dbbf8886f5ade10fe2f14d28264b7df4641b01eed3f86f113575efbe2ee3333976bbc85c8bbf7bf2e8354ab8326b11926ddab1360d36f79f7", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.17", - "version-display": "8.0.17", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-arm64.exe", - "hash": "d2a09a533f7635021758f53166fe3862666c7874993a9a99d92a94aad2995e50301da9ad1a344eeaaea8fa5cc8b6170856b6065b006fc9229aaa73fb22ca7c27" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-arm64.zip", - "hash": "9e18a5e368909892126cb6924cb50665659c4e2a07bec5f0298ecabc062ee2191de64f8efa140c3c84e7a228cc3b74d93928a74e8a50f61e8433344b8b33a4ad" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-x64.exe", - "hash": "540838d292869d871ff87576bbe2ddf0ac4db712a64a7778b84dee6c01fdf0e27846643a0385f9f5a1b2452c50cdd0ba4ec69e4a564da586375593532812e08e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-x64.zip", - "hash": "e88a771392642531dd8dd1c63da3608c7f6ea7cc6c450322af5e792eb11b771c70b8ffb1f6ffa30992bc2be35d4864452b0501bc179f830d80ae233b31a50486" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-x86.exe", - "hash": "721a012a52d249450dd52992e31bd8a59093d720efd6f8c6c00686a8c308204a34ac6a856e896d9ef0704a513025ab84909c8fa1adce83e02e4f6560f55c24ba" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.17/windowsdesktop-runtime-8.0.17-win-x86.zip", - "hash": "9dfcc10e75170d59a5255780ea8441cd137ee90c9bfdd52c285cae89ae6698752cb1f77250aa9d3108399164b012c0f82f9595a47074921cf0f617f946a740f2" - } - ] - } - }, - { - "release-date": "2025-05-22", - "release-version": "8.0.16", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-26646", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-26646" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.16/8.0.16.md", - "runtime": { - "version": "8.0.16", - "version-display": "8.0.16", - "vs-version": "17.8.21, 17.10.15, 17.12.8, 17.13.7, 17.14.0", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-arm.tar.gz", - "hash": "3f245b9d4603809197d81d80a07d4513c8d1608179b1f4069bede3c6bcf6e8d8eb77c74f5ffada85fb8af517052a27d3e4ade5463194557deb31a9f02417e4fc" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-arm64.tar.gz", - "hash": "ddb14dd8cecf88069698126259193a25a69b4b47aeda2aa1641c8c0301b2e5760959981cb767d7f14ad37ca99936c4136f5d7d2eb51d4860318e7afa3474752e" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-musl-arm.tar.gz", - "hash": "a1b43d5ca2315fda8d3777d20aaa9e4725a6867b0430d931069e6530dec32e6c6ef64132e7178828ed10c5a369f8c0c2b7a426012b75ee617eb3cf65305adb28" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-musl-arm64.tar.gz", - "hash": "9af2ca767cd94e23b8e9165582abad18e11d3f25c972fabad19b97435144774aa427746e6056132fa2361e237815ce35e8b6244641d92f511427223565abb921" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-musl-x64.tar.gz", - "hash": "ae77fffe1fc8e6b65a6908bc6f8b413b3dc15a89db1a425974ad7686bf307b068076f77079ba06224129a74209c10aaba7a418a5e3ddf4dbeef889c2fc4da23c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-linux-x64.tar.gz", - "hash": "e0924f88b6795d669e5c6278845a574b75fbd9b5aeb63a0ed638224fb8d3d48b91bb2a9afb272dfd5f40e8241d41a84792b9fcfe426e8fdcfa14116bc132cee2" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-osx-arm64.pkg", - "hash": "a1c2314b012b69f03eaea248709a8c4d02b2a7c474bb7cecf6508b0c98b15377dfdbfa9d13c28e44820791e048ffbba1c3ba37a9abb385d6ba23400f8f75ca1e" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-osx-arm64.tar.gz", - "hash": "73c3513ac18781d2e93053dd85c9447ccdea7dfe6ccd38df9a3616f751f0f66fdc4e43765f2e28f19b6f23d8d074698e02be5d92c14d6d09b7b4ca1c29d47612" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-osx-x64.pkg", - "hash": "083b4249da29193e4e1841894f36b43a23bec8e2d6f92f8d44270ed92519527d6f1eefa279a870f67ff3d6fb1e98b0c3f4252f247576ba0c0ddd85caee1dbcee" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-osx-x64.tar.gz", - "hash": "f68018dbef7f8d5b55350e2cc431c5e9adf8debb67c971a28bc8de0fbfd273b3425f4a61fd3db546fb650a35cece7b54bbe6553294c4d27f5846e832300e401c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-arm64.exe", - "hash": "894c7feab2b567c186b28ed157865880a7d7871530311452f0fdd6b48ce6748e0f597a2ec9c468f4335c3170ddd4306878d0d2854e22d9b6ead7746f18a0019c" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-arm64.zip", - "hash": "24cc360192d057128e99aa04f0865332734e4bab4643bad90c6952dd9e529f660b00d1f3cf22e5b22e244a7ae1aacb5e3c58c706e0fff6090a2a6ad4032ff7b9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-x64.exe", - "hash": "8c61220263b0d5640cb5c5499652fff5a99bbe9930d95d42943eb336cff80ecc7e00a7f6304d992da8016f5e8bacaac5323ecab92aa2e2cdf214c4e8425aef4f" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-x64.zip", - "hash": "096632e933c94413316c7f7d54541cfbec76d0d77776bfdeda1cb155567a6eaefb33bcdd1e36d9add3bb0f276418b3615782489be3e1cb9e628138c8b91c23e2" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-x86.exe", - "hash": "b94756c56cdf505ad272d435e145a67b3aa3c518fb34c78e37d769a7b69a0f5f259cb9a51bb28c26f070d0950ff766ea57a99d477da7b606b83728783708f1b9" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.16/dotnet-runtime-8.0.16-win-x86.zip", - "hash": "0a51c551ebeb46795be2aef9785c09f5ce03caf5da730e9ccea4bf58075668e84fed91ce741dec1953942c07e2790990005a24ee0fa5c82504dadcf615639677" - } - ] - }, - "sdk": { - "version": "8.0.410", - "version-display": "8.0.410", - "runtime-version": "8.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-arm.tar.gz", - "hash": "aae9c76dc346b162e7c0ba002d8978e946ebc11741567ede048806ebb09bfe90756d8c11476544d6ef21d6af2e9d96effd8b82272ec04540c87b25c57683065d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-arm64.tar.gz", - "hash": "124a07f83e868a9d838ff26f85fa6b43f854fa8d7fc898d787b83d5cd120f3b9675f908d271d983bd2dce845afff39cceaf5500e945ef43852e46e6ddb115693" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-arm.tar.gz", - "hash": "309a0185897cd27596535e8d19e32d400812c7db35b1630ed880cb318c5961068f6b2b60b4d9866a8dcc00e02356b81f068d421a698578d248e9b27bc97ecab9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-arm64.tar.gz", - "hash": "196c551d2c6e165dc2180ff647ff9bd63e3635fbbd2d7c34ae9bc2577784b6d2e70e2ca350fae8e0bc62ed48f30f2087df528ae081deb40154436465eba2bb94" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-x64.tar.gz", - "hash": "9b10611d7b7d0faf0f3393f790d838e30410968a8f322ba06b810b1d3934083e14d46ce487d7f439ecdd1236560ca30534c813bf28e58b3bf0eba77f7a96f030" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-x64.tar.gz", - "hash": "757879ef16bf8dc0677e0222ed2fd87b6126aa5ef6370120fb6ee8dfb42a194a796d105d388320cc623548a2eebbd349b1badf3e53631d9f059edeafea1b83bf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-arm64.pkg", - "hash": "00832555ecc735f79c5aa635982e88289e1d2836c8cb7cfccfeb777af4775bd200cffca7ec6123a840160388933dbe5aa7bd43b31de1b0c446a8f238e923461d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-arm64.tar.gz", - "hash": "138c851ca6a314ae2a43d51c5c25472dff8f47697161d361c24b0592ea28addba2eb4a05ec720fe00533eed692c7105e6b3eaf2c19b9975a1144709756630cf6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-x64.pkg", - "hash": "3c12bbadc54100f9b769ee56e399824918a271bd49bb3c2284efe10a2e15447cf94e4b7c3975a2a3aeadab0f1eb16d376155b7fa8ae359243a68b5addc7264e3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-x64.tar.gz", - "hash": "e3e265edbfa49c71db7526323544034cab3d3c451854d8552029da1ae9dd8221c7343d8f725fdc96d009e2da76accd0382db1a9ce441d98ddad60239b1582987" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-arm64.exe", - "hash": "eefb5733b7b1c33fef98c3879417afacf43b2fe7e8259d80ccb49bab2d0de096a294ba6c5e3d0b675de4be49b28a02eba9e4a81b83e7e3818111d0e55cb0675a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-arm64.zip", - "hash": "29d9e938410fd3bbd3a6794a9f30683b87758e16043d7ab94580ce2cd1aa0d22c289c6206cc6d7327fa29d662017b47f129d3084775e039278f645ce66040261" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x64.exe", - "hash": "ff5c515d0b269f72f986499dc00cf74e88d10daee4e37a5d270b32fe031d0f272964093c301ec37e29cd252798cf77721b24cd64707c38f0f714dcb13e9db432" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x64.zip", - "hash": "9873812d375a560a657bb6f16030b5e7aa3e088afbf342c02ac58d576d3358235dbe64662cafe3539c764db9f76de8635bc8d2fb47f9ebcc6d029f1bb1e4bd65" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x86.exe", - "hash": "df1011fe30f37c35caaaa70744c78ac546f7da252ae8acedaf5a9145a3521761c84b9e2af0379173e4f034cb938e072ffc3ae40b51365be1abff972cc6ad82f1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x86.zip", - "hash": "a98192bbdba55327b2732c0784caae962aeece581ec367a91968c548bc061d66a584d53027807148bf6f2930030c8908dd54918eb6c0a4a1ff47447b0c1fb128" - } - ] - }, - "sdks": [ - { - "version": "8.0.410", - "version-display": "8.0.410", - "runtime-version": "8.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-arm.tar.gz", - "hash": "aae9c76dc346b162e7c0ba002d8978e946ebc11741567ede048806ebb09bfe90756d8c11476544d6ef21d6af2e9d96effd8b82272ec04540c87b25c57683065d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-arm64.tar.gz", - "hash": "124a07f83e868a9d838ff26f85fa6b43f854fa8d7fc898d787b83d5cd120f3b9675f908d271d983bd2dce845afff39cceaf5500e945ef43852e46e6ddb115693" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-arm.tar.gz", - "hash": "309a0185897cd27596535e8d19e32d400812c7db35b1630ed880cb318c5961068f6b2b60b4d9866a8dcc00e02356b81f068d421a698578d248e9b27bc97ecab9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-arm64.tar.gz", - "hash": "196c551d2c6e165dc2180ff647ff9bd63e3635fbbd2d7c34ae9bc2577784b6d2e70e2ca350fae8e0bc62ed48f30f2087df528ae081deb40154436465eba2bb94" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-musl-x64.tar.gz", - "hash": "9b10611d7b7d0faf0f3393f790d838e30410968a8f322ba06b810b1d3934083e14d46ce487d7f439ecdd1236560ca30534c813bf28e58b3bf0eba77f7a96f030" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-linux-x64.tar.gz", - "hash": "757879ef16bf8dc0677e0222ed2fd87b6126aa5ef6370120fb6ee8dfb42a194a796d105d388320cc623548a2eebbd349b1badf3e53631d9f059edeafea1b83bf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-arm64.pkg", - "hash": "00832555ecc735f79c5aa635982e88289e1d2836c8cb7cfccfeb777af4775bd200cffca7ec6123a840160388933dbe5aa7bd43b31de1b0c446a8f238e923461d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-arm64.tar.gz", - "hash": "138c851ca6a314ae2a43d51c5c25472dff8f47697161d361c24b0592ea28addba2eb4a05ec720fe00533eed692c7105e6b3eaf2c19b9975a1144709756630cf6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-x64.pkg", - "hash": "3c12bbadc54100f9b769ee56e399824918a271bd49bb3c2284efe10a2e15447cf94e4b7c3975a2a3aeadab0f1eb16d376155b7fa8ae359243a68b5addc7264e3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-osx-x64.tar.gz", - "hash": "e3e265edbfa49c71db7526323544034cab3d3c451854d8552029da1ae9dd8221c7343d8f725fdc96d009e2da76accd0382db1a9ce441d98ddad60239b1582987" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-arm64.exe", - "hash": "eefb5733b7b1c33fef98c3879417afacf43b2fe7e8259d80ccb49bab2d0de096a294ba6c5e3d0b675de4be49b28a02eba9e4a81b83e7e3818111d0e55cb0675a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-arm64.zip", - "hash": "29d9e938410fd3bbd3a6794a9f30683b87758e16043d7ab94580ce2cd1aa0d22c289c6206cc6d7327fa29d662017b47f129d3084775e039278f645ce66040261" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x64.exe", - "hash": "ff5c515d0b269f72f986499dc00cf74e88d10daee4e37a5d270b32fe031d0f272964093c301ec37e29cd252798cf77721b24cd64707c38f0f714dcb13e9db432" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x64.zip", - "hash": "9873812d375a560a657bb6f16030b5e7aa3e088afbf342c02ac58d576d3358235dbe64662cafe3539c764db9f76de8635bc8d2fb47f9ebcc6d029f1bb1e4bd65" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x86.exe", - "hash": "df1011fe30f37c35caaaa70744c78ac546f7da252ae8acedaf5a9145a3521761c84b9e2af0379173e4f034cb938e072ffc3ae40b51365be1abff972cc6ad82f1" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.410/dotnet-sdk-8.0.410-win-x86.zip", - "hash": "a98192bbdba55327b2732c0784caae962aeece581ec367a91968c548bc061d66a584d53027807148bf6f2930030c8908dd54918eb6c0a4a1ff47447b0c1fb128" - } - ] - }, - { - "version": "8.0.313", - "version-display": "8.0.313", - "runtime-version": "8.0.16", - "vs-version": "17.10.15", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-arm.tar.gz", - "hash": "0ecc8ec3b1c52ca6731d13496ec0ace48d649c1ca9f8dadee2b50954eca88594dcd2ba9afce965c2058dac7dc12816931842ae2eeb943de0dfe1fa645409c661" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-arm64.tar.gz", - "hash": "4431d3c3a2062846184af1335cf85a49923079cd6d40b4c56c1064ea726b4368993e11fbd225b6ce404cb6335c9e3ea3d595adec8920584955475a859a219e77" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-musl-arm.tar.gz", - "hash": "33bc448590ef0d3098a1f44042dc5807673eaf746f841a98453749ad53ec1605f6351d9b5f3eac813ab099165abc0e72c6da25954f66233b1d0461c227a14cb9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-musl-arm64.tar.gz", - "hash": "3b13f7a1f5683b7194b6e2d90dea95a04603332419ebd7450870f23603e628b37e15d87a72d37c55e97e46f15120ab2bbda94bb8d43272073dc9bcdfd01019fb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-musl-x64.tar.gz", - "hash": "2c31dba6967ec9b139175943fd8e22eb96bee67f387d43c81ae95df8062f51189aef5c469fab2fbd3daac6b296a6626dd42be6cad016b901579bdf6be014dc2c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-linux-x64.tar.gz", - "hash": "eaa3a43afba764c4aa7e704f171c6ad5aa37b2bc65f1c1699d8a8f7a0b9aa716170a11b55f036190ac688ec951a2b8be89225f36910cd29cb7378eeefdde2aa6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-osx-arm64.pkg", - "hash": "8826131647a707124c2e99a83ee5b7df0927b1b94ade90bf29f47781a5124ed8b00a90d2688a46a6b985c6a5d69f389c9ec4abdde0243f76903da2a119752e74" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-osx-arm64.tar.gz", - "hash": "2b7f6a59de003dda04004ecadbe88e9bf28fdefcafcfd04f8b4719c9e567432ac3342a266c5cdb53bf182b6a67dcb90cd104dac8a35d1263d6bbf2362ffb8770" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-osx-x64.pkg", - "hash": "fe288ec2bcc767356a9af5ab29eb9e850a73e34d579931f27f95d92c86486b42814e9eb4d80f7e58e01a6fbf4abafe3fac0a94e2d971e17163d558ee4fbb6178" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-osx-x64.tar.gz", - "hash": "04f62d714ff4c0d1624c09d01c81bc9e460f0e1b35cf43073a6a5e492899f50467a247b8e495c9a9760f0fabb53734fe2ad33dc0735e9d14196a1b0262e1fd3a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-arm64.exe", - "hash": "d6e1ce3f2f2cac4ebc3a27fcb22b7195a538d1fd84f7e1bc73dfdb35f8714984b88f1634e2c035840315995f8e11a18130063164299ffc3dd010018bfe1cecbf" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-arm64.zip", - "hash": "730c2b38617a212aac644a4c98e02feba306fc664f7711bfb7bd80aa5fda645966eadad6cd94f19c6956dff920efca53fad9a34a166593c04679d279a3a5e74f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-x64.exe", - "hash": "5aff51adf48842f5e39fc5157b322a7f6943dae23ad377025f4811ad31e934414aa38b81d701e2b7886c3f25bce7721d3898e987e332be51e67688f1ce10ab19" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-x64.zip", - "hash": "3bd67ff3f0d04a46d4b87b70f4f73d55750dac096f5874eea7967ae5c8de2224d3c6b291e94990f13c5f4395ba075fb10bfc451984f67bc6963911518ffe15c2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-x86.exe", - "hash": "0b3d32f895a05d3ab277c788cbfb6363fd814ed55af993aa688aceeee3cdeae6c1a0b2bc77d85977983d17bc1caad5dd34ef58f78e3f571ff40d5e60010d0e9e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.313/dotnet-sdk-8.0.313-win-x86.zip", - "hash": "9d542596f68e6cea174081e21449bc4968ef2eb833ce1877d25987247ca7eb9d295a1f00ff726207c45b3f56fc1090cec5141b71415234a0f961fc4701234863" - } - ] - }, - { - "version": "8.0.409", - "version-display": "8.0.409", - "runtime-version": "8.0.16", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-arm.tar.gz", - "hash": "d29937db92ef085d4c3736f1be811c574e81cc0fe9b1decef4199c2d5170947648a7c694f3d2a963403f41040c7c9a1f78c909ca0cd93c1adc00b0ed48c589d3" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-arm64.tar.gz", - "hash": "ee7090a9ddc8347ab743a3132a0c8a78220c219ce45b9b4c9f5b741b7f66e8191ea8162ef17daa3830b8d874c73a26b19882975b35d0ac1da31761b5a64c7deb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-musl-arm.tar.gz", - "hash": "58639aa04a53f13050f81bd80f8b87694905ab603084f8f1d94659ea2d82a0dd474a714c255c935153e154b9b3b78110e3e775458e5c317f9b2ff9f061fdfcdc" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-musl-arm64.tar.gz", - "hash": "3128f4aac3d562f037cf22684331ffb7d38accbb5b9ff89845a9ee8f8d810c16b36aa38bd5da993204826a59b9369837cc3206493cfd6cc5b9d2317543317b9b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-musl-x64.tar.gz", - "hash": "80612845aa4dc9c814b3a0a0e9bb684919dfa89774c8a142cdaedd4d2e2a15b7caa78e8b06c8a0f4834326492908fb609aa5f388111fa67d7f103eb0cd722668" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-linux-x64.tar.gz", - "hash": "fb855ff04db010594bb7da884e3a86da94e26a43cc5d858724cc0d3d8ee31f6d64eb09558bad3dba540a25082219ba41aa7feb40d1c4f3468c3720ea4c552fda" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-osx-arm64.pkg", - "hash": "59945e6c6392d820929a55aa54bcae43be06213d969ea5fba95c7ea2b2ba8dccb9e9c4cce992ae8ad6aa1b2e0dd3ce9fd7e20f95799ee5c29d9ae94e3d1efcfa" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-osx-arm64.tar.gz", - "hash": "377c52370342183ff575c18d3f49d10468325f272534b00c5246f3aadfb0e7601d61d4b42bb913e8d053965fb591fcdff9b1123f85f8d8973226bf25180df568" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-osx-x64.pkg", - "hash": "26aa84723883e7ceef86aa1235a104398a67706733bbc642f14bd5abf9489c0cc2eb903a81f233f5b5377972d3cad2ac965e107a9d87c778157d42b1b0a591fa" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-osx-x64.tar.gz", - "hash": "b2e0eed94e1217484ccc8ba4aac8d7596b35032ad6041eb46ed71aa821d8bd71f3e1ec9a82c095480f83ef74342582d95b5db287b53772692f1fe3a1953b305b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-arm64.exe", - "hash": "a743bb6b3a3f44a170c65fcfc1ee353c86c3241adeb23c831c973cef0916108d2fc6cec06e5928f03b1978f7ea99cfc1fba450d08a194d38b4003379feaff6dd" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-arm64.zip", - "hash": "b12aa2c7e4c15db130489d620b7f4d100b7815e90f507fef524e302465c4f3a461b1077369d24132b3d9544aa0f375a0db2121cb2a886425b745b281e2345ed9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-x64.exe", - "hash": "304012b1cb095a3c25bc65d9f3d07905a737fcdd60561b96f1c5a3440172b500fd5c17560634964672a5918bfaa713d789ea00ad8b7cae11bb23fe5a44218784" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-x64.zip", - "hash": "a15b537ad683b8298222ef51138e5e14984d96950734f0d261085a621b76f7e41c9045572c148eefd8ff0ce47da2e9036409dd020316f9e2b79c7e5a0b8964c7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-x86.exe", - "hash": "8cbfd5f0da10af335db89815e1465245e4fcc851da1e3c345b3774325db897a1ab0e7cbc9fe86807bf496281432e4bc06e2fd0bd50bf32fec1e4724d09e9b56c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.409/dotnet-sdk-8.0.409-win-x86.zip", - "hash": "0002cb99041569a90a2d442118b2123b2796562b723f6227ed0079855b52b5bb43d6a7e6ce3e09a00ce3427d0b7ce6f0ec98840f38393f355a9959bbd8a5021b" - } - ] - }, - { - "version": "8.0.312", - "version-display": "8.0.312", - "runtime-version": "8.0.16", - "vs-version": "17.10.14", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-arm.tar.gz", - "hash": "80da77a2894e43fbe826145501f37fa9624e87bd136a71235cde2017135315d3157c87bd77dd547a4c594a6f8c7da5d175419aec3fd25911db4719ec792ea2f7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-arm64.tar.gz", - "hash": "cb7571ba11956ad1f4dca02b02a6177b4d0a82f85edda8267dd8498f0f31c2e2e2f6b3ce86e04695e5c93b5f133187d0c5e35d22afbcb676a5a02ec9a123f3b7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-musl-arm.tar.gz", - "hash": "0bc84377090e816e36db83676c5ac7c07ebd91d19123759b82150905b05aec3e133401777fcfaba407e3bdf2f960af4ee8499c46e575b82aecd085eb49afe24e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-musl-arm64.tar.gz", - "hash": "b736bad777c0f6bdeb5b6af875827b454926b8b8059a7aada56435dff1d14d429050b5effca86ed8696f88377ff613f33b3b1f11e50a1dfb8ae20867120c7dd3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-musl-x64.tar.gz", - "hash": "db95fb046d46dc59d8b225d3716c2b323b66e1dcd5394c17e44ff9e383bbcb9367ac733f3fdb581e3e2a1fd4438cfc283161f8b4674502c74651e64592ac3cf0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-linux-x64.tar.gz", - "hash": "6e1ff0e958303d1232a9a1ce2647e74aaabc28a5b93e10a15ddf012eed99db3e3192a3c91e7b1106db6e1b5b2adec8ba04f237457fa8cfaeb9d8bc9a0e890bb6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-osx-arm64.pkg", - "hash": "56df2c35854be277a4d3119f1e2e3b64f9fc643899d7ed3d393d21b795d169db5b2878401921eeb51e6ec96e3ecadf61bfea8e2e2698aef10982f0c3209bcd9c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-osx-arm64.tar.gz", - "hash": "6d27ddda13e41a3a98f18dddff1fee994a969d97dae6601cfb6cbd2758b293da6fda0b85ba12cd1c29e3f7e9a1fa19f13cb2ba673b0c4f8e25d1a2c7d76c5b79" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-osx-x64.pkg", - "hash": "e25f5be8684a3f85b5e91a01e6f3537819d83fb5ba7eed989fb650ea943d2136c2b2678b62b293e7f928f935de10ecf88170d68bc99aaf451ad9dffdcfc91408" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-osx-x64.tar.gz", - "hash": "9d12b2dc59e88d505d7e9fa2028b08969323fc5faa20341ced546fbace5abcb9e577fadce9feb714e5a7543c6a7255359b41beea60c89cd5038d59e86d3fd738" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-arm64.exe", - "hash": "7c299a8564cf1ddc207fc6444cbde63806a11c83171d8e7ea72e70027fa140f0ae69d9f925dafa180b6255186fa9399dfc4ab914963d50453bc87319130f2cc9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-arm64.zip", - "hash": "635bbfdb6a1674ab816ff22da36859b5cffeca48cd00533afa087f8be46b45bb3ff654dd20a2f5a59e5e1fcbfe6eae4f5d54bbed4155a4be1a89ee9727e9e925" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-x64.exe", - "hash": "66a0b376aab3271a63e999e856a79edd38408a32412f02a9b75010f14b20de393b0666869183624385ec3ca20ccd42332b6256557a159a3406b3a72d96a1dadc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-x64.zip", - "hash": "0cd51532ee92772512cda009a01f236c5a774527ab2eb8ed2bb51a8e60afece5cf53c1eef1d8e80e9045f27380cd1de66a3838b44f28b1b34c37dcec3de74429" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-x86.exe", - "hash": "baf79f971556a106cef12be6a56e293e4b675ff703b0128d68b143e6784286c7983a85145ebea592d9f7297817b9d3f085a1b3941fe1d688a98d33fd2dd81277" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.312/dotnet-sdk-8.0.312-win-x86.zip", - "hash": "f4eee7d2303ca5a64b682c47355f587223890d1d2095b5981201349a919d3f610ed7d81f565e6f71710d70052b6220f355077e46f1c67496ee0522db46c068fc" - } - ] - }, - { - "version": "8.0.116", - "version-display": "8.0.116", - "runtime-version": "8.0.16", - "vs-version": "17.8.21", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-arm.tar.gz", - "hash": "15f2f1cd15c5635c22230f33fd30466fbbe78d46de09a93e4b93705737babf369ed7f0b911965eca3f8f6c7a661af60bab15b5520e22329f9a27ed418ac226f5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-arm64.tar.gz", - "hash": "8f20ba4d250b048b2502b795ef49bf03d833332c7c4abe7b712638c4887b4bb76669bc17cd55770642664661fb32b75b184715c8fa6ae55003f72ac83b215643" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-musl-arm.tar.gz", - "hash": "50613d7c32492c992c7d019f184f0971a9114137ec9fb2ebb4921b8699effd828ac2a1f77fb61be1f45cd1fec4933d6e400d4491da2b9106f4759b749494313f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-musl-arm64.tar.gz", - "hash": "c66a101414a40e625330a8cbc859fbb8ac545c871a3429e85d6b789003b3cc2d2026e98105396248ed8a66af29eff19b13e94b0ab5c060aef8e3d38c2f67b376" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-musl-x64.tar.gz", - "hash": "e3b03c4fa86f1dfbc700995300082a81dc4af23df2a59ca3b69c89e0d372e3cc9544bdb05ee02c0f6154b2bac97af000164c524aebd0aa916ec72df329b65384" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-linux-x64.tar.gz", - "hash": "96c634a0d1678429fede9930336ba0351d1510bc4d0456b9d7225c5c9d587d700e8f30e841dfd675fff8a8c709cbef209ca87d11cb657fcb2f212b5eefaec872" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-osx-arm64.pkg", - "hash": "9de49329df0f9e3327831da560d9aab5a7402d42bda4393fd7268c2181248c65e1141f8c241a5c31e8c0744bafd23c4d3eaa02110628ffa6aa8bbeb31ecd5206" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-osx-arm64.tar.gz", - "hash": "d87c937d81c7b415dc2bfedf315dace60896b0ff5bec64d017dab612aac1a54482adc7c59d8612527e622c2256d5e87005a211f3d33890d33fa3cfae001c75d5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-osx-x64.pkg", - "hash": "88b75a65fd099fabdee52cc22ea7aadaf652cff00c0ed62cd44d597c7f323ac89d43ade8a860a857d20e73fb7d4abcea6ad48e0ee6abd55a16190c6acef92485" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-osx-x64.tar.gz", - "hash": "3e3d671a06a1057651aed1378c64ede9dcf7b46b005e68a5d919ce5bf2b5553b99ae82909ff1fa7bf914d67facc11898b0e1cfc48ed1c79c1c4fbf9773085452" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-arm64.exe", - "hash": "5bde262848c44fd07402013e734731926f012d9f3a326608ae5d48e4f5150cdd87ff0c6b50179dc06aa96eb09bfe860b6ba495ea4d1c6a21abb8d4540f624ad2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-arm64.zip", - "hash": "2137faab6c3a23e177949d76241b8ceedb5a6025bc6d255daaeb7b6cb9c8cbd49f1990f19be18e5ec298e1790c83e97ca0503a3cb2e0ccb30559063720c3f436" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-x64.exe", - "hash": "5a98b9bd24d23be86175bc2a0a3c9ca8abdbe099d7863f9f05a6f87a7acef53f5e96c29e3d767ab1cbc3e40f6ebbed655f1137d0aedf471fe37101a319d3b206" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-x64.zip", - "hash": "2b2d692cc1e0700e6fc30eb88b2b6ad792e0f75e87ce195417151f6be64274bb0ec12a13cadc6264ec1b654aed0a7b76b0b4e04cd8840315073cbeda76b21e17" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-x86.exe", - "hash": "b2586d13102145b6b25d7136f3a0d4dda533a7702821195b2ee2577b10a1a1853aa31e982da6066ede07b2950a966ea74f843cc0f446178e7dc945ad5b6faef0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.116/dotnet-sdk-8.0.116-win-x86.zip", - "hash": "bd0926b9bfaaed5888b855e05bfe102bedc032073e70243fb29a984e04687c842722a2175bd252c7ad83299fc4dab13070197989b5a9772711ad9b467605a9ce" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.16", - "version-display": "8.0.16", - "version-aspnetcoremodule": ["18.0.25107.16"], - "vs-version": "17.8.21", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-arm.tar.gz", - "hash": "1df49edcaa5eb1afae6e9b935a0418bc4a93e02bbde834326c1a066095cf28e7607d5d1ca8af7771a9d2e81631e49931a7bf99849c8910791deeeb6a990275c7" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-arm64.tar.gz", - "hash": "a115e0e6253cea7e9a481ed82f57fc96413aa50ce7407932128cba153bdf4aec1bd8cdb9c04d290ff00f8544429feac86ba6e8d2b0f1674c255bd636c2c7e6de" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-musl-arm.tar.gz", - "hash": "4d5302c769d24262adb7c1e1a920c058d98b9e6742dedfeb2a26ae1e84a472d62ce25d137e85e3ea172d6777b91bff67fe8a06325eb162b0cab37090f5e8a4fc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-musl-arm64.tar.gz", - "hash": "22220a425146baca5dafb4193477bf0c4fec3b9ed9ca9b340739f5ca780c404fbec81c97fea7cf31e666e42d299d01733ff39e641932b642e4bc211f55da8642" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-musl-x64.tar.gz", - "hash": "2f8569e1335bd25a1c93be52364dd1386c60d70c5f905ca830093125de20bfd99be0808cf98f6aafd6a0bf0867962d7436a54ea7b8eb42a6fb31eeb5b08e39a2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-linux-x64.tar.gz", - "hash": "0256cac4151acd6ffc82b0b7b6421f304817b6fdc2d9cb232018cf993e40da6b228d415397dd1b1b34859cffe1d8fc7bd7bb470df81128374e5c944a14c58360" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-osx-arm64.tar.gz", - "hash": "8ecc74a95913128e7a5461639541fd8619c0307d496062c63c5022e38afea29f70a338093361d5c309ea51caad5463fbc7ec8ae6b86be27d3e92675642410e17" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-osx-x64.tar.gz", - "hash": "280a8ea601e5d712cd3914d84ff975f878f4b57edf6199e805af93b96856ba62d02f6c9f85af65860f108ccfb0eeadd4b2aafe13a6e492fe3e2180e3454fd8db" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-arm64.exe", - "hash": "aab0f7f4835df8bfd8e97410abfadbb3c57e97d02d569d3653f87272b968f22c097fe2a2d631ab4856d958be31bbac26c99c32f68b560aa44694c6abe36204c4" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-arm64.zip", - "hash": "a69ba2b270dfeaff0ba795dc91a55984860084da34f3b1979bf5107147ea24f3ffe567166c273bc0d13bc6ed5a33d0ba3ca53a0a1a5e077fb2a6d9c63eb5e77f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-x64.exe", - "hash": "93aae0c0c2d66c8400928efb17d45b7342391479e398836194b5d8afedc0b01d7e6b68e0d00173b8e1f95c94d3833f98643980608ad0246d8102827332f0df43" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-x64.zip", - "hash": "30c6a3055f0234b18799edd83eb45056dbe874aead3a9533dbd001c45d548068b8fef930d587ac24cfbf17320cab5131a0103d74763191e5739de7fa7982f85b" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-x86.exe", - "hash": "3220999a4a391068fc8aa8d8c42eaa6e21ea3ab88d877f91dc692b4c68c4f64e0cfb908bcfdd3c7a3c0ed31ecd061e2433b758b46a93911d91da7ffe8c0bdb46" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-8.0.16-win-x86.zip", - "hash": "a7c5033fa2342b52a9ae60bce09378687799a71fc583b88527e9ec9ed10c4507e32cbe7b9368eeaf900b9b411662b4e8363ee195594235514b0b8cc6b2987ea1" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-arm.tar.gz", - "hash": "aa210b5e006bb270006a5fa326cb06beea89d91fdef94c59d46685a5f730d2d9ffcd0c2d06101535beff96390a40ada46f2a536df1831f83c544e9b31c045a50" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-arm64.tar.gz", - "hash": "4987d85cd58b65dc989ecdd1129b8285c27d337c02d12dd08c4f260d986aa8115aeca901fc293acdfa76faaa50dbb7ccab574bf8bc6ede6bf2e8163b148cd7a1" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-musl-arm.tar.gz", - "hash": "882f8951a5ee2cd87a4ff1180aa26b1bc5a7bcbf3d4f05878150425cf2ad4a4ee878064f915e8b57ad1876f96beb16138356875ca496c2668c0ecaf1d81bcf62" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-musl-arm64.tar.gz", - "hash": "1745be6ba0451ec71914ee2448dadeeb800d1033ae327287b3c67888e2722b6a479c9abf8446b12a55fd57d23c457001c4bb79bcdc9d627884cce92a2a938b8c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-musl-x64.tar.gz", - "hash": "837f500e5d22fb8a30dd9ab8e9bcc0533f7332e8d6c49b0e738c46e4c2fabcee3cd66c5f1391124974a5bfbcf70fb39bfb3bb74f1c750f4890e44e366f76da09" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/aspnetcore-runtime-composite-8.0.16-linux-x64.tar.gz", - "hash": "d22f82e34d57dd8138aa662308ccca380d5d25b971f92fe9861dc5dadb5ee64f4b450d22f50c656e2f358eccd914905e4126e577dd02d3c150c5905e35e4e4ed" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.16/dotnet-hosting-8.0.16-win.exe", - "hash": "4062a86a89d5b28da88e591c3e9bdcf1b1fb2fa85bec87bb00ebc0d2fc19d8c9ddedab85465ea0b49e4b2f0fd964800f2a6f5a7818c75bb6ba853e7c3029a690", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.16", - "version-display": "8.0.16", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-arm64.exe", - "hash": "ec7fd7ef63132344dbd88b14ee8cb4b51db74dd3b33be56676473b2f3a2bd3b75e7eb8907d50e2254cb4c0237a59bb21c6cf1f84d8dac19d0ed0ae6e40fb6d5b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-arm64.zip", - "hash": "5d580d9ff39b116f1ca2b26e882416c68e7c2d0fe8b0707f4feeb63a2c49cfac8ad70ec1cb846d6202adcfc71dcee675b975ccfd66429b56ae3e8022c8978217" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-x64.exe", - "hash": "526c0cf217c04f590ab5b88de4bff41f4f4ca13c4efb4f79bbaafe0b24fc48fdae1e769b0011bf8020b1ad6d8fbf6e1f31175045e86ee9c578a4892124828c2f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-x64.zip", - "hash": "819a139a4f54307ea46846f5b86ba24b74f783089cc40287eed715e30647ca31f8ca8d7e29b4b6a488acc33e4f365a4ad421b910ae7c2bae6dafff51ea33d8db" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-x86.exe", - "hash": "f91558eba877dd98aa2c69e7db5cb1d78519e5c958c2d6b153e6a7412ecfe9c91c6f5d38ed762d698d08775b05d2746aaa617c032024ef9d2d568fe1e2e96aa7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.16/windowsdesktop-runtime-8.0.16-win-x86.zip", - "hash": "199e5ed9317311140b82bcb03a90ba87e7100d8c941390d613e5097aa003ee9386e7877dcea6ec558509b2f767df5812ea8cb96c7793d0d90c84531cb4b87ebc" - } - ] - } - }, - { - "release-date": "2025-04-08", - "release-version": "8.0.15", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-26682", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-26682" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.15/8.0.15.md", - "runtime": { - "version": "8.0.15", - "version-display": "8.0.15", - "vs-version": "17.8.20, 17.10.13, 17.12.7, 17.13.6", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-arm.tar.gz", - "hash": "2b6f4f7285f9cdc39ef48464081e9962a1f0abcd468c84e88a4d10a7e175d30ff1f3b58c48a483958f97e1a33a5c8a223510313066b5a6e5b35d0dead86ddefa" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-arm64.tar.gz", - "hash": "f63359a5da4798f8fdfbf0beefd0aa9cd69d5953b2629bc1c68ecc67083572fa9370a89c18e3b4bdc23671df657da756ec6306951f5cadf20062a8bd77ea400c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-musl-arm.tar.gz", - "hash": "4a72cb3e0a3994ac9ad8c18be64a6189d56221274cff31da74bf0b8aba02d68260f056a5734773e4c4a34851fe42e614e7720eb5197328f5e76076f850c576f3" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-musl-arm64.tar.gz", - "hash": "a52a3d2518301fd6571a16620b8802022da775acd70d78195bd75ed4729c0d21fa4f1b5b86869c11fb9f3bdea878deabc3c9d09ea31d8d2b2e43bc22e3b76f3d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-musl-x64.tar.gz", - "hash": "424fb3f807c809271752f79189abee1e6cf9f2326e1cbb5866cbc030d6b6deae98a3913fb5ecb5f944f8c13869fa4c53baa19ddeba1c2b07f9ae72739f061a74" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-linux-x64.tar.gz", - "hash": "833a848541ba6f71c8792168914856e16de6f71cf0a481c5990f3622b0e3f83123e6024bcabf6b955a7c92e8e904181d40d3bd612595a0d8c47a421267a91ca6" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-osx-arm64.pkg", - "hash": "ee95993389b71dfe1c49507db923b95465a05491674e433f33ac27a3cbbd462221ec00d21ea4af63683d8a7be4a8b3b13f8715af638be0e22f8fcb788cc6f211" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-osx-arm64.tar.gz", - "hash": "7e70cd78febcf958c2094de0c722f8338a633463685aa23b5949d01addb48822dfacc53ed9c4d5f5fce286caf36587c118c24b73a901decea769ca6cad040df4" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-osx-x64.pkg", - "hash": "c2e89350f344f1def8ac2d932237ab08c18c14b8edf96bc51291432d4475b8f6f28a25f221229c741cce41715f2fb879d09d4f4d49ab4980a3ba7fe33e1466e8" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-osx-x64.tar.gz", - "hash": "e488b4dca3cb08a144b50d4428e4185b7a8cf7486886acfee8fc00c1145bd82d7bc7e66acea76a575869f16578babc6708fe1045839deca6ca848188ca59a51c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-arm64.exe", - "hash": "96e404c3b017e1c648004b0c1a4fb6289620455201e26af96956b08c1c8f1870825f41d9150939fd4470eae4dea8c8708c1875f637d8f6c8f78ee5c555dd48f8" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-arm64.zip", - "hash": "729e77328306c68ad78ce3fe08f0b90634bbfdbbbd3a011262566d5c5f96925f1a10cb79e6394cd603ceddb2f46cf20f5a0b0d1415d548585c80fa9467190597" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-x64.exe", - "hash": "cc470cac15368ce0d4ea9f9cc7db8baf4290584a92f318f1f7df8397e440ee7e942678da8a56f44057f6fe0952bac30055d6d8b55d4f4f0c6559ad5dbf78783e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-x64.zip", - "hash": "1d486895ecc1c99586a8dd221a1a21c507ce42eaf4262345f93f0a2cae7e23733360b742f2d5b803c56a1199cb00ca20a5ee5c911d63118e1930e07068a7cccb" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-x86.exe", - "hash": "2a2178fa7a4946c350c6c9ddc3fcdd9713a2130c2ba4f6d46d0350de8793f43fc64cbde4d1b40fca691591e68ffdccf0b915b48797315e5e3d794489e95e6c20" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.15/dotnet-runtime-8.0.15-win-x86.zip", - "hash": "b9980345c84443381b92d8d3c56a90244ec90e6f7edfbf09dd665b29a807705592606997e7e85bb7f6357f49feb5aa41506ec1426a4208352a326736bda6c441" - } - ] - }, - "sdk": { - "version": "8.0.408", - "version-display": "8.0.408", - "runtime-version": "8.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-arm.tar.gz", - "hash": "9686fc37b42a322e8acaf3991f68837cfef10a41aef323286331e63123ca34a9367bf4274dd14ce019ca37345d6d868cfbfe4fbcd353f57fd3035151b97983f9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-arm64.tar.gz", - "hash": "99a03d7105c14614a1a8d69673a9278315ec762096b302c7632745b3890a6d2d801df7c1f185257c9af0374ae840b942a8b60dde0eace68abec0b6962fd9213c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-arm.tar.gz", - "hash": "ff8a2c996da12add674d8e44cae7e287133c07a35fe8c1a314e85140c449dbc896452c718e43127f5528c75e1b8940feb375f47452324132e419e2460ad372ef" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-arm64.tar.gz", - "hash": "eb8716cbae1d1fba2170c925aa32e4d78e00df67ce5d7049e2252627350551dd06e5f0c79a548bf04d28e561e76d87994e1550133104e534903772b7e44b33a9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-x64.tar.gz", - "hash": "0ab0c0d52985bde69b594454b5e1d9e1a6e003159656ee2972058d2960cfb0968dbe4d470d8eb21dcea41ff594976520e189a8e13afc44a419ca08e456df36e1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-x64.tar.gz", - "hash": "a9a1e54d10a37f91e1bd9b2e9e8ce6ed31917559898e4d6d36296bd5324f67cc7a13a9106703003cbebc5a7ee50188747ba816f5d828c0cb3a4a9f9920ebac4a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-arm64.pkg", - "hash": "7022d8102cc7d37bc25bdaaa8d998676e16c45f1cb6fe0c0d071f600d88b41d9654b288f15d8b93b2b19f50789bb54d7b1f916c9056fa779c0cbceac42ccc4e2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-arm64.tar.gz", - "hash": "cec76e2598460fd0367a6d810cfad31dce7e64f52cb6471e05d9a69725827920c446015efaf4d11cd934884a6ba6bd90b8a872b4407cf518dee291d8006b2106" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-x64.pkg", - "hash": "38fb87c7dd5571c71cf4ecaca3d5f87f4a629bd06a1dae0413a1ffffc40a5e3fad251243994d972d8ca3eb81b6ef1a42d298a21ae2b98bc013f083e8964819c6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-x64.tar.gz", - "hash": "77f536f65f5dff250e903abe560505955bbe4d6a7e5aa101c9711289d19b68ca318b7a03e536a396c912c6e75659205800ec916160fac4bf2007677f2e3ed36f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-arm64.exe", - "hash": "98232770e79f60dc35b3b753f875c7ec333728ca994ccd84388ef370c3599787343a8b11e70275f4d27ece10c8d9b640be572f321a4c3432b6225b092e903319" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-arm64.zip", - "hash": "d20039dbc61d684a5fccc081d9112c59fe36024831f32ed521b9bba0198e19a2d698a8fc113825f46ceb0d3c96e7de663eb8005ebdcaa48fbf2cd09467428762" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x64.exe", - "hash": "cd2065a0cd00cd5953fcd08253082484cf8aa8b7a1305d79b2c7ae963f78652faac5ddf12bc8721addd2e23a105e487c95d6f2186818dd4665c4abe324d61bb7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x64.zip", - "hash": "49ff4363663d28b8f55b7af4cad4cb469cf9ff1bc6e826117b2381180a7c5e7c8d5aaefd02c7b5ae06c87609816858bbf554c68a8308ac6260d3d5b432123272" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x86.exe", - "hash": "3da6032fc1352508f982fd81f2cc9e78127e4b678d08d2683b4a982ed52cfdd54a379223bb9c46e01778b8a01a2ffa0bf49e504b8c7500e426e4257adc1394f9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x86.zip", - "hash": "6c7bb3c815cfcf8640448299b00dabc58fa6f074c6d3b88bcdeb79dc01c165e63df2ae26fcb566a0e7bb9477140e910fc1d2d19b495a4d2127b90c2344ff0752" - } - ] - }, - "sdks": [ - { - "version": "8.0.408", - "version-display": "8.0.408", - "runtime-version": "8.0.15", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-arm.tar.gz", - "hash": "9686fc37b42a322e8acaf3991f68837cfef10a41aef323286331e63123ca34a9367bf4274dd14ce019ca37345d6d868cfbfe4fbcd353f57fd3035151b97983f9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-arm64.tar.gz", - "hash": "99a03d7105c14614a1a8d69673a9278315ec762096b302c7632745b3890a6d2d801df7c1f185257c9af0374ae840b942a8b60dde0eace68abec0b6962fd9213c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-arm.tar.gz", - "hash": "ff8a2c996da12add674d8e44cae7e287133c07a35fe8c1a314e85140c449dbc896452c718e43127f5528c75e1b8940feb375f47452324132e419e2460ad372ef" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-arm64.tar.gz", - "hash": "eb8716cbae1d1fba2170c925aa32e4d78e00df67ce5d7049e2252627350551dd06e5f0c79a548bf04d28e561e76d87994e1550133104e534903772b7e44b33a9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-musl-x64.tar.gz", - "hash": "0ab0c0d52985bde69b594454b5e1d9e1a6e003159656ee2972058d2960cfb0968dbe4d470d8eb21dcea41ff594976520e189a8e13afc44a419ca08e456df36e1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-linux-x64.tar.gz", - "hash": "a9a1e54d10a37f91e1bd9b2e9e8ce6ed31917559898e4d6d36296bd5324f67cc7a13a9106703003cbebc5a7ee50188747ba816f5d828c0cb3a4a9f9920ebac4a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-arm64.pkg", - "hash": "7022d8102cc7d37bc25bdaaa8d998676e16c45f1cb6fe0c0d071f600d88b41d9654b288f15d8b93b2b19f50789bb54d7b1f916c9056fa779c0cbceac42ccc4e2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-arm64.tar.gz", - "hash": "cec76e2598460fd0367a6d810cfad31dce7e64f52cb6471e05d9a69725827920c446015efaf4d11cd934884a6ba6bd90b8a872b4407cf518dee291d8006b2106" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-x64.pkg", - "hash": "38fb87c7dd5571c71cf4ecaca3d5f87f4a629bd06a1dae0413a1ffffc40a5e3fad251243994d972d8ca3eb81b6ef1a42d298a21ae2b98bc013f083e8964819c6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-osx-x64.tar.gz", - "hash": "77f536f65f5dff250e903abe560505955bbe4d6a7e5aa101c9711289d19b68ca318b7a03e536a396c912c6e75659205800ec916160fac4bf2007677f2e3ed36f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-arm64.exe", - "hash": "98232770e79f60dc35b3b753f875c7ec333728ca994ccd84388ef370c3599787343a8b11e70275f4d27ece10c8d9b640be572f321a4c3432b6225b092e903319" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-arm64.zip", - "hash": "d20039dbc61d684a5fccc081d9112c59fe36024831f32ed521b9bba0198e19a2d698a8fc113825f46ceb0d3c96e7de663eb8005ebdcaa48fbf2cd09467428762" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x64.exe", - "hash": "cd2065a0cd00cd5953fcd08253082484cf8aa8b7a1305d79b2c7ae963f78652faac5ddf12bc8721addd2e23a105e487c95d6f2186818dd4665c4abe324d61bb7" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x64.zip", - "hash": "49ff4363663d28b8f55b7af4cad4cb469cf9ff1bc6e826117b2381180a7c5e7c8d5aaefd02c7b5ae06c87609816858bbf554c68a8308ac6260d3d5b432123272" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x86.exe", - "hash": "3da6032fc1352508f982fd81f2cc9e78127e4b678d08d2683b4a982ed52cfdd54a379223bb9c46e01778b8a01a2ffa0bf49e504b8c7500e426e4257adc1394f9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.408/dotnet-sdk-8.0.408-win-x86.zip", - "hash": "6c7bb3c815cfcf8640448299b00dabc58fa6f074c6d3b88bcdeb79dc01c165e63df2ae26fcb566a0e7bb9477140e910fc1d2d19b495a4d2127b90c2344ff0752" - } - ] - }, - { - "version": "8.0.311", - "version-display": "8.0.311", - "runtime-version": "8.0.15", - "vs-version": "17.10.13", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-arm.tar.gz", - "hash": "e9f1287fa047d020e5efa69ea6cfde76574f90d8be7d0623e450e9b785a01d6c466e9a5839bd250159dfb636a2a7e6919aaae7f0427aabe451140b32fa6f2d3a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-arm64.tar.gz", - "hash": "7000ce5547daf88a7133b3a92e6b628d39e3159adf588be8141cdf0d116d1016db129fd81680a13f2e01aade372cfb89eccc232719521d5fa3e7bdda0af1fe39" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-musl-arm.tar.gz", - "hash": "c2cbe3f026c4dae537f6fd0bb6d8bd094889bd823b3e1bacadf038322404224618d40d7efa670f90a40749688efab57646587581e758b35230157316e07aaa6b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-musl-arm64.tar.gz", - "hash": "681e294ca5c19c4622399911a32a45d427e3a43354df97f97ca167a8999e62d8799237051216e94968da2f6a14dd15b5eb6e2cc57f8ac33710793ce7ed017e02" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-musl-x64.tar.gz", - "hash": "c97bf4115d8d6dee80717a489d152acb27f89116e9e57e5b2ab13fe961279d99ad3c0f130b498abe0bfd197508fd36b9b69663fa2b10a492bb886fce886ef4df" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-linux-x64.tar.gz", - "hash": "7253306c34a0be2a059414cf8e741611e50644263c9e223a7f139447b7f757abaabfb37155a339346ea03debed70b4143362f40cf9b2617c6bd851ce307512e9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-osx-arm64.pkg", - "hash": "c2623ef7381a87687f9d7b1bf33fb7e9f55750978aab49196651328abb9cdbfaae1c6df7b555548c28a7eb0d57c916ba64f0aa07a21b43f58831f32c119c0579" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-osx-arm64.tar.gz", - "hash": "902514cf3c2f1754b2e8edfb16e275eea2c36b2e2f5a296010832c0efcb046e6d6fc8b6233c5f20a0b0727fd612bfef05571bfaea7b39d8b49ee485aa8cf3221" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-osx-x64.pkg", - "hash": "1ef65b2deaa709ac1ac8313f7e05e9a3688f66d9dfe6a276f64f2a7d11cce6ea28b261d8a5ce5ec1aa8e62d51d32bce80f081664486164b75eb3320b341fe9c1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-osx-x64.tar.gz", - "hash": "296bc7714f7fc68325af1ba9a4f09b092bbacfad6856b5546b6be05cf4e4c1248d7a6e667bd0194ece926e837d306f6d2337c0848f10596788b59ac623892943" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-arm64.exe", - "hash": "ffeb27dda114a4a1d527a53aaf4d487dea4c6eb25a937930001887a6875d61f4df967cf1539c7674aae5526c9fda24dd0290c786e59fe970c0c6704069be81a2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-arm64.zip", - "hash": "809349cee6d250c978b683433270c299de73d3c2c16d56aa348e18b2f4ba0c9d13be02a15e981cf59fe13a4f317e6f7a2ff5720176f08699868ae1d5e2cfd80e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-x64.exe", - "hash": "20e6a4fcd0e3f0a8bb1788a9735db928e8c543b054b4df03f4236924ab69faca25932f7954393cbb3c94c0a1511377e439ec11504a6b3f25e8d237553e439da5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-x64.zip", - "hash": "0db638c0d5b229fd3968ab6365bf96e58ccb578837ead5c799c53bd2f61978b7003af44db05caea41862019f1a7f8e31dffb774d468360075d7ab7e8b9cd00de" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-x86.exe", - "hash": "42519f50aacbaaa4259434611a36b0fe9dd3b77bad82fb553b83cda9101a9f5f543344be912c107d151c75c1996c6cc534ec8da409bc0f2d1aba2cb96310ec0c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.311/dotnet-sdk-8.0.311-win-x86.zip", - "hash": "8f6b1947b765e69d60281f2f722cc1bef8e6aa66847e7662efbcc129873da74935314acddb4b3545bfa91ac75a28364b01d2cb1f2a8f3e6dfd479431f7e4386a" - } - ] - }, - { - "version": "8.0.115", - "version-display": "8.0.115", - "runtime-version": "8.0.15", - "vs-version": "17.8.20", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-arm.tar.gz", - "hash": "755c0cc9d3dcda69c8048e81a0aad92b23dc22f8321d04721d5490d66820473622937b2209f445792641b5c4238a24fcc06e31f9e290106ae2f3883bf32e3fc8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-arm64.tar.gz", - "hash": "d8774de78d567157b1808fefacc919529c41175ffa46886d25e1473689c221643c0f893edf37846c6d6fe6b7cf408676769170e8c613c80eafdb67892ef6c570" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-musl-arm.tar.gz", - "hash": "7b3bcca17aa1323faab10b39a281a1820d209d5bf47a5fad8822d137f202cded4e3c772f67e3e5b3757891556eac0d5d94ada1804c2abad7b11e5ef03bd4fe6b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-musl-arm64.tar.gz", - "hash": "d48a0af7bde5eeec7c5a24f62973a40d4d10e69ec1bde1e922cbc80dd8c9ba5a589e7ae08c4838b7fc3f7e2fa8b92f5bd9330eb1c5a7ac2e5344f6e915bbb7e2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-musl-x64.tar.gz", - "hash": "f39811af94e5d2ee2787c07bda3624a713c98d15f2134ea9765f8cf9e65427d8f38fd9aeba17ebd936e3566c26a011e9c4b5806ce7ba3dfdc0cc6a7ce96d307f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-linux-x64.tar.gz", - "hash": "f3afa0c37fd0481f78eacbd8f326af665c4e6594067edac130996f50c527370cc2439d1a94843dccc2e3efdb3c446e6183496822ddfb68326577f26a804eac53" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-osx-arm64.pkg", - "hash": "40255339383c7bb178db721eaa2355462ef4856a57c0ac889e18aeacd45b32a949646b573dc9ff7e54221360e7dd30934dbf26abc889651ed5ad36da03627f64" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-osx-arm64.tar.gz", - "hash": "2a12f510a771676863b423da9d283d619fe103e2b4c372b758d956320be6cedb8a4029bb5a46c8ccda4ad0a1ec24be22428e92de4a537209f2b2c354dd48b24e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-osx-x64.pkg", - "hash": "600314da4eff30321c8a81c4ec365f74ee5cad052c65aa84b26bac3a039e887f7f5c9838a8b10aa0e539a6eb8f42cb624906b8004b469158a9f819bcd6bdc57d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-osx-x64.tar.gz", - "hash": "d748da7b91d574111ddb487865a2cf3659e1f75113ee9cd8676bc3e402956c145fa551955f6f4f9517b2caae98f4c6985424acffe5a80a2bf62504cd6cf54383" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-arm64.exe", - "hash": "bc67e9bda55cb05e952a91bfd86c0f7014da336e1509d15edea547dd9fd851770114b8c14af07bb28498026ba9ac76b46683df6683c61b294dd917095a4d5714" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-arm64.zip", - "hash": "0e5841fa4b8aaba72e0340b993f0027970aa80513abdcb094dd288053d0719b40cc8830f48291ea200b5effe0ba7e268cccb28397b0936d38368947f35456051" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-x64.exe", - "hash": "60e7a54f6dc5f1faf1f600c024543eff157e95aa7a3fc2dbfbae27be83b8948945aa71df6144e176e985807aef932aa63bbe86c63415e5a42be5338b88464487" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-x64.zip", - "hash": "3b0b57a031fd1cf42fc558ad8371045d8abcc9f6ae2406d81e5df0fdfa1b24821328b6dfe790014d36b5b3503f9bb8a36c5b41168b33b58c55946c5334651aac" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-x86.exe", - "hash": "54eaf2a4ee2b122bf23b73a8974c1c19fd8470ac5bafe543a8e0a4421ea95e2f5758703f12a0ae9bda4914b0793d07d94b78315cff6df948df97df6a83a96810" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.115/dotnet-sdk-8.0.115-win-x86.zip", - "hash": "733b4967ac977d65b672738da661502ffb1393d4afeb9ca5841abd26d3534467b6611eac9d0dd9d8eb1e746f42dac7107c750cee5f144d7118b671fdf5eceecb" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.15", - "version-display": "8.0.15", - "version-aspnetcoremodule": ["18.0.25074.15"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-arm.tar.gz", - "hash": "0995e596c1fd02f5e89a7f695b93976af253841ef30fe83a05310a3fcf4e069692c5620e80355dcd3fe6ae32e7b5adbae0bb3f0ff35e334c2f28f14c44dca6ef" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-arm64.tar.gz", - "hash": "967d43a9387d226ed804cfee35144a69f249f6206b73ed0d8915dad358fede3c5ddc3ec963a5c35400b62dc57265da1dbc07d793cf5e3940ce94e54783312f0e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-musl-arm.tar.gz", - "hash": "fd6890890dd0fccd13d817011e536214dded1b0d18eacd346954751a4642e0d6e5bcdcfaa485964085f5700f41ca009bd94f948ffce705a21ffbcc419ca2daa3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-musl-arm64.tar.gz", - "hash": "025b2cc23591a1475755fc3b321e7d05aacda34c5616170eb47e4842bd978a4636d47d87c0666dadf7592ffd82db59427bcef953a0a5d1842d8c321d01c01e6e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-musl-x64.tar.gz", - "hash": "af6f6d7f84b404f44f2f3322407b68f3962ddb06a0ea57db7713cef21980ad379919a2035c60aa7b028d0720381f5965474b64446c9b25a9e58289631e04c15a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-linux-x64.tar.gz", - "hash": "3ca5669d4aff60f1bf8cecb99de05d6b489db150caa7c184d1a8bcdf085c611533e05ad7bd0c5091c726850611cff6b0477ef9b1dbb192ebe9055c03de1cf6d8" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-osx-arm64.tar.gz", - "hash": "28dcc5503e6eb767a655e67f69ddd2800d19ceebf595cc538aef4a567bfcb6b2b1058d9a3de2bdf7f1395eae2b8c485028d5c67ee9c70b9ab0158ab0e08fe85c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-osx-x64.tar.gz", - "hash": "54acf78b42145b4686ab55c1ae47ffb1365ecdcbe77185572ef2825fde9cadd111b526046d5ac402cbb046b7bc09880d87b56f20461fc475189ac838e753a55a" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-arm64.exe", - "hash": "2692d912cb3f8698b7ffbbcb94bdd34107367b4eb485d4a62966b0f355b65ac0ef7cb051de5f7a4fcc67b82a6eaaf2089c7b00d7e24259088086512f0c9a194a" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-arm64.zip", - "hash": "7a1f4408d6f33f0f27d3257c09ed08f599b010145dac1f0b9ab43b88bea2ff338105a18d13b5fdb4d3ada63b4bce09b1bd9ca1b93eed0a67047a967707b064d8" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-x64.exe", - "hash": "e17e74f598030bc3a3f5c3cf8b6bb8f7873fe19a79deb70822dcc3aa7d5fff8dc0a77cc5a1833df9168ec634dacb7adb2837203bf75bc99d082b70bd678ef7ab" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-x64.zip", - "hash": "f2edd342af9fb031a28cd0257454463080a8429769504952b6f35d869de0d23585733efebd13d2c676e235928bf26ae5d860397c566e7f9a318a8ed450d4cdde" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-x86.exe", - "hash": "6e10ae6deaddf36b08900cffb7d55d9f1a7a66cb9b96d4a45e75abe64e178f61adfe8c2ba1bfd5ddad69634355283cd4ae35416d2367b545dda660f52905d991" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-8.0.15-win-x86.zip", - "hash": "ea5fa0ac7e8a9b3cf68adb6801ddd62795df3ca4afec33d508b34f21ad1afb950d5a457edf6e09dc3e501170c83b11250178e808a8a1b09f619c7ca6de74eef3" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-arm.tar.gz", - "hash": "0312e48f6a79fa2536b3a500da1ec860db53e8e8853d96fc9b04bc4c0a4df58df2a3a357e9710fea1b98d332d87bc625c92f32439959be3c79f9c6d8fce7afb0" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-arm64.tar.gz", - "hash": "66869d4aa483299c765d3ac1bd1a4062beb6d8730cf3b7737954ff225eb94253f15b4dc0e5ed6fb5569ae4aff89ff676033c39969279d6a088cdc981063f06e3" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-musl-arm.tar.gz", - "hash": "04b084d354d81ea3faf153b7facda8312c8d9e3dd0ae94a4e3d08c1fb1cdb8063f7ecdeba97aef7b0f589f6d143ece2c649413c90aab927ca447ece3a02ec642" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-musl-arm64.tar.gz", - "hash": "9c105c7e65a99d4e2ddd709f5e70fa2ab981b094b4271a2725ca5668c98249c401eb002c8746c85fbd7223d33987aadd8fbb675302e486d238b104333a948fbc" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-musl-x64.tar.gz", - "hash": "3f10fdd133879ba6d59f498135aeda4198877f6fb6473fffff5bd9a93a835f8cbd6c3e36f27fe3cad041b46ac3aeb77f0e56762736ab192448832dd15703292f" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/aspnetcore-runtime-composite-8.0.15-linux-x64.tar.gz", - "hash": "ab8df98193760e85f25511bc09127815bd6063e966683314a76c2931f6e410c5c73c1c3e4974b5e287ce93cc89545c38fa1845f1d521f2678bba36c16a9aa0ee" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.15/dotnet-hosting-8.0.15-win.exe", - "hash": "37d493d735706ca5b5f11ada00088cf21e4720ca954d91270b2d6fda749c783fea1d5d5fc58a3eaf6002822ed68d60085d63ad6445017c1ab33de082c57e2dbe", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.15", - "version-display": "8.0.15", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-arm64.exe", - "hash": "17c7ab6726c93d5e85a8f2d808ba64f42531f38d7dec65af1f3dd618c53103273ac129dcff33bb1689f8a4e45a5b252c0ad430ce3adfaddba93695276d757344" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-arm64.zip", - "hash": "5691c333a87beec863b433b4d2f4e002bd91e92ae3715b1c13d11288292ad95c3ec42998bbf3c8652ea4a3e8133c088a52c09746d1446b73d4c138d904bfce67" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-x64.exe", - "hash": "c5f12718adcd48cf8689f080de7799071cbe8f35b0fc9ce7a80f13812137c868004ccd5ea035d8e443216e70e15fdfcf013556c7cb3b1b02636acb0323b3574e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-x64.zip", - "hash": "be1867291132136d0ed26d3cbc267691939287fa653f41d28f61af5511bc8c91de0899673aa50132d9999d607a364da20c648da96a971687d392df4066ca2c0f" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-x86.exe", - "hash": "74b104a49fb956d5840a2e64e84d82214fe1b18ae043be8a55d9a01450f34ce1b8ba562e990eea9e69a65f0f95573d9ea26eed48232bdba2be28d1c330143804" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.15/windowsdesktop-runtime-8.0.15-win-x86.zip", - "hash": "44a014b6adda63a48a48d0f12a215803b27112463c973991670997f3c8974224a21832d0ec22567d2a869bb0b6553c569ca5f9c6509df15729a47c78dc10a3fc" - } - ] - } - }, - { - "release-date": "2025-03-11", - "release-version": "8.0.14", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-24070", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-24070" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.14/8.0.14.md", - "runtime": { - "version": "8.0.14", - "version-display": "8.0.14", - "vs-version": "17.8.19, 17.10.12, 17.12.6, 17.13.3", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-arm.tar.gz", - "hash": "6bbb0ef4d8857ebb9bd9710fce985af61ef0494ae7949ec2b01d8951b15306bcb9ec4e8e45ead8013828dfa92e9394d6beb01ad5fc4c6ae2a3fb9916476b1661" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-arm64.tar.gz", - "hash": "519b6d0a613b1ad3f76cd8316c29dcf4a94f605e3685ffa979cc632b32666cc9b37a08a84a8f9b22dba8bd63112e5c65386ce4b75a8f8df50c528c3a1a395295" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-musl-arm.tar.gz", - "hash": "4f071b8e53c8046037bdc945c8dd61955df074820e8e7bc3922a97fe1bcc9574635c9a0aab643d5d4d5b8928de12d14435bd6eb097c189bd850d4f704dbbdadc" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-musl-arm64.tar.gz", - "hash": "b428b6d54414af5147bb6a806f978945540b1adb36a5d432d94dedeb798e2cffa279cdf327a5464357743b526700487aef7e6b118ceecd9d4b623400b04ae5db" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-musl-x64.tar.gz", - "hash": "f9ddf59984ea9692a624ca1e7af2783693c564979eaf460dd4fbb3b72070faada1ee36a20895c492c886f061abf0dbb8327b1f8e0581cbe4991666f092b09789" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-linux-x64.tar.gz", - "hash": "5b7c7300dd30084650a2265b6618f366f099dff2b292482e5e05f14f3a0b0850c658ecf383683e1dce4e753a616fd2e3c169c1734a679afcc4c0cad488b9f8a0" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-osx-arm64.pkg", - "hash": "f0e3a41fc8931b18b709ecf9cb9b50bec4efefbe7ec17bfa9c1d0f72f69244fee61ced63517fea81bc1b76e22ca66b198d4d336ba6e00b0cb34c27228e57b266" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-osx-arm64.tar.gz", - "hash": "9a977973f04f35d5d634240174beed3a5eb7821e905422249ee94972b96948252843620782569d9f886b77d7d6ab3f34f555d11c51b1133e4437c0398c14240f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-osx-x64.pkg", - "hash": "2be5e088a2517cf10cf1a7ef54ffc2c207c7bf6e648509155bffd813489a5b1edd817b4ab21701d29e66cc5dbfe1c25fe0d1b19f6b82be621dcc43836945f0de" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-osx-x64.tar.gz", - "hash": "110ddc273596770b1e638a7b2464b49c6abe9bbcc1241e4447c949ba1d9afe01e9564d9de7485281b5de2c6c22746d6156d2193332b8d212bffa42dbba54e831" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-arm64.exe", - "hash": "10ef4653df9deb4d7f93b82d3e75061dd9ba7b557eed4a96e9244688bd9857856094e6d39c6534c563df8bb59dafc3439d5a67fffaef65abf6dc506a0fcc8405" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-arm64.zip", - "hash": "e56db3ce4265b1018347ab3df813d10e0d575e90548eb237050bbf9c7e5c643162af880d27f00af68b855ef351b91555d4a97a7a61508c1a8c10ac42708f5f3e" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-x64.exe", - "hash": "13509b15a1b4a3823d6165792fe124c41beee4e4d265fedb0b1af96da47e400d9c5f5521aff60c6f8e1416e3d3e1f4a90d814b8fd2c2821871f2f1079f1be6a0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-x64.zip", - "hash": "217e502f94d5e3dc712b34248ab512d98cc53f06f1b629ee67ec638db3b7542cd9f662d930e98e4d9e898a3a81854f6cc7b09bf5a6bff22f52c5855d0d4621d4" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-x86.exe", - "hash": "d41465810c015a71f34103b60e988b65146de0bb32df78adf4ca7ab9b06ce33d183ec1d2d854a8b7b6b0c83ad8bba4ab0b709f54612ccfd854928992fc2ffbde" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.14/dotnet-runtime-8.0.14-win-x86.zip", - "hash": "27cabd682580b93dd47a7b80ff375553572bcdeec5e56683c515fc4ac22f8fed72dab4178bde27ee1ac94f1837e3450ecaec8e05371fb729dc6baa97152e0a04" - } - ] - }, - "sdk": { - "version": "8.0.407", - "version-display": "8.0.407", - "runtime-version": "8.0.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-arm.tar.gz", - "hash": "48c35bb13cc84b8eba0968554832102f190e94e9ac3e14f66c581496dea06a0d7f8b56fc037d5716e04250f254316e35bfc1035f37bedbf7ffc5cf872783334a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-arm64.tar.gz", - "hash": "7d98bb536c899de6c5612b0543def3a76c9a24f59a0fc2b32671e1e98063c6fe17fe70afe3baee38f074d0b47eed577e989d6d07f41f77602678b4eddddeda0b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-arm.tar.gz", - "hash": "a416bdc19496c1a8782fb1cbc9687fa39a96aba56e37c005c1b0b4d4019e4167a292def15aeb3b65c251d17ec126bf1a77379891d417977a302c3006140c192a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-arm64.tar.gz", - "hash": "decc5010994cbe14f14089ff2e01492700b720fd4b4dfdff54ba11955b193775b39270dabb310e290a7c371e2f2978a10241067911dfd0e7d67b699a6cce3559" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-x64.tar.gz", - "hash": "a1d5b660f9f43fa9b83c3c2cfe54b37f74b8f4e6c8a00ac6f0fd3203858e82f3e6f26d98cda8ee9c9c523478db3260848eebaad15b28694b23a1d492663b299c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-x64.tar.gz", - "hash": "eb62153ecc9e53a5422ff44f1c6966a89ee442a91f779e971aaa47ad6a66bb131af9b38e4ca012567547b9357b72b0476b77d2b7399a38a9224a8e6ca02a8155" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-arm64.pkg", - "hash": "c7a5095a5f6f2532e3fb0147f1ed1c4e85ecac78da67f5e31ce3457094a7d38d14e8cfa063505fdb17815bad59b74d7fbb45af6cee657b92c2c7422b57c76085" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-arm64.tar.gz", - "hash": "1e0c8debe348e7e6dc3fb747207e94b5b8c526c9bad68b4465449b8c7bc2ab2259cf0444afb3946609947f960b29729ce58ab07b4a89abdb85c03beac3b99dbf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-x64.pkg", - "hash": "da135ca6ce5749ac0e5f44b49edb73ddd0262b23821be712c8aef2dc985755809dc6b021fe80c10a034e1c51d8f3eff45667a383521e1b3d03655da2c8db0f00" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-x64.tar.gz", - "hash": "6915935cf037ba580aab75f05ecb83aeb2322186909608ebf2b8713d5bf118833ac6e0e08eee075a4dc40ddf5fb8863251e9779906db31de6f3c14b41891f505" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-arm64.exe", - "hash": "4c69db5b2ca1539a9a12ee7a9a5fc0cbf5bdce06b96b9a8c27f14036102866efb449bdf12c7cc6f0e1b83c8f11c8e03a0777b4dddf665a7752d750b832d8f012" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-arm64.zip", - "hash": "153ca419ed38d745ef1c4b27dafc56835e27248a55dab8ba060d47f3e18eb3be99bc0a584971c34c9194920fe7aea96f0050295e1740aea77e5502c295ca7f1f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x64.exe", - "hash": "5245bf8a506798b1373b84bc9c3ecc45d58a662fd8c840be082f3ed13567eb8fb52a21954ded8e2f65226342ab0cf406a016f7f98a29b08c62cfdbd9367c0d46" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x64.zip", - "hash": "c36431c5f6fc2b4fc6ed983b33f4ace2b3d9062afafe83e4a17f8e58745100f1714938e62529d3011cc02b4ce5c63db9c9cddf438008aa6e5b4f77507772acb2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x86.exe", - "hash": "4102dcfe9ff264c2843f757993d04f226e96d8b165e208e75408619da4100e0d0b77b86be225d9742f16f69d9d20208743b08246a59c03d188a9234b8a7cd45e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x86.zip", - "hash": "026ad4bd93818c5574ca0e6972cf4ce20ed9c6170907d86eba038829958845def5c5673a1c282a328eb9c8724fb2f78a50ff54e2fc044f14e6e5f577667e167c" - } - ] - }, - "sdks": [ - { - "version": "8.0.407", - "version-display": "8.0.407", - "runtime-version": "8.0.14", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-arm.tar.gz", - "hash": "48c35bb13cc84b8eba0968554832102f190e94e9ac3e14f66c581496dea06a0d7f8b56fc037d5716e04250f254316e35bfc1035f37bedbf7ffc5cf872783334a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-arm64.tar.gz", - "hash": "7d98bb536c899de6c5612b0543def3a76c9a24f59a0fc2b32671e1e98063c6fe17fe70afe3baee38f074d0b47eed577e989d6d07f41f77602678b4eddddeda0b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-arm.tar.gz", - "hash": "a416bdc19496c1a8782fb1cbc9687fa39a96aba56e37c005c1b0b4d4019e4167a292def15aeb3b65c251d17ec126bf1a77379891d417977a302c3006140c192a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-arm64.tar.gz", - "hash": "decc5010994cbe14f14089ff2e01492700b720fd4b4dfdff54ba11955b193775b39270dabb310e290a7c371e2f2978a10241067911dfd0e7d67b699a6cce3559" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-musl-x64.tar.gz", - "hash": "a1d5b660f9f43fa9b83c3c2cfe54b37f74b8f4e6c8a00ac6f0fd3203858e82f3e6f26d98cda8ee9c9c523478db3260848eebaad15b28694b23a1d492663b299c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-linux-x64.tar.gz", - "hash": "eb62153ecc9e53a5422ff44f1c6966a89ee442a91f779e971aaa47ad6a66bb131af9b38e4ca012567547b9357b72b0476b77d2b7399a38a9224a8e6ca02a8155" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-arm64.pkg", - "hash": "c7a5095a5f6f2532e3fb0147f1ed1c4e85ecac78da67f5e31ce3457094a7d38d14e8cfa063505fdb17815bad59b74d7fbb45af6cee657b92c2c7422b57c76085" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-arm64.tar.gz", - "hash": "1e0c8debe348e7e6dc3fb747207e94b5b8c526c9bad68b4465449b8c7bc2ab2259cf0444afb3946609947f960b29729ce58ab07b4a89abdb85c03beac3b99dbf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-x64.pkg", - "hash": "da135ca6ce5749ac0e5f44b49edb73ddd0262b23821be712c8aef2dc985755809dc6b021fe80c10a034e1c51d8f3eff45667a383521e1b3d03655da2c8db0f00" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-osx-x64.tar.gz", - "hash": "6915935cf037ba580aab75f05ecb83aeb2322186909608ebf2b8713d5bf118833ac6e0e08eee075a4dc40ddf5fb8863251e9779906db31de6f3c14b41891f505" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-arm64.exe", - "hash": "4c69db5b2ca1539a9a12ee7a9a5fc0cbf5bdce06b96b9a8c27f14036102866efb449bdf12c7cc6f0e1b83c8f11c8e03a0777b4dddf665a7752d750b832d8f012" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-arm64.zip", - "hash": "153ca419ed38d745ef1c4b27dafc56835e27248a55dab8ba060d47f3e18eb3be99bc0a584971c34c9194920fe7aea96f0050295e1740aea77e5502c295ca7f1f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x64.exe", - "hash": "5245bf8a506798b1373b84bc9c3ecc45d58a662fd8c840be082f3ed13567eb8fb52a21954ded8e2f65226342ab0cf406a016f7f98a29b08c62cfdbd9367c0d46" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x64.zip", - "hash": "c36431c5f6fc2b4fc6ed983b33f4ace2b3d9062afafe83e4a17f8e58745100f1714938e62529d3011cc02b4ce5c63db9c9cddf438008aa6e5b4f77507772acb2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x86.exe", - "hash": "4102dcfe9ff264c2843f757993d04f226e96d8b165e208e75408619da4100e0d0b77b86be225d9742f16f69d9d20208743b08246a59c03d188a9234b8a7cd45e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.407/dotnet-sdk-8.0.407-win-x86.zip", - "hash": "026ad4bd93818c5574ca0e6972cf4ce20ed9c6170907d86eba038829958845def5c5673a1c282a328eb9c8724fb2f78a50ff54e2fc044f14e6e5f577667e167c" - } - ] - }, - { - "version": "8.0.310", - "version-display": "8.0.310", - "runtime-version": "8.0.14", - "vs-version": "17.10.12", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-arm.tar.gz", - "hash": "b512b53ed94d21284649100ad48b0075be0010ac4fa7302bbec0f802e3d473590b4dc25bdec2b282c613b3c3cdb6e84cb1eb2411be7661388fc051f0610f8e5a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-arm64.tar.gz", - "hash": "d80b74c6986af20dcfea39daa7732863c9718928d21ab6eada74c3f1629e3eaaad98ef48f13a0e969ae1a35e355335e3b46685f5e5679454570312e3cb4d3e60" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-musl-arm.tar.gz", - "hash": "1660f12c0fffb6dafa4c182f3190a0d85310cb4e423683671e73854b7eb8ca9648590d63e647f7f92b48fa63cbd6cdff4bca772e8ef89f7710854697dd154476" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-musl-arm64.tar.gz", - "hash": "0f5976d9b4d9f06e10c5fa2ed567b72c53a7702e146cc6a6160b8e5e9c34043a3e430edab4bd0750ea0b9139031a8850efa790277271e17d121ef18d1c018572" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-musl-x64.tar.gz", - "hash": "277910192741cd2064d02165b8e96c90fffa2828aaae7310191f9bc575cfff9794e1677dc1a3b6d5ef3b3653dec8d0a547cbcc57a3f3d0db41591306b475fb6b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-linux-x64.tar.gz", - "hash": "39a5e14e5d16112f8e865bda88229f32f68858f802221327d057cbc941cbb082221885e0db5dd500b399a91f4834760b5b4fe3bdc8ebd0346a2429bde14252cd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-osx-arm64.pkg", - "hash": "6a8101ed0a20f7188a87fe47b999a2dc38981b568c9f96bfb293b18aaad89d7d17f9564e1b173ddd6b9959c8bf0666286c5e425baf16f5abf056601a0161a356" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-osx-arm64.tar.gz", - "hash": "acb85e2bf9bcce54b9786af83da1083db26938c2c5fe95002c5e7b2cf3653d1df0d82d948dc9b4f4062e134c1a4691c5d8f72d79c425fedc85ef66b0b96816e8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-osx-x64.pkg", - "hash": "8d8b98b534e195dd909b2536e82c0ca37531e567a153440898868919e071ed175097d68151e47f771416b38266febeb44f8442e6ed64bce9dc6b6f23305d0eca" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-osx-x64.tar.gz", - "hash": "1f2c29d783a72403bd37b997092779c11ddd9cf4891540fabd93d6568f8b98da304d1500d7ff6d250e96b7225f693b9a872c3e84b44eb3b1b28fed3d9b99cf6f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-arm64.exe", - "hash": "18cfca4a4ced81d87e7a7e7c16cc04e57e91ed07d5cd63f24b58673e644ce6466daf4ba56bf89d9efce33f2f588eba5afce0190ddd9b46cf553c5c11557fd7c2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-arm64.zip", - "hash": "92c9a7b822169f779d5835050b97f432bf6a7e6ef2c896737c24642277c2a25cf06568d05e3944f8ea7f03a3d53e8554ed05b3aceea9d8ac24e81d1bb0ed48c8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-x64.exe", - "hash": "37de5adf7897a27cb679a59fe9ef3d63a293fdb553d92091d3ed9598ba424fe647c3a19fdf7f83059d9703832ea0ac72ff9885952fe20cd4c493acc389a1ba8b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-x64.zip", - "hash": "79043ab4fe356015b0288f4929cc753ffa7674c7015473f81de9916b50c9d5c1322fb3900ec7ee5022860cc4c6ecf670c84690c4b3b6fe9b38e86a8dab0883f4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-x86.exe", - "hash": "cb03706c9e5645b4f0b4b8e76931c029030294e75a9619081b4bbc82d762f317bac28b51aa6a130e08cf966a1d552860141422a6920195c04a68c68acf55519d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.310/dotnet-sdk-8.0.310-win-x86.zip", - "hash": "c6dcb8642123a4f1b85090e7ac46b2fc9b1193667491155651047dd9df6cdb8c8dc23b0309990256598bf53406e81a0c71931a053f9aa427aa80aa12c5fe7a39" - } - ] - }, - { - "version": "8.0.114", - "version-display": "8.0.114", - "runtime-version": "8.0.14", - "vs-version": "17.8.19", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-arm.tar.gz", - "hash": "3ee147d7aaefff60c8054bbd457536ed7d048a52440097553c3e09e4addcf154112938ddee3222aaa87199433b2682e287ad9f66ee80b053c787606685f00a6d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-arm64.tar.gz", - "hash": "3400dfa1dd60160c8414430b60cd2a15f55d956540cde1ab633810a0cdcb5423a5e60e214822443f94ba077779ba606cb8f5de6f6de4921902d6c6cc9212b555" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-musl-arm.tar.gz", - "hash": "db9ac957c3e46761eeea0b670ae8da366851dece25abf498f5ee2cb17272e5ba77b6c27ffd88743b94e60d0d636facf9ab2d48a3c4ab0a58c01aaddbd9d61688" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-musl-arm64.tar.gz", - "hash": "5d3f4611cc5fa6a7083379700c74065c695f3b92bfef6e092647593fbd8e1619d5e3a4881c1ba30db637363efcfe9c46ede9448ce35fde22cfff8abcf93bafb4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-musl-x64.tar.gz", - "hash": "6596c2601bc66fcc4cfad0a935ce9593aec51a3ec2cdbcb3ab1ab21e51993f97964a73bc2ecd8fe7cdbc8f554a484e8e9209f0504b6fac07f19fb9171351c8e4" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-linux-x64.tar.gz", - "hash": "2bbb16670b6cafa1d74df3eb7b4feea1b4becaf00a690d81ae48e49e6d7421db660db8da42b82f15519a4583ade0f0e5e2f78ec7dcbcea6f1bea65bf6f7e34b7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-osx-arm64.pkg", - "hash": "7528f03751d965aa74a39c3ded41221cd687bfefbea6afb8732b0b1809c32594b91a39aafd7757698cafa151d304964fd2f5cac8e91b07781a7654ced92c8590" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-osx-arm64.tar.gz", - "hash": "55161fe668b0d2883206bb74ce4d32c9d7019ce1bfc6644c1802b53d98774e63f58687a1a5f77b59dfddbed0c24b9839087ac5a0d958507cd8b3c64ef97c3415" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-osx-x64.pkg", - "hash": "4ae11f315f2834534eebdcaaaafafa833d4f2d8c344ba655b5fc341e41a9ab2c1d35c027ba5cc58830c81b6d3f87fe63a4b9b108d2d57bc204b2a98b3e88db88" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-osx-x64.tar.gz", - "hash": "d96c0a430087bdb24f2c142f26738dbf1b323655622e82fc6b34c39db193cd210c0b6d38189fd9bacb0c4da980f316a7b740a54ce11126775284cb6db9a3c627" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-arm64.exe", - "hash": "57d7904736a499fce181e086e58717b8f814e91c83ec3888ab4df85d5308e82047623292bc30d824525767064524621b5adcdeca922a1476f9a678b1a408f6b8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-arm64.zip", - "hash": "026abce88b727d9754c19a44e896d25b14b66a51b0d0301611c5ddcab53abc19739d4c25fbbdaf5ae36ae07507d3a8510af3bca877731ca4f69e317623b7769a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-x64.exe", - "hash": "1b081dab6c598c86fa0fdc81510cbd2afa3313a3252b18a93cafea0171aa0a450b381b15009004d5c71656eb06d25313ef74a26dedc7690e67f2979c1b1ca0b2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-x64.zip", - "hash": "c712e419ff8fce03d85ba608d408caca850142d89ce5a2babeece7da14597afb774bf389a7a05d2b3dcfc7ca1f1fedf160d00cbfa1a648a31cb660878893fcf3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-x86.exe", - "hash": "4cf2fe4311744a0be6c01ab315339beeaa883cf4b52d7e7d19fa4156ab6c50672bb87d5f61bb658a05752d21ae6664a738edbd8e876ed13269864eb489caa11f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.114/dotnet-sdk-8.0.114-win-x86.zip", - "hash": "fd16f5c72511705dc1a8fdcb20798a1af04c14b061641722a9ae18f81f4d0e067d51e280b6846b8093edb363db3522c538113b7947c409b057a8065a02cd816c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.14", - "version-display": "8.0.14", - "version-aspnetcoremodule": ["18.0.25044.14"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-arm.tar.gz", - "hash": "179401d8de13e20e4e79fccc29d604766e52d5c173290aef1399e4199bb27f29f66c5ee4cbab2c1f446808d40fcaf93fb416a04368b6387741656053e40525f0" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-arm64.tar.gz", - "hash": "64c2247ca84cce13525e54e2eb062ca25d7f8435b54543442b11673906ee998b147321ae720920deb8ed96f66c1ee917c7bea9b90b360108e045384e8da44923" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-musl-arm.tar.gz", - "hash": "e4f84b7072c70e8e76a8ceee0a0e4dff7b9e46caa0ee4e93882d15c0bff0e5583de16e181c26880becece00480785df5799682028d7908ab3f2a694aa3145694" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-musl-arm64.tar.gz", - "hash": "dbc6dbd4bbae6137bb08e115dd2ad675c5373c3d573023cef0bbdc05000e4cadf2f31b8c4425ae086be1712a1cbb215bfb2ad19cd4e65c4b13e4ea08f0408d73" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-musl-x64.tar.gz", - "hash": "6e1be0e3106914fe86ddc7eb7c7531bf79435edb44c293b5b2175089c1659dc2f9d313ce203e04f04b7849feb544d43568c74eae1f7e801dac9d742d93b7c6df" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-linux-x64.tar.gz", - "hash": "b8cd0640c2a7382330b44be3130327ff0036be87b620f9b8ae5b854fce346b60586dd7bba6a684d7b051dc934025170cb945c41ea3bc92115b30e67eeeafb920" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-osx-arm64.tar.gz", - "hash": "e311c1fc1279da48e34ed78db0d5b297d05ca5b1ccea5702a58f8624a963327469b55ba192e584ff1a36056826d3a9e550857a64e9d55616d5c91ed811e74b66" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-osx-x64.tar.gz", - "hash": "ed67bb712b9711d08913fc482308b9304478edbbc8529f08b16d3a4964aa1b5adbf3c119bbcd3d21553b8f0474d90e6438306533e9316d855f5fef62cbb9241f" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-arm64.exe", - "hash": "bc678fe06c18b75a9db063b6823446b73beb248101789594d70bc48751b782e667bf0100376639cc80d4907993919ee439c9d315d11814ae47c4547ec35f0211" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-arm64.zip", - "hash": "fcc3758a4ac0985e2a93deeacdfc7dfd7b94a204c4e343e6cea7a048e968441bb17d7fab3f4691d82f40bf6e4349025452f24cb66a239a4bfab39f3e1fe5f2a6" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-x64.exe", - "hash": "91d648080c7263b03f0307aec7839761e2f44e91e596ffe2f70b62475cc021d3c9caa84f1b1ed8f53cb9fed656a3d7f999f4a5735458b267752e34edc4d81deb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-x64.zip", - "hash": "1df34e44076cc6f958f82cd912661139f350d4ce8c63b088e92cbb8c507e370095105f71adc596aa83b577246441d6bd2860dfc457245f2aa10cc30dc00a7a9c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-x86.exe", - "hash": "485aab647c30901f06569b609f5d6f21443fb07fd3ccb76d1be18f738d72ebe85f23af5740496218fdc6908c2c3c2adc32d5c23111d7c29352b6078870c9fb75" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-8.0.14-win-x86.zip", - "hash": "dccde4633f33781727acb19029a49a188b7289052eb42b2374c47e0ce8c0e9b46d8cf31cbdcadc054bbac475676126b38335621a8b23cb6cd5cc9a726f259946" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-arm.tar.gz", - "hash": "8013e74facd1f7dd2d28aeac81ee2949da2689c24e75f720d95e45cfd1628118c6622d0f3ce4e264f8eb4cca25a45a2af001d52190bf6090506dd5d148c4b8e0" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-arm64.tar.gz", - "hash": "fa99be0e1daa2d419f7c85d70a9648db798a51329743362db61eaa8fe5bbe4a355449b47ee2b7d52496abbee6f885dc154fa3be98dd4313d028382c132ffa61a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-musl-arm.tar.gz", - "hash": "ed71a7076864058ffa6f7f7bc1ea8e0f649b0192c1cfbaf094fcd124dbf5e0f037bcfae99022beef3ebcbf553ce75d2bc4f9487d781bb46aa1adf88792489719" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-musl-arm64.tar.gz", - "hash": "bf17bdeeed75006c0bf4a7ed8a03ff43869e5b4f0379da800f2da285aa0c596c5ed7fae7628f81ffbcff8603826ca2f6c1ea8da293880aa20beffd3f33c341c2" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-musl-x64.tar.gz", - "hash": "11251f0ac98cdd0cf32e0ac05b708645aaa1dac6726e03b8ec365fd16585b4e3146971af1f1338703a43112eb84f7d24c5ca97e9a37baeb593226026d43f6996" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/aspnetcore-runtime-composite-8.0.14-linux-x64.tar.gz", - "hash": "e69feda3c917999f047d1af897d8b5cd3bbe84a1b579056d4953a69e540e48b76ed7201973f6800244eb7358a509f23d6388eb5fd1438b810773b8bf3e484dc3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.14/dotnet-hosting-8.0.14-win.exe", - "hash": "917cc6c069fbd607c9d3b20cbd4900b99ddcb02625b291f2ed6eb51b93f5d38127cb51e23f1adbd4582bd8885a1673ad8ce4ef976e2cba4036fd547b30fb3ca7", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.14", - "version-display": "8.0.14", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-arm64.exe", - "hash": "7b21cc96a0cc42f9ab701d7ed76aecc044c0906e03e82c5aeda102c757e14061a321c1d6fa2d0a273a43cb6dd7a4eb60bda10e5f5c5e3cb5154992c370382c05" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-arm64.zip", - "hash": "db8612af2a932cea31e1141b9106ad10dcee8a147bc6fdb59d75433b6422248da156ed143150ea2cea03f2332950d5fa81655bb62561b3eebc0ad5eeae33e190" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-x64.exe", - "hash": "3997c2586be132c741176473f80d304c51d3bdd7d1f8987b20ab648cdd27f0c57141af0064eaf5b6a2cacc51f6872ee159e0171704dad222dbbfbedac49e553b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-x64.zip", - "hash": "d8ddfb88f6eedfed76b878f9a5c2e886699137e4d080cb9f098552b012ee985cb2824793476ade316377ebb455f5233aec99969d2e2c1c298afd42806b584064" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-x86.exe", - "hash": "5d22529ef6c3138abd4461e30d3eb300aa3ea365386d013e3dc8e4347f0611f91e3df4d7b8d37e24f4a6efa1f5349254b3c3299fbe8fb232561af2de48c321d3" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.14/windowsdesktop-runtime-8.0.14-win-x86.zip", - "hash": "ad80a31c2208d433e270bdc634bd9c9d03f3310f25979b3660e71e65ce2bfaed5e982dd1402f97a577bd31c01d4368c5a4af18907b8a1412051657f5300cb4f5" - } - ] - } - }, - { - "release-date": "2025-02-11", - "release-version": "8.0.13", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.13/8.0.13.md", - "runtime": { - "version": "8.0.13", - "version-display": "8.0.13", - "vs-version": "17.8.18, 17.10.11, 17.12.5, 17.13.0", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-arm.tar.gz", - "hash": "5d018fb50eea96f3e9a56142202ccb1c73a725219d7257b0debbeef3ef196c69b076b98dfb6f098818c0514084df33f6704bc13a478d1727b012d6ba9eea0492" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-arm64.tar.gz", - "hash": "e6c42ac1758239405c8a740194023b4ade1017def3bf330557dc16312b2f40599be30a8bfc8db05559649cf0eda5fc43af153320f5378dcb4872af13679bce8b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-musl-arm.tar.gz", - "hash": "a8c284406cdbbb8ef90aede0a9507deaf3cefc7966ca8de04576bbb3bae260b81b16b2441d4d4385792ecc3417ea1ab3aeceab5497f8665e70dfa55ef7e5af2b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-musl-arm64.tar.gz", - "hash": "7b469196495ed00d9cfb166558704c22ac572be11fc4df936d86912d9c306b101ba3411b68e95c8d199f86ba48caa42d9e2b068ceae27b47347dc50b7b96ad18" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-musl-x64.tar.gz", - "hash": "fac7a79de9e79ca05583acb04c086b1a573ada0895b7c730176c181f0d39da82ac2ba5426681ded6d5b1d904e97c585082cc9b56d8c5207fee3e93b88b139505" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-linux-x64.tar.gz", - "hash": "8649eda14e8bc993f8cb3d421d44a4abb218acf29996ac1ec939686bf657e75b60f2b690180a4654ee15ebb7b95386eabc969ea98209e31e2801620ff90fce43" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-osx-arm64.pkg", - "hash": "334bc1cebcc672bc83f174f4a541dab15433f5032f180ee4ae2e6558d5d0736289d6766181ae17c929de5795b18ca601b1b6f5ff006f0e3cc27b518696277ec3" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-osx-arm64.tar.gz", - "hash": "7948d37bdd3cc7fa2f0d53b40e1997a1040b866f942a82eb7e3349da388f614af78990386483bca789a22b41b0b8f5c25160bf7c5812b1f7f394af9df1bb5a74" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-osx-x64.pkg", - "hash": "ac5ee92859a78dc9b4b17390ee9027991ad4ed717bff855982cc8fa1b730ac738be90b0bff7891a5f410ce30b5bfa4a4ed660f7e4a27b819b3cc1cf059da95d4" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-osx-x64.tar.gz", - "hash": "8916605f0d7028a81902a4692ca6386521892abf4dc20983c88e04721036878b04f80a0b9329de0524abe4448a59284587c48b738080d675c7e753e38d7d9a6c" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-arm64.exe", - "hash": "ee54b8e72f5fbd69cc57c73415d390851a09b24c5a48663a14fbdd96b6bf3bdb49e56816ee57bd44ac3dff52a0e075cffabe8f71eca20647fa530a2b20e839a4" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-arm64.zip", - "hash": "d76e3ef56ebbfd8466d2e501a91aaa0284a4a62e0782f279b37ce346a02df17edc7a09261e09b8815fb2906251531f9b5a6421f060933e16d5ccfbb139bd84fe" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-x64.exe", - "hash": "14ae2171a56de27e33ba6942d5b2716bb73f8c2999f28c897136c1e0cf4c49a54f5bd0060ff0b55e58d519ab3e194af5709be568ad9ea8e99ceb3dd39e49b7df" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-x64.zip", - "hash": "e7765e8b3b8759b08d9fc48a6f596c478b271ef005b174389011d0ad74da5183325a3739c91e0f3a3f13bac99d44ce20fc015120719c35ac062bb7e3b678ff2d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-x86.exe", - "hash": "623bb4b7a134ad54c6166780924b050fa1c43ef58322fb5e7d1824e1dee3529ed09472ba2f03fb8342e4e9ad47b6c54e320b4ef9471a56ad9b36b4b78e12d703" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.13/dotnet-runtime-8.0.13-win-x86.zip", - "hash": "3108bda8422535c9fb0e3123a7a9773cfce56acbda7f56c3983b091dfff3bff3cb6e3f32c31912a429092cb169c943559769914146dd0324f689c500476075ad" - } - ] - }, - "sdk": { - "version": "8.0.406", - "version-display": "8.0.406", - "runtime-version": "8.0.13", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-arm.tar.gz", - "hash": "18a2bf575a6d895ce0671b22e4f0853003920f0b7f2f33ff45afc51d34453bfd6b87b2aa5e53349d0c6ae9f6c37f6663d37f87a2ee544c89a7f5ba88d6f65408" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-arm64.tar.gz", - "hash": "9b939f09fbda8a080b1266914ca02c4d60a95e85fa6a1344c378d394697de6935eb7d941dd9a3aeb977ada3aab561c614a5fe9b973824899cb02aa74e9c09988" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-arm.tar.gz", - "hash": "c4338ad18ae2e0425c4e9d6d51dd266217f33e7b64754483a6eb33b81b96f6e8086314010730166211cb96cc87c9a47fb76aefc3431b03f285cdcae2119a7cbd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-arm64.tar.gz", - "hash": "1961fec3fae6039134a552d19e86a0e93010fc8d5d3d4c22959eddb45a51eeb00c4703731397ffca802064d73b984a1a557ddaa68374b5a9da014e135b5ea751" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-x64.tar.gz", - "hash": "0c7eb2e3530f941fc1bad43de1fb08aa4d23098af47e048cba325b3cc48077cab1b6ec6359cdc88c2ecf6413d1bac14a439878b20d6adb2c6229746018c2e130" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-x64.tar.gz", - "hash": "d6fdcfebd0df46959f7857cfb3beac7de6c8843515ece28b24802765fd9cfb6c7e9701b320134cb4907322937ab89cae914ddc21bf48b9b6313e9a9af5c1f24a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-arm64.pkg", - "hash": "9fe65170c01b0f1932746440f618d3a5446efe89cfd878ae66c74fdb39402d809a82947b5b9bc070d3a5ed74bf2ea04f3a5a92afea90bae3819852dd11cb3b10" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-arm64.tar.gz", - "hash": "dbd6bf870ca1776a8f463766bc5d0b584ac636e947f2da262708b79b21d48475d1f6af832df0f509e04b4e71d9bb2c37775e9878629debfced7eb6b376c2c449" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-x64.pkg", - "hash": "3c247c47c84312e0a27ef119f0c350db93f306033f166826ac79d40f1595c8c1290485b426ae2202c6661e655001ecdd73b33e0512c6a7650a82d1dd8c14a9a0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-x64.tar.gz", - "hash": "9c17f5c73db356201a85610c994038d40658d0f690a6b0381878b026c35dd77597136aa56e839d639a2eece4cfad6d88486755c3fab6a1a4240aa793cb9feb4a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-arm64.exe", - "hash": "2f5da16501cf129a54baadab0fae351a44c97dd7a7d8fb47899124da27eddacc8d688fa164f4324527e39bbd771cf1fdb8a75a8b46dde7579120c7d29d6550ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-arm64.zip", - "hash": "ea84fc09fac1907aa4f2c7a13df30d31cebd6cd3bea9d286f35900e2ca575269114761eeac5b6cf9d7bc9b9b72f04f9fbdc3c4f60c8a99596c6ad7ad5c0835be" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x64.exe", - "hash": "eb4bca7a3da97b0635a515dde312249162337dc255c89b915fbf767bfd768107ed47770b7d37da96fc7d2a4b7abf8b673099263998ca304aa54c91cdeebc7ca9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x64.zip", - "hash": "88095e181228e9e496574ed6f36582303533369cd253f41abad6c3aaa7d23436736a3fb1dd6c908032b2cfda445f66d50628516395783bef3d5ee9bbb00edcd2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x86.exe", - "hash": "e66aeeac65cfbc0c0f638ac49b4da6048941e783f97eea8d8480967ab218c650fef3b67786a3de6518ce0692306e14d58edcac37d4fa7e2758b4af1a9e164e0b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x86.zip", - "hash": "e7444c64b510cb759b2acab851168158aa740217a7e9beb3371b30935216ca1fa8279178e2d374086a3141b712d4a33b801f1883aa7bae158cc59bb18867d055" - } - ] - }, - "sdks": [ - { - "version": "8.0.406", - "version-display": "8.0.406", - "runtime-version": "8.0.13", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-arm.tar.gz", - "hash": "18a2bf575a6d895ce0671b22e4f0853003920f0b7f2f33ff45afc51d34453bfd6b87b2aa5e53349d0c6ae9f6c37f6663d37f87a2ee544c89a7f5ba88d6f65408" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-arm64.tar.gz", - "hash": "9b939f09fbda8a080b1266914ca02c4d60a95e85fa6a1344c378d394697de6935eb7d941dd9a3aeb977ada3aab561c614a5fe9b973824899cb02aa74e9c09988" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-arm.tar.gz", - "hash": "c4338ad18ae2e0425c4e9d6d51dd266217f33e7b64754483a6eb33b81b96f6e8086314010730166211cb96cc87c9a47fb76aefc3431b03f285cdcae2119a7cbd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-arm64.tar.gz", - "hash": "1961fec3fae6039134a552d19e86a0e93010fc8d5d3d4c22959eddb45a51eeb00c4703731397ffca802064d73b984a1a557ddaa68374b5a9da014e135b5ea751" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-musl-x64.tar.gz", - "hash": "0c7eb2e3530f941fc1bad43de1fb08aa4d23098af47e048cba325b3cc48077cab1b6ec6359cdc88c2ecf6413d1bac14a439878b20d6adb2c6229746018c2e130" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-linux-x64.tar.gz", - "hash": "d6fdcfebd0df46959f7857cfb3beac7de6c8843515ece28b24802765fd9cfb6c7e9701b320134cb4907322937ab89cae914ddc21bf48b9b6313e9a9af5c1f24a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-arm64.pkg", - "hash": "9fe65170c01b0f1932746440f618d3a5446efe89cfd878ae66c74fdb39402d809a82947b5b9bc070d3a5ed74bf2ea04f3a5a92afea90bae3819852dd11cb3b10" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-arm64.tar.gz", - "hash": "dbd6bf870ca1776a8f463766bc5d0b584ac636e947f2da262708b79b21d48475d1f6af832df0f509e04b4e71d9bb2c37775e9878629debfced7eb6b376c2c449" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-x64.pkg", - "hash": "3c247c47c84312e0a27ef119f0c350db93f306033f166826ac79d40f1595c8c1290485b426ae2202c6661e655001ecdd73b33e0512c6a7650a82d1dd8c14a9a0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-osx-x64.tar.gz", - "hash": "9c17f5c73db356201a85610c994038d40658d0f690a6b0381878b026c35dd77597136aa56e839d639a2eece4cfad6d88486755c3fab6a1a4240aa793cb9feb4a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-arm64.exe", - "hash": "2f5da16501cf129a54baadab0fae351a44c97dd7a7d8fb47899124da27eddacc8d688fa164f4324527e39bbd771cf1fdb8a75a8b46dde7579120c7d29d6550ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-arm64.zip", - "hash": "ea84fc09fac1907aa4f2c7a13df30d31cebd6cd3bea9d286f35900e2ca575269114761eeac5b6cf9d7bc9b9b72f04f9fbdc3c4f60c8a99596c6ad7ad5c0835be" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x64.exe", - "hash": "eb4bca7a3da97b0635a515dde312249162337dc255c89b915fbf767bfd768107ed47770b7d37da96fc7d2a4b7abf8b673099263998ca304aa54c91cdeebc7ca9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x64.zip", - "hash": "88095e181228e9e496574ed6f36582303533369cd253f41abad6c3aaa7d23436736a3fb1dd6c908032b2cfda445f66d50628516395783bef3d5ee9bbb00edcd2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x86.exe", - "hash": "e66aeeac65cfbc0c0f638ac49b4da6048941e783f97eea8d8480967ab218c650fef3b67786a3de6518ce0692306e14d58edcac37d4fa7e2758b4af1a9e164e0b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.406/dotnet-sdk-8.0.406-win-x86.zip", - "hash": "e7444c64b510cb759b2acab851168158aa740217a7e9beb3371b30935216ca1fa8279178e2d374086a3141b712d4a33b801f1883aa7bae158cc59bb18867d055" - } - ] - }, - { - "version": "8.0.309", - "version-display": "8.0.309", - "runtime-version": "8.0.13", - "vs-version": "17.10.11", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-arm.tar.gz", - "hash": "4b6fd2f84310090ed290426244bd3f4115021e5facf92d66fb1f3f5658e427db3257a5f875437435729663c51f5e897990e4efea1e9afc9a6da9aa13db6c0dde" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-arm64.tar.gz", - "hash": "4281891e9ef1e502befe7bea5e5f3ffe84110583611f1fc467f25b28b7f95ecd6e58c1c52a82ac8604bb33806fb75321aab9afa98697bddb072cb046210152b4" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-musl-arm.tar.gz", - "hash": "681461785d1b2ab7c40309b72ce702d017e957e2c6ea0c2b3ea3d39722196ff9ab66048715ec423ce8b9cf3542ae24e42b1522d17c3524c173cc7aa35428c513" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-musl-arm64.tar.gz", - "hash": "dbe27df317cf6aa1701d08cd9a0741e68eba24d5f4040952795b735514b471d326904551c2a349afc39ddb37733a907c67fd9ec20bb545c2902037384210adfa" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-musl-x64.tar.gz", - "hash": "fec6146b56ef7d6174ea64286b431bff40c7d5dca7ecaf1f6180c7da307cb9ee7a9405aa923085b849abcb41100ca6befd1516c3800b4bb62e713104c94d4c75" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-linux-x64.tar.gz", - "hash": "f213aabc7f458ce20ca10f72a7e6000297c57737e61818005ef03c45c907d0bb3727cf9e828cabb9d6d3fb3bda4abc18bcd8e453bc5a00ac4d77e62b3237fcb4" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-osx-arm64.pkg", - "hash": "9cf9e6a26ae043c6247dc6fe18e9dae2ea60fa5697950b6f060c8abf3115a2116fb7251b965876d129f4dcc1f791d731f0839f254d233d0527c47c940b156ff7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-osx-arm64.tar.gz", - "hash": "6399bcef9eabd853a09ca69f168ba0a224b7443d193557f3bd224e9fe6fb4d05536d21fcdbbcf5a9ef211f61a1072a1e885044af531d67835cd55c2d867ac288" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-osx-x64.pkg", - "hash": "b76ea8369b7afb80d49c2ca2a3b281d63a6b5564df34ba7ed62337ce07fb42b58598f25aadceab9fda907369bed9fe177a5ebb0bf2cefb71d7658e6298299efa" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-osx-x64.tar.gz", - "hash": "11672b843dd8934dcb227b068ad99113be2616795c1bed979283af478019ff6d00a5856118ae4d1a92978343721e93a46a7b278353d3b5713bb51a99013cfb6a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-arm64.exe", - "hash": "f5e58267f663261957d555035a6034d0d73fecc8cd043aafd7a05791f74edc62a44bc808c533d9d196ab9d05f775f19b96c32e7b97f839825a00b2993dc9282a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-arm64.zip", - "hash": "5b4f7f8989e79027067b19dd61331724756f418cdef39c7f9b4131c0738f28c76bf40254c334737aea517f7d956d0c1dcdcd9ce4bf459dbe5ce8a858a1971f76" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-x64.exe", - "hash": "a924ecd717b60b70abeab8662042d78f38c19bd12d5c5c22af38270196236a051722037b603967f1abf1832671655feda0de2a538ab5f64a95d7ba05d9c933c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-x64.zip", - "hash": "7d573b79286b43131a48a34b751e76a0ec7b0e2bbd2889a19e2dfb1228e07f8e0da2e3b05b2c25293cd3ee25212fa79701611dd6e735022e86b34b41c054dd1e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-x86.exe", - "hash": "f755ada429b66322ab47a311646a88144979b4d073f0f743564c3998258001f2c76211847db1cbdd56970bc9b06f327ff664e6911186534a7b278cc239572d83" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.309/dotnet-sdk-8.0.309-win-x86.zip", - "hash": "c3793b84304e1eec02b9eb2b9e1b4afaaaecc8ff185a3ba37e4442e99f215f8286b2083abb7d26f7645c259026dc353fcdb51e091f97560c0fd0beb59d4a3b71" - } - ] - }, - { - "version": "8.0.113", - "version-display": "8.0.113", - "runtime-version": "8.0.13", - "vs-version": "17.8.18", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-arm.tar.gz", - "hash": "2ea1eabfd7a66afd6fb48912ba3a8a7a626fc3bb10f5f354bbe8abf3841c489d821ae1670b2c649507dd34a5b7dc66e9ac54800caf064fe7c67a0f065c68c244" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-arm64.tar.gz", - "hash": "c3cb2858a17dd4dbea5d3c5687e9c648b28b19db522f029705a9dcf61487e52674d5a0eddd6c7f6bcddc22972b4e93fbd9bffa10e2afbafedace312590bf0608" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-musl-arm.tar.gz", - "hash": "a8dfce0b643ad23c92c33cfa6a36269d3d22cbeec1cdb5061a1c35f92ca0f33778b0b28dd9fff116d85451ea47d600b9b762e1374abff450ea7f5e6036e792be" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-musl-arm64.tar.gz", - "hash": "5395ec99cf948a09545054995ef8a8d92d622b7dd1f67ab7bb0934663ea067ff9929a8983a8dde7db3ede0acdd49e4bf89ddf14487297048d28d5fb4e3b1a1bd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-musl-x64.tar.gz", - "hash": "ec13a2aca300398c8738b1e0d48c6ee8f7ef218daa4bc0d69ddfc04fe2fbe40c2b2d3d6b1dac190f83fc7945384d66b4a83093632e77886fb54b78bca23be636" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-linux-x64.tar.gz", - "hash": "e7c38145ca8edb23f9992aba238b6725ef0bfcc186c879e703c79450b77720976898751a28585a76d39b2a5b499e5763e8eb2165c88a5d2fab2c3129a353116f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-osx-arm64.pkg", - "hash": "a0df327bec7707cf2bf0b7d0f42147fa0bef8dc0f9b673f0ee92168c0c8b3c2cda6c403aeb3f78814276f17f232584d74b9d679a4aebecc44914b5b2e0198b2c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-osx-arm64.tar.gz", - "hash": "18247479baa6b17392d6d8d3ea2350ea5786580b419d41e862f3b1a3b9dd65acc7302a6abf6b7cf159f07623756a849822d115041e721df039d17938260dee57" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-osx-x64.pkg", - "hash": "2e85851caa01cd061b6a6ec5653f5b91ddb6b8904a98534268fee524a4b50aeebce31e396b7cdbe56c1b5914a02143c161cd4475456029126d8c863caeff857f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-osx-x64.tar.gz", - "hash": "64f1938588db96104a53c7381ab170749e5c4364c49944dca8f7c918d522adcccdcbc3cf70601599b306bde8e810849a7d8b783fab2abdee3767d1496535e92b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-arm64.exe", - "hash": "5cdeb8fa666bc66a83312c5235ffb873a639773f7de9d03b6c0a60b591bf0b157029f4800af75b8332181763e25cb5586fc65b13fcf587b7394cf062067b51ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-arm64.zip", - "hash": "6381ec68a3865473be4b01a0cd3355157d581e0e31418a97b45b504d07e1b7612754a04804a53c07fdf6e0ef5ee92303d3f5df0f358ea637355c07993cfd31bf" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-x64.exe", - "hash": "6eef2bb3e6ceac8d275badcdf03281bc7bde2be28d31b3ac4d56cb8d931c1723ae5f9b3d7fd26b89ae95d26c0803e69a1dfa01dd8e6db23d4a05aec45dc2455f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-x64.zip", - "hash": "c3951b2a93bdcbcd4b9072124085029344271cce21090f825d32a731dac32f574ed79e74615c46bf5cf71e20e8110ac8af52b8ca14a3ebaed46f966cb3242b66" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-x86.exe", - "hash": "14bdbfaa492746ced81c3f34e7982647c5c989d21b2f7c8c903932b522a66ddab5fe86b6e2959a1a3830f317d21df1bdd83d67fddcf2a095e2384df941581e79" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.113/dotnet-sdk-8.0.113-win-x86.zip", - "hash": "154318a25b75b59fb40aba27f688ee3c41a8cfba2f28888f40b441c22d52f3fdaf99c2cdfa06337c502ab5fbb5dad5c24e9080af772d72caad66f735b1e4a24e" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.13", - "version-display": "8.0.13", - "version-aspnetcoremodule": ["18.0.25017.13"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-arm.tar.gz", - "hash": "de5a3dcfabaa7f01aaffb78b2156d9d79d614f0e52ebe619657072568ab0fc47f4d53e7b577a7622392502cd3a739400af6c26999247cc50c29813b6a94cfcd0" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-arm64.tar.gz", - "hash": "d67130310e81f727f1d4806463f49af18e012d6dc766c940838854922b3a3e7f7171c87d595c4dc09e1c63470fae3017b54d51be98618985129ff37d6a5ac0b3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-musl-arm.tar.gz", - "hash": "20a6322409e46f064f739d3948dcfa365879d3bfc1e704ec24f74accf9c8f464ac5782eac88cebf36d6732a3d45d6eff2bb4a89e39032332288de25e41065ba0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-musl-arm64.tar.gz", - "hash": "cec1eefebff9c3b8582417fc883cd19a5cf1741f00ed5df5e42a239398c3286f9f8e1fe6c9a65ffbd76fa95318cf23f7941f47f6132f03afbc1fafa3a48601c7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-musl-x64.tar.gz", - "hash": "f4992c2cbc8019378af0c8463d36c978caa943e53d49522037b802f7476ec9d82a6f69dfb2178f82f619bcedd6620ff0c1aba024760864eb0f73ce70c04fd8f9" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-linux-x64.tar.gz", - "hash": "7b21aff45c3ca7ccdc0527c6de05c209d58a56a15cf10e656522261f884cf272a92be13696b1a0f1ae2baaa0d825ffda58d954871a17b3c3a8659a9f3a36c7e6" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-osx-arm64.tar.gz", - "hash": "46a19b9261f13ed585a94a7325db18d627d846a36d95b63421136fe6f5557e65925e396e1400f8fb74f5098116e20e89504c1467889b4618ecae3a9ab7993b9c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-osx-x64.tar.gz", - "hash": "ba66742cabaa7a8e3ff52788a59b5ba6b3ebac474e606444623c9919e257b20b9edd74e9c6f0d232ce7e823dbfad7687e2495cd2d70bf46649e1902e74b64c0f" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-arm64.exe", - "hash": "cafcd4dec6267f8911d54885cd54b733735d33b4ffd2a46eb1ddaa54d4fa8cc1678fc641f8624582cfb4d583b8c578bd7ba8d54797cd4dff64e024cd7abe358a" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-arm64.zip", - "hash": "277d299d15f29d4382c0c2351ef45b223953d2023c397ed36aceef624da49a6ab929727965719c52ec1bc8715079922bb8739c05fcd6ec31c6a80ad537f135c4" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-x64.exe", - "hash": "47f16914e76a0c9e0fea203c5abb09c9dfb1643e0b2295a00260d0813fc336673f97d6e9c7605585136cc9680ea4cf614eb5d2cbb8156220011cc19f472cb684" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-x64.zip", - "hash": "2cf4a7dc531cdae0d244bbd745a051c431304db230630789e26273781c32e540ba92709e51ddfd17fccdc9879e1b209a3e08783475d9c4c4446dcc74709be5d8" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-x86.exe", - "hash": "52f386c4c42b368c4bd9903e61e63cf334cb5c602ee8bbea28581dbdcaa6f2cf8bdce0199797cd7afc37fd51ba72c28cf2633928fdd9a26f36e68424adb7f52a" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-8.0.13-win-x86.zip", - "hash": "8fe27277c4b86ea587f004f3b1fcf35ee1ba7324b2a8af728eff603b80b794bde132b1e2997fd22bf347de49b0299cb8e31591ef5e5e4f5e4c1da062c566629f" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-arm.tar.gz", - "hash": "2867b14062806103360ff725d318611af988234fe011449b52e13a5f31464fbcd86ce2470ec84ad468663cb4a60cf693d96e9960251bf80d071c8ade57e66b3d" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-arm64.tar.gz", - "hash": "942ff8c727eae0f0caca541706cab338ed16f6b14470c626ec2c54ad877189d85425761d8529d700172633aaf45c2dae5e29e262ce0339da20e6d00fbb914591" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-musl-arm.tar.gz", - "hash": "9e961a15e8df2d6acb58cf246d299905e48b3280539b54d616cf9f550d5e66b31f9737e90f52d323bfef57753404b22e4a2d1c5f72db2525d3cc6de0d828eb89" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-musl-arm64.tar.gz", - "hash": "f5710cc1d91a284a13f553fa013d651a00a90219514391f55632a10093eab42153deb0557ab5bb60cbe013ea6ba7c58cf309442f13fc2191f92103aeb219d008" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-musl-x64.tar.gz", - "hash": "7c29859c689d3dfee555f6dd43ba6b9b83ba8446c6f4457ee47976cc41da0d53f889283b063786426d485f2751ccc2a58b6a0dcc6b18309961ae02ee67d10c63" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/aspnetcore-runtime-composite-8.0.13-linux-x64.tar.gz", - "hash": "671182c89277327368b739dff04d897cdd82a9f915f0d2d6b2b68eea5952d1d741c4edf413d8e668cc2d9c83b62b01ca86db0587d755904bf02f25d7b7a6e3da" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.13/dotnet-hosting-8.0.13-win.exe", - "hash": "1c575e2b42f0c9e3e480662bdb24287adc3a8ad2ef6b543574f754961ec78b7baa09748e93aed285d4d333328bb0a9c45af64c59492cef9226c10776af1ef4c6", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.13", - "version-display": "8.0.13", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-arm64.exe", - "hash": "45c1fc3f5adb8551fb0ee805ad6c5046a9447da38cbe6b7e9d04fdc995d21885b8b9415ba3bc9040644d82e04aab3a88c625854efc7870ac0236d0368de90c3c" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-arm64.zip", - "hash": "0480a4a59be809b25e9d8d8da0a302c6e82b406c3ab1ec4f5275cdd7ab8bf519f6af479acac5e7b205f05fa96fac96efcad56ec4455c9aa89fc7dbfc571fd28d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-x64.exe", - "hash": "abeef95a520e5d22d4a8b0d369fe103c2552a5c337500582e850da3611135bb68bb479d123cee85a445310cf4db73037e6198eec40d66d4d746ef2e2e5f1450f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-x64.zip", - "hash": "b10fb998502ed829b619ee125a71b60890de1b2dd9fe4b95b3ca25dfc581368b0a620bd5e739ca6da2d37978d1668716722b80392e82d1cec02e6a6279ee9026" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-x86.exe", - "hash": "569c2cd8500c793bec790cab58ff9d7a57bdcd6cc1a38b1e260c2b092e41f95836be6aefc34cb25b36e1643c311455e538c8bb8efcc78e2cb69e294937694ceb" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.13/windowsdesktop-runtime-8.0.13-win-x86.zip", - "hash": "54df4a2a432ba49016e23a89df3943eb717a622eccaf6211fc43212eaf20ac8ac0018acce702af6848f71079fb92fbff17d8a4c756165da2459b7875496596f0" - } - ] - } - }, - { - "release-date": "2025-01-14", - "release-version": "8.0.12", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-21172", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21172" - }, - { - "cve-id": "CVE-2025-21176", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21176" - }, - { - "cve-id": "CVE-2025-21173", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21173" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.12/8.0.12.md", - "runtime": { - "version": "8.0.12", - "version-display": "8.0.12", - "vs-version": "17.8.17, 17.10.10, 17.12.4", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-arm.tar.gz", - "hash": "0b8e3c37f205cf965afbd7096afd5fc6e202248b3e3c174712e1bcf34b6b64ab7b0ef866eeb6e16a114367e35666dacb52eb0ba10dde8b3143314a051eb1a1d0" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-arm64.tar.gz", - "hash": "c300a87e41798fae7ae4920c140bbe3499a1093d418450f9bfa469b045ebe2e5840d95487e937eedbe8ab221e1388aed76fdcc18c92d81778ee43383ba7fe33b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-musl-arm.tar.gz", - "hash": "ec9b034f550e807b4d4ff5b07c6c7d90959eb4d6db5d97b8b245269da6ba873fe27822491181fe34e49b6e988614640b275424a58586f022915ea48acde906b2" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-musl-arm64.tar.gz", - "hash": "b369b71b483adc7cd53d3c57ccea1ed929e441582e21f31989429d31ff6bdaa0e6fe75549402a8c3cd2dddb935c18c432d2c72c486d03467f27a52e009a18963" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-musl-x64.tar.gz", - "hash": "2a97a07e9fb2dcc8225850c9574a014f9a111147d87ded6293eb7bf26cf6bee6cc516713c02c13a08e9776dbadd583627f05e6e62daaaf96f653e28c0b37b25e" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-linux-x64.tar.gz", - "hash": "e0d216d54e9a21aaefc120a481050f1137cc708cbbd17204f0b1a47dbb6424078e8b44dc842957a6691025cda1490e5061092802484b5fd12c5903f5ba634481" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-osx-arm64.pkg", - "hash": "4171dcf529ce26d29f477f0d5b7f13d9481b5e7e5b47e20603fd30d6f190cf130f358b9a0ec2f3ecd2ff1b6ff4b1ee5bd21e460f709298159b1342b5a206398a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-osx-arm64.tar.gz", - "hash": "8bea917d0f3d8aa27f06b95b97aea220d44a3f6b0c64c6612dfe353dd4df8818bda5657b63bca1168eb5f4866ca8b8b38c70abc5effca2fc358a4dc89ef1060b" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-osx-x64.pkg", - "hash": "b022c0783a46e7c36e97568975b5fa48166d92c10d020c360667dda34ece4d9245e5f0f3e05196a339987ab09dce8afc6c2d4339a32770e8b1db4ae64df86a36" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-osx-x64.tar.gz", - "hash": "b184e85c55fd0ffd147bdde5695b586cc1879cdaa11b832cc3158993db2986286617039ed2fa0f46daba0a01e8ece9be6b0a168d8734781d974c77c8dc36d5ba" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-arm64.exe", - "hash": "ae9deeb0785512b1a8420ec9ec63124884d6cad63ccf2a3d9bd5247ee7274faf620dda873eaa6ee264ae9f36f4413e989ce7cfb2302bd48b69e4d8963c8f6725" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-arm64.zip", - "hash": "c2fb4d7bf8c8ad37c4d16a1a54090099ca6972cd8ae137499a11d840ac6f0943b5cc49681ad0c20f239f12b03c2a09b7010268345176ea03f11ee58176e4162f" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-x64.exe", - "hash": "ec889578022d9822df2bb9983845e80797667ca364ec8cc101d94468010f8e1411cb8c288e4acc55393c4a20af0574cbe4cd17b917d24727f1d3d5f1903b13af" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-x64.zip", - "hash": "6e08f5290183569daef70b558939246fb72930608e291c9941802a350918cca0f4ae30df0bb8fb07cd8f2b18aa4174506c9118892356dc84cd0c7fe6582c0d2d" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-x86.exe", - "hash": "b4e5bef2bf2ec7b504b304c170f167c4796c18d848c60779a5a72b634d14dc701c24ac086467301060559aa9ac77e9e11eb3b2d48dcdb9dd1fcd01ffb48f9804" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.12/dotnet-runtime-8.0.12-win-x86.zip", - "hash": "d83c4adc1d22e230bc3d80c080bd55b1bd898ef7d681456d50f98c49baaaad77b58963e721554fb1c914137eb69e4f035a0ad1221ce1ee48660a22c1c7d30dae" - } - ] - }, - "sdk": { - "version": "8.0.405", - "version-display": "8.0.405", - "runtime-version": "8.0.12", - "vs-version": "17.12.4", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-arm.tar.gz", - "hash": "f9c422221ce1b9460e4778ee2512b8e38c78eea77e975779af03f82feb5664b94d33c57d103777839b9e772c039419df5eeaa479b55b78d70013542a87d2b602" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-arm64.tar.gz", - "hash": "07988b784bf71913f607ce0ced50434c69980ae715ca62fb6af68f7eaa26810c3f9ffe24df1d8706d1a557c3eb7756143e5357016089cf1508714baa1cce828a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-arm.tar.gz", - "hash": "f83accb0ed45b4c9378a54c2c74fd8f559056b7b771af70ad25d62d41dd1c384b795cb89fbde68959db86883b1e89fe6749100c055f2f3089e343b2a5e1f1704" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-arm64.tar.gz", - "hash": "af728630dee4205f9552f52f4a06f48ddf4aff238abb32edfd01814cc0e710c139f48ef569ad90ede519564b9bc057baffb74eb60b54ec47364c51c5c1cf789c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-x64.tar.gz", - "hash": "05078ffbeb35b7aadcf8927c0bf0aec6af5de4e616585deb55743080c0b34bb6e4becaa2e23c2e6c3856bc0826d5e54f96ab6983867c5b1af6307c62ecc01837" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-x64.tar.gz", - "hash": "2499faa1520e8fd9a287a6798755de1a3ffef31c0dc3416213c8a9bec64861419bfc818f1c1c410b86bb72848ce56d4b6c74839afd8175a922345fc649063ec6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-arm64.pkg", - "hash": "421df3ec69ea06c42c94043670e53e9d965d0d0261513c60249800830019a8c71fd0dbf0fa8ccaafd5b92a2ac38d37aa0fe4b85c1e523a4ba3e9cb2bb80749ec" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-arm64.tar.gz", - "hash": "3610bdadd7bc0c137f283e95b01e45c186eeac765207fb76d22b10876a8f085190609080e074df9c8b1c70b3b647559f542b5e1313700125bff03f6c07d9f25e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-x64.pkg", - "hash": "d9aab0701b631e358cf6923a64fadfe76f6ce44b1624836f3d2c6d1a5b0bb7721bff917c650652ff909016a3f60282c34713cef272b9bd5254c0201d25d8ec04" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-x64.tar.gz", - "hash": "92a016d4530658665f9274095d87e57dcf82ff0a2224f3a392af61d03c1f836e451798121d8ddee3e4e5ce20943af77121b0312f27a9c900f39b397381e9db65" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-arm64.exe", - "hash": "df455fbc6e01cbfbd7fbae7ef1bd0c6b5683b53c1121f347dbecf8e53036d57e37c5697ceee3a7693beb537d4c884405eac508cfdccac7e62d6f758a5dc7363e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-arm64.zip", - "hash": "a095abff8f18a6200d898c7962d563a06dfee603ada017d78418ef4ef431919bc6f63a54e701f7950fe9e96bb54fcd735e345cbec461dcf0c6adbe23b126c7ed" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x64.exe", - "hash": "3c6700b4e249371015116a37c99381d1691c34198900a1a415c44df688ee4e8c648e4314d44a1fc5461131dea6121a600ce105a056691f92d40a490be1397c72" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x64.zip", - "hash": "def0b094747e609d2bafd33dc739fea1fb166b794bfd58d348bf62978d1f35606c0bd31ae2ca59ad947641acfd4eec92bb3fe1dd197ac28f2bd600ed125b5b96" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x86.exe", - "hash": "385c2d6cca7ee102e29f7135cc5bcab243f6b583c6eded21a7cccbf2154de84806f62437e9307ae391fbbafa69b1ae25d3b609ca937a0c00a23ba8a629a87dfd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x86.zip", - "hash": "4827af7a7659d5dcd6283bbf55dcd260268985c28bf8e5e16dae8bb9a08cad7d874cbafe1443f025099753278e4cd228c871141aeeaf320f2300b8279476b036" - } - ] - }, - "sdks": [ - { - "version": "8.0.405", - "version-display": "8.0.405", - "runtime-version": "8.0.12", - "vs-version": "17.12.4", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-arm.tar.gz", - "hash": "f9c422221ce1b9460e4778ee2512b8e38c78eea77e975779af03f82feb5664b94d33c57d103777839b9e772c039419df5eeaa479b55b78d70013542a87d2b602" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-arm64.tar.gz", - "hash": "07988b784bf71913f607ce0ced50434c69980ae715ca62fb6af68f7eaa26810c3f9ffe24df1d8706d1a557c3eb7756143e5357016089cf1508714baa1cce828a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-arm.tar.gz", - "hash": "f83accb0ed45b4c9378a54c2c74fd8f559056b7b771af70ad25d62d41dd1c384b795cb89fbde68959db86883b1e89fe6749100c055f2f3089e343b2a5e1f1704" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-arm64.tar.gz", - "hash": "af728630dee4205f9552f52f4a06f48ddf4aff238abb32edfd01814cc0e710c139f48ef569ad90ede519564b9bc057baffb74eb60b54ec47364c51c5c1cf789c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-musl-x64.tar.gz", - "hash": "05078ffbeb35b7aadcf8927c0bf0aec6af5de4e616585deb55743080c0b34bb6e4becaa2e23c2e6c3856bc0826d5e54f96ab6983867c5b1af6307c62ecc01837" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-linux-x64.tar.gz", - "hash": "2499faa1520e8fd9a287a6798755de1a3ffef31c0dc3416213c8a9bec64861419bfc818f1c1c410b86bb72848ce56d4b6c74839afd8175a922345fc649063ec6" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-arm64.pkg", - "hash": "421df3ec69ea06c42c94043670e53e9d965d0d0261513c60249800830019a8c71fd0dbf0fa8ccaafd5b92a2ac38d37aa0fe4b85c1e523a4ba3e9cb2bb80749ec" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-arm64.tar.gz", - "hash": "3610bdadd7bc0c137f283e95b01e45c186eeac765207fb76d22b10876a8f085190609080e074df9c8b1c70b3b647559f542b5e1313700125bff03f6c07d9f25e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-x64.pkg", - "hash": "d9aab0701b631e358cf6923a64fadfe76f6ce44b1624836f3d2c6d1a5b0bb7721bff917c650652ff909016a3f60282c34713cef272b9bd5254c0201d25d8ec04" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-osx-x64.tar.gz", - "hash": "92a016d4530658665f9274095d87e57dcf82ff0a2224f3a392af61d03c1f836e451798121d8ddee3e4e5ce20943af77121b0312f27a9c900f39b397381e9db65" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-arm64.exe", - "hash": "df455fbc6e01cbfbd7fbae7ef1bd0c6b5683b53c1121f347dbecf8e53036d57e37c5697ceee3a7693beb537d4c884405eac508cfdccac7e62d6f758a5dc7363e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-arm64.zip", - "hash": "a095abff8f18a6200d898c7962d563a06dfee603ada017d78418ef4ef431919bc6f63a54e701f7950fe9e96bb54fcd735e345cbec461dcf0c6adbe23b126c7ed" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x64.exe", - "hash": "3c6700b4e249371015116a37c99381d1691c34198900a1a415c44df688ee4e8c648e4314d44a1fc5461131dea6121a600ce105a056691f92d40a490be1397c72" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x64.zip", - "hash": "def0b094747e609d2bafd33dc739fea1fb166b794bfd58d348bf62978d1f35606c0bd31ae2ca59ad947641acfd4eec92bb3fe1dd197ac28f2bd600ed125b5b96" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x86.exe", - "hash": "385c2d6cca7ee102e29f7135cc5bcab243f6b583c6eded21a7cccbf2154de84806f62437e9307ae391fbbafa69b1ae25d3b609ca937a0c00a23ba8a629a87dfd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.405/dotnet-sdk-8.0.405-win-x86.zip", - "hash": "4827af7a7659d5dcd6283bbf55dcd260268985c28bf8e5e16dae8bb9a08cad7d874cbafe1443f025099753278e4cd228c871141aeeaf320f2300b8279476b036" - } - ] - }, - { - "version": "8.0.308", - "version-display": "8.0.308", - "runtime-version": "8.0.12", - "vs-version": "17.10.10", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-arm.tar.gz", - "hash": "7c95f9c8ceda6ea3892cd8b6d6d380e9e991d55b53dd1bfdea34052efd38df97bce3a46bf78025b428483fe727609966a0d8013d80572eb8b55cc67ccad89013" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-arm64.tar.gz", - "hash": "6dee54dc55b59e30e6f32ffcf9766c91ca931dffef8b8a794a839bd12f202ecc574e70085537f7b140e8a1b67d36391864bbd1442a0ce6088e32e11f5b33470a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-musl-arm.tar.gz", - "hash": "b7705b4e891a738baf873c23ac8ff60758482467f508f543ee524338bfe1cb2da078a1964927f723b7beece8efc379d0acc166c07469123f66dad641cb3346a9" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-musl-arm64.tar.gz", - "hash": "bb29a0dfb6ced5969eb3e35258cd52626bbc7ab6798d31fca7b1cd9c8a5b154b5ab606d8e0b2e3912f8277d2eb0faa36c5d535be6304209f560020bd8fdc79d5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-musl-x64.tar.gz", - "hash": "d2e46c0c44e6721cb5213fbad09b539799c488ebea329e42d026d1ffc9b37fa6ff53d2182a49e39a40563c6cca85e8cd32a3087f35873db9f329b2daabc778f6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-linux-x64.tar.gz", - "hash": "f26d4dabbc54e79264353d0d14a8df5df720203c1d0455e65f4d94571e85b1940b9111a9bbb156e6db1d46756e9534bb3c9f1840a20c961901d430b8f1bbe6b2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-osx-arm64.pkg", - "hash": "67633b82b520b4d298160e997b1252658b4ec6a63ce6a086469eca1030bff585d783e781643c357bd729e356791413c3babdddc7c6609fb6f9cf517cd23658b8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-osx-arm64.tar.gz", - "hash": "487909e8a36df6f2b8a3c88676a2d804ccdae7d759bfb962d556ea46fd836e27fae6c0b24b00d54976d323f04dbeb271506bcd2ab284a564a465dcde5e9483b3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-osx-x64.pkg", - "hash": "5f1b31dece5826e696bcc4d07cff351249016f7cedf210eb92f54bce0ca161d54126f1c47c9a5f8922e8a182ab71eae7940db2c7bed927e8ac2092a4811dae59" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-osx-x64.tar.gz", - "hash": "a167c91d1c036722c7caff1261a89b570774d1e2020964257377f064e990f0548c668fbf2b62b3727f101146c057b0007106c97d73beaf98b48765a29a937047" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-arm64.exe", - "hash": "e4663f48bc722cb9246e9681122282242e0663e93d0bc9256e45095e526a8ca111300df94216e78d306a5b4cfc3711b97c87cc01df3e6d02a046b07bd81fce00" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-arm64.zip", - "hash": "b72f04db1253365d28f1bcabed4b5878ccc86b33a7a746d2cb253b193450a8c1b0fe3947391e66a493de33a3bac3cbe9a015585ec2610abcce9786bb6ab34b51" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-x64.exe", - "hash": "910cec33ada22347e85ad1bc92c35ccf88d112cd33f38a59516232ac116fcb5b297d37b819ffa4c171616be76f450e27756d8e91fe67f92c09ada4a580df1e8c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-x64.zip", - "hash": "9c4eff5e070c24c0c4ce9c038b72884a910d32eaf52166bb4bf9bad48187c4e7b14de42e73ae1d41049231d7a60b99bb785440df51e748539e5cd22ac10ca690" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-x86.exe", - "hash": "a45c2f41c4219ba1936191ffdabedc8652ba8ee4c77ada11b960e2b5aef16107abde96e199c443e3a2c87ac42200aa97daf4a7f170c6e80ef0bfe97f7c4e245c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.308/dotnet-sdk-8.0.308-win-x86.zip", - "hash": "30ff67c2c11346c08158935d97f44d83ab8437b4f61078696f8e6abe5a5610514f8dd4466d957dd041843eeb7acbd616bc8e2c02caa9960376c05c18903f4300" - } - ] - }, - { - "version": "8.0.112", - "version-display": "8.0.112", - "runtime-version": "8.0.12", - "vs-version": "17.8.17", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-arm.tar.gz", - "hash": "6140fe3ebcd37500fb018dc99a847219139e7bbb1322550cd521e03ff2e2b73e6c5a7eb2e60fddaa10d30c8a9e2558dedeb8453f85231f811f4d4d999238d183" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-arm64.tar.gz", - "hash": "2d7c1df740e9e25c6c37226ebae641218d2e9e39ff90a92ce1a595edae000e1989dfa891becfc539340edcd90fbb98ace32b8e16b998ff06c77411a1d4204140" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-musl-arm.tar.gz", - "hash": "a978ab8a0bb30a272c4730c3f93554dea030d6666592bb7604047ebf35ba66519bae5e5e44ad188555f01c44ef000927f3431cfc4c2dd771397b985e7bde60a4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-musl-arm64.tar.gz", - "hash": "790b9beb563ff5dc06ce32edd26e6dbfc3be6bf9cd63e5a5b3b486efa3c1a595fd9f4d4254cbf7efde3c32e8542f7f6ee83290e6a6e5e1f7219ebba3ef7dccfb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-musl-x64.tar.gz", - "hash": "48832015e0ad74fc3677086044e0ee5004fc0b9caf29ea2113444a041943e2138efebd34780ab4b63194b794df80a38937b46096d9a20c832db54fe05843d24b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-linux-x64.tar.gz", - "hash": "dec99628b67ca7ceee9d0be6e36dee76723a210138dec05aa781a45f4741027564442e74a986afe874919a2631c3e75555ec68e4c3e475bd2f807a6acaa989fd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-osx-arm64.pkg", - "hash": "dc356f30f5c39289d235987e9e8acd5794ed2ba584d9dec6c617a8060b4771b52a51dd764e62cd798c62bbaa0e3805bee7bf389a8c4c5a40f93af49e35cff003" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-osx-arm64.tar.gz", - "hash": "e28fefa80e8a5eefa1b8ed7cc7bf7fa5921f381cfd3b16c2d77f15ed3b6188f2ded4e158281a92c27ee5349d04a0425e4ca64decea3ca0718b3047e1e7cbab78" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-osx-x64.pkg", - "hash": "96dbb08d0c583137e87a99139e3993e9714b2ad939d6975efac8a5f739a2c6d0502b6bedf29194d861c521c5b5bce27644e7cfb631c4414b147620a80b8cde25" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-osx-x64.tar.gz", - "hash": "294dcb21366f423194dad956a86e0aed9a0e3cc2265ff9b1bf61c78f1ac783c614c25a06f64e6b35790135bc899e414dd77f1d728f4f95c95ad57b8001506ba0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-arm64.exe", - "hash": "6ea537b048ce689ea7156976acc0466cd9f11074ed00e0d0a75aea4ff9f931571a456e6b74867b9e6ce16756f18f5de7a20af16f723112688fcdc752701e5e8b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-arm64.zip", - "hash": "e4222b852d83ce126caa8b56aa855837ba735178444960b5fbb3f5c755b14fb2eb9027703aa97aff119dd9929339e0584e58e7692661314606032eed93850af3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-x64.exe", - "hash": "1f07e60e142fd3de50164ea0eef2e980d288be09bd9f49955600313ffc7c9c8e5698ff1e202e5f98f15651cf1edd03950161e7c9ed3eafd3924bf908acc2cd51" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-x64.zip", - "hash": "a2326748b6ecbf906186947b3b88e9bb99918edfad8b9c1c39eae924370872f23b40a3371e01b31f252b5478e2274d89e587c36ad85059c0cdbd9bb48375034e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-x86.exe", - "hash": "655f9c56ec215699804fc956c4fc076a9b2d33b2a5213a898d1c92194dbf8bd5d69cc1346ee34bd3fa04c4dbb1e385a35039464ccf5666baeffe573d685be5ce" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.112/dotnet-sdk-8.0.112-win-x86.zip", - "hash": "e7408e994550f0d54ac1ff3f46b4da1be494d8bfdd3c082470031fc15e652f4d023eda32ded68e71785d81e6f32c82a5ba3252a00a92ed06aa1b426a3b0d92be" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.12", - "version-display": "8.0.12", - "version-aspnetcoremodule": ["18.0.24339.12"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-arm.tar.gz", - "hash": "144bd7d4502537a2806d17ee1612e4b3c262766c5d83da8b1031ca61f2a1eabd1bba5a531b1bfcafab999f084db961c9795804de651d87f81dd6d64976335948" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-arm64.tar.gz", - "hash": "9323f6584bf98500fe023009dea5b90e49bbb34cdcea0868e8d18c2fe260b087315438ca2df783f259003c1a0ee31f2d735c8cea85c2c4fb04f6dafe05384531" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-musl-arm.tar.gz", - "hash": "174189c851eb178dc7b5624b220b0a0df8acbf41c4cd73e155a9d1efd2e6ad2ad77ac719f51edbba4984e4be90763a26eebbf958c1a77ae32e26f728016511b6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-musl-arm64.tar.gz", - "hash": "77ae48a34d3b9478aa11b8077f7b1d6f5ea47699f92e3dc29d05cccd16b25e023587a960d9bc2a5c25939cbb7494102ce7ae7fd6c09f597914981a5e7ed92716" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-musl-x64.tar.gz", - "hash": "a7d3bae2da7b4da946851d36196d41053593af4138d1ae020ce4b9b141c7e84d53446cb0891e127983abd5e7c011d7c9d2039227dca9409d6faeb6383583389a" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-linux-x64.tar.gz", - "hash": "03a7fd37dce46c31d7e74da7cd4d9aabd82d5e087859d0065f470ebf7d0b62ad1feb59fc3f74690337a928f5751e04bcb7838896e64b3f8d25ae035c5b7f5c83" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-osx-arm64.tar.gz", - "hash": "97be6555b94cfde22550b434c0eb8dc329181b30b930b62c52f4047809946d0558b3c8095509cd07213c75d51f5d260207cfb09335f160ed5c55ee8b69e6374e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-osx-x64.tar.gz", - "hash": "ab313cd3545986f305af11f5495a396cf5e7d6626d0e46917efedf4af7aab29cb9f2de114c9d5218081d6739dd52f96989906b10536995f5672b71cc865894a7" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-arm64.exe", - "hash": "0ef5d04b1041f5a333926705d35a5f0a88bb1de029baf67f06f8b0351ececf95a2bbff5d7dc1e56fdcc9781cd0d92cc1e4fbb2333000ef7ae20809331fd376fe" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-arm64.zip", - "hash": "740714720dfa19fad80aaa4e6e740df3462bcaf06122c28ccf33ab9821c5f87b6887e5cf1296d74a383c78538916acf2bd69d25469a60c4248985d5207a2c28a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-x64.exe", - "hash": "378536989589882cd4fda1574633e2791814763d24acdcfcf7c630c98f482e4b27bd56295c1ce0423d5c9e16d7699c87b459d479b5cb074966d18e6653d6b876" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-x64.zip", - "hash": "28a3d2cde0d55da3c6943d707b2744cbf9b225bf3e66f8dbb18aba5196725bd7048f4fba5af219ae0a7aef31a4ff7e309396518ee7dc0eb2a5c2a61955d5b10c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-x86.exe", - "hash": "0a98d63243f2f3ecf02ec7cbf242a5af8e4def2f0efdee758961063186988167f973ada0733013fd52ba6ecfc1b822a00e5c5df6f4a027c113fbc226810c6559" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-8.0.12-win-x86.zip", - "hash": "ce8ebb3c00c45fe2fdc418883220767161af6217fc9cf7cd4e01a9d187eff4d0f73d45c90376680f3a8270f958784e295ef64adb4823cb8ddd4cbe8be9ac0fd9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-arm.tar.gz", - "hash": "7833ebecd098e2009103bab89dd6607135c6fa83dab11d206bf74aa696e2a71ab51d23a83673860c14301448651a54e932bb93373f4ad2bf8ddd04ddb20efbd2" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-arm64.tar.gz", - "hash": "68d304d4e7e0d1dfb26d71886d9656f4208d36ed62ea89d6cb83a21e2fb5cf96a028f42cae146f4467caa8384a69ee7278e031ebf6c7053787968415ad048637" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-musl-arm.tar.gz", - "hash": "44b22ee55213537adfeaed8c94bf295769ac96d3d2bc244cb20811cf4aa7c215f6c2e31856a2c100c4fb1eb0f9080f07c57fcea7e985232d32c0520e7c02449a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-musl-arm64.tar.gz", - "hash": "44707162db307159e8ff643e50d630997b86043cd4e61059129fed20ac6b88c2a5d61244f6da40d93f4681e1fc4cc844174d62e38a028042d520b963264ab1de" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-musl-x64.tar.gz", - "hash": "6ca899516f24c3173bdc467dee009ddabb3a78d16a17ed4295b6ce24f85734ac99cc70dde57a83f66d28ceb1c953ba6a7804bd89b6b613b915346934c0dc712d" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/aspnetcore-runtime-composite-8.0.12-linux-x64.tar.gz", - "hash": "2a1028df28a8d9967884c7cada4297afe23cd412f9cc1b53fe20772dc22735cf50a8899481fef163f2d17e6081806eac7e90cb8ff6701067ff7ab2b90e70c7dd" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.12/dotnet-hosting-8.0.12-win.exe", - "hash": "8c9cea084bf8f7c6f600b8ee850060ea55fc048a715777e38189be63e4c35eafe36300789514f6fe9d2e12e411d5275fc661240ea6d395128a10c8b9747eb123", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.12", - "version-display": "8.0.12", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-arm64.exe", - "hash": "6f1445aa9ae9133d4e2a0738b30c2e6ee921e16a5f64b958e62de042cd1ad3b91f8565251d59ca9fc801e96fe6fd1b39db0feb3acb5c8890751320671dadfd47" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-arm64.zip", - "hash": "20862090cea0c8154c4be0c49a673341e4a9b5c74906a1d58a5d1547ced9910abaf9ddf9b6f4a2a05be54538e2b274e91f785b670af163581c37ef3da7af055c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-x64.exe", - "hash": "c5b6a2b5c38a8b2a4d4f096e6bb62ecd74ebfa039ce9d0e19b023099e364f29a1c256014b8995ca152b64a00c951feb2f93bf7d4c85eb70cdb30a209f4b1e17f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-x64.zip", - "hash": "00a3ebdd3b676c300338655330806b609d453e8d18f102fb910ff7b8858b3b29be508452e4715cc8926e5a417ba320cd37b68302bfc699b2ee9a6ac8efa53bc7" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-x86.exe", - "hash": "6d70f98c4257083dc0362bd0dded0ae02baaa54e53367227a4accb095c7c0962e5d47f7f933805e506909cbb58e8e3cd0e4983fad11bd11ece05207fa5a6c0ad" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.12/windowsdesktop-runtime-8.0.12-win-x86.zip", - "hash": "e2cd7d17e58f1daef4745a5cc6df8fd0ed1788654504492abf4a8c337308b1374d3c0cc9d8f939765b2ecf09e4c3e662172e5be46d04dce1ed7e911bc28ade13" - } - ] - } - }, - { - "release-date": "2024-11-12", - "release-version": "8.0.11", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.11/8.0.11.md", - "runtime": { - "version": "8.0.11", - "version-display": "8.0.11", - "vs-version": "17.8.16, 17.10.9, 17.11.6", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-arm.tar.gz", - "hash": "279b93bf6b5c5c2f45427b620c56bff0e22ec8f3fb9a4f3749e7a6a0d0d0ee8163851b5bd081c6814b758068df7ba1b9401c844ba5905b27a830020846ef6406" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-arm64.tar.gz", - "hash": "f27d66dcdd249a6a2f87241b460238960240d163ffc081d8e7b42bd62702079f1a6784e3503dbd4ea8f9e816d82142fc829c759cbf9a1682b0340f0cebe16db5" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-musl-arm.tar.gz", - "hash": "e29ec7c4c123debfb1c20aa49eccdbcb6c493a0bca8d480c113d0e413b2b546ed01767b1056dda4b0f58029c147f513c3af95669d29cb2babdbda4d358b2d0fd" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-musl-arm64.tar.gz", - "hash": "6a94ce888eb060f63a0ec9554985198c48c5c5612577db7c10204b58b2ef36ef96a597067d75574abdca61a87472914b5df3312be74773ac32fa7043d60370d8" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-musl-x64.tar.gz", - "hash": "ff00d19ced7ea204caccc6c11c484e5a1ecdb9ffa9ac9a6b8ed2f7f7c9089aad098e5b41d2ebe5c24cbbc0956df64032b62ed7277fac3d3b64b742c50209be61" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-linux-x64.tar.gz", - "hash": "71ea528900c6fc7b54e951622296421d2a96191870c47e937117b84b28f91bf407d02046ddfecfe4ac37dc6182c65d1940927c33e45fa3d6f0179f81692490d6" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-osx-arm64.pkg", - "hash": "99d78719d5153581f7987aa61346cb8677f9263e5c522168b6a50823b9b2993149332d1cde8e5fbdb4081fe53c969e805957d83b2fe99aa2832588324bbc76e0" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-osx-arm64.tar.gz", - "hash": "2e15d93aa59516f2e779f0c2f3c7b50efe3c4547d546bffbd1daf23fa6503d693649b2a9355e0388b7089e2de072e7b884ab04b38ad66544ae5c97c2f2089d1c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-osx-x64.pkg", - "hash": "30665577380b8e7f4765a61298d67f874e9b992418fd82113f2eda0b777723fca428bf829e77b4c8a3f05f2328887ccde0a8d77c7c60a6a9b45eb9e1f4c1ccf2" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-osx-x64.tar.gz", - "hash": "c2d008cac72b1999ea91ad540c04402aa8c2c55b992a850769d39cceaeb5634f6f7f04d1dbbca51bdd9e12f045fee315b656b58530b57ad2f61480ecadcca3d3" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-arm64.exe", - "hash": "5742b8995a65fbdd70017d6261716b59ad8cecd1565c9d3f3a8249df704854552e62db0733130adae9608bbf8fb13d1c659c4f343f5a824b6e7d616fa74f6da1" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-arm64.zip", - "hash": "30a38c257870a912cb7662a60f54145910c50252b7940cf40072659dfa3618391dbfed0a3e1ac4c11843fce3ed6b76b11a4b6267a13401daa9192226e7842690" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-x64.exe", - "hash": "dcd4e61239389e51fa3679244df29cbbf43ddd0305546479d64c5e1da3c0f4322f60a0af56375a2d3e0951c973546dbf81c0268be53291aadd5a36c65c3f901f" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-x64.zip", - "hash": "a0ed92b8ffeb4efb61a93c3cb7c1ed66529e23cbe60b44d621b49b1cb90159866a3d921630485fc0e2b1660b2001f73752c6fa6fc9dca40145ef4549dd26a1ab" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-x86.exe", - "hash": "b438ec56b89c3b1f0506e2c0b11d54330c7090f44a2bcc54b834544f8fc0e68b24bf926d33b4b5933d2749a135b6c71b9a9e0dc7ac0808e45fa85047ef7791ab" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.11/dotnet-runtime-8.0.11-win-x86.zip", - "hash": "cb80a41ea64db17f2cc21390fefeac7342e965fba3bb6f768c51fdcf7271fbd1399eaaf33ec1162bc206e47bc8d296d28ddad2139c8a770d02e62fa90af49a32" - } - ] - }, - "sdk": { - "version": "8.0.404", - "version-display": "8.0.404", - "runtime-version": "8.0.11", - "vs-version": "17.11.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-arm.tar.gz", - "hash": "489d61e3b02e49ef6f3416ffe2675e072ae7d9c3fc43fac089d373e42bc57807937d2d6a7717daa21f225b1144f720f0d15f632460dfb14d0ad2adb8088de4d1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-arm64.tar.gz", - "hash": "d147ca2e6aad8bc751b522ae91399e0e3867c42d17f892e23c8dd086ab6ccb0c13319d9b89c024b5a61ffb298e95bcfc82d9256074ddace882145c9d5a4be071" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-arm.tar.gz", - "hash": "b32ba287ea1075bcfc4b54cf6027dfb1a57671bb6dae2f8d7d45ab5b020d42ac8865c53abf6827dee910dcb3a41dbabf7528cdc681b1a75a6c4c9fdc5dcb3708" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-arm64.tar.gz", - "hash": "2c2cbaf17607539d67647b4724bd6e11f1d00f617c98c4408ec947c1f2aae474dd3bb015d0bc39212eeefe9fcdbf20e6ae957008aae90c720beec0ebc7798ce9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-x64.tar.gz", - "hash": "e6da3b405d862f31d790f519716f0827a058e3580afe09d1103522be42e56c2e2be1e800b94dba940334585b785eab61a38bed02323695ca4407087e6c0cb9f6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-x64.tar.gz", - "hash": "2f166f7f3bd508154d72d1783ffac6e0e3c92023ccc2c6de49d22b411fc8b9e6dd03e7576acc1bb5870a6951181129ba77f3bf94bb45fe9c70105b1b896b9bb9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-arm64.pkg", - "hash": "dbcce7787bfe6e104ecd456652e955e4907373f52c3171a984554b583cabc3e615967e398c51a3f75db52cec30139fea79548addf1b3277a0fb3ec6c5396c248" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-arm64.tar.gz", - "hash": "6476531a63bf4bcc7bdde2f5a309fa2b2920bb630e08fa0aaeabd6578bb81d534b1dd3bad214617f72b5555a49a56b9ec770626d64122da7076dfc13f0c56cbc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-x64.pkg", - "hash": "bdac0283ffbcac2e2f1e40a6363974f8f81cfd7744eb08e788fdf1be6afb648931fa975c4ddc15cd9de2fd5e2df885f22435c31e2b84f7a09f2580164cc8b2d2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-x64.tar.gz", - "hash": "2269129e81d66cd0cbb5e1af1185cb5ac1324ce89aeb416ddb6ca46c6559cc2ca223864bca7f88ccc6ba34f72c97ff47fa7cf1a17a5908cafc4d7c7725412e99" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-arm64.exe", - "hash": "599c59addcdb9b7680f88721a6365eccede1f56634c99fecd5e8dcce5fb0d2050282f2586816f8ab89d0f64450cdba44977f2a8bb15a9ff68a22c6669986b19a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-arm64.zip", - "hash": "d3ce21557b9ed09e7e705930a4b7ebb602882f55721a87570e9f9f571754a0dcb218d0354f97cb1364ba43f67ecf1d9e7240b4cc4454f475dd4af65291a9f939" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x64.exe", - "hash": "c48518ba763f6b72ce8c83a4289e4f2468c5b654b80ccebc410d3c76b10729ee803ce0964d698e1dc11fffd09ec07e16684db48c2877cf57e7608a773eb02738" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x64.zip", - "hash": "fe2a799726fafa252352e6397dd790717f7263903408ccfedb0fb275ba93f96a7840dacc7f188e94d87671313d2a48480ea8387408ed5772b43c363e2dbba1ba" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x86.exe", - "hash": "95185dec2e17cc186af1632901d537e5ed2bbd9db0b38ef64fe09a09d09aa83230460b83dd59dfbe2c92b3fac2e95f8216b7741ea7990a5a367c50801cd97dc8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x86.zip", - "hash": "d733d4a5638ae9de299c778edebe006b2f2ec53ae39b87a918c051afc9d1fc81d03a2d7c2d0681ebbf7d15d0ad613d4126f4929afad57cb35b191c1352ff9c5e" - } - ] - }, - "sdks": [ - { - "version": "8.0.404", - "version-display": "8.0.404", - "runtime-version": "8.0.11", - "vs-version": "17.11.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-arm.tar.gz", - "hash": "489d61e3b02e49ef6f3416ffe2675e072ae7d9c3fc43fac089d373e42bc57807937d2d6a7717daa21f225b1144f720f0d15f632460dfb14d0ad2adb8088de4d1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-arm64.tar.gz", - "hash": "d147ca2e6aad8bc751b522ae91399e0e3867c42d17f892e23c8dd086ab6ccb0c13319d9b89c024b5a61ffb298e95bcfc82d9256074ddace882145c9d5a4be071" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-arm.tar.gz", - "hash": "b32ba287ea1075bcfc4b54cf6027dfb1a57671bb6dae2f8d7d45ab5b020d42ac8865c53abf6827dee910dcb3a41dbabf7528cdc681b1a75a6c4c9fdc5dcb3708" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-arm64.tar.gz", - "hash": "2c2cbaf17607539d67647b4724bd6e11f1d00f617c98c4408ec947c1f2aae474dd3bb015d0bc39212eeefe9fcdbf20e6ae957008aae90c720beec0ebc7798ce9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-musl-x64.tar.gz", - "hash": "e6da3b405d862f31d790f519716f0827a058e3580afe09d1103522be42e56c2e2be1e800b94dba940334585b785eab61a38bed02323695ca4407087e6c0cb9f6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-linux-x64.tar.gz", - "hash": "2f166f7f3bd508154d72d1783ffac6e0e3c92023ccc2c6de49d22b411fc8b9e6dd03e7576acc1bb5870a6951181129ba77f3bf94bb45fe9c70105b1b896b9bb9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-arm64.pkg", - "hash": "dbcce7787bfe6e104ecd456652e955e4907373f52c3171a984554b583cabc3e615967e398c51a3f75db52cec30139fea79548addf1b3277a0fb3ec6c5396c248" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-arm64.tar.gz", - "hash": "6476531a63bf4bcc7bdde2f5a309fa2b2920bb630e08fa0aaeabd6578bb81d534b1dd3bad214617f72b5555a49a56b9ec770626d64122da7076dfc13f0c56cbc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-x64.pkg", - "hash": "bdac0283ffbcac2e2f1e40a6363974f8f81cfd7744eb08e788fdf1be6afb648931fa975c4ddc15cd9de2fd5e2df885f22435c31e2b84f7a09f2580164cc8b2d2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-osx-x64.tar.gz", - "hash": "2269129e81d66cd0cbb5e1af1185cb5ac1324ce89aeb416ddb6ca46c6559cc2ca223864bca7f88ccc6ba34f72c97ff47fa7cf1a17a5908cafc4d7c7725412e99" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-arm64.exe", - "hash": "599c59addcdb9b7680f88721a6365eccede1f56634c99fecd5e8dcce5fb0d2050282f2586816f8ab89d0f64450cdba44977f2a8bb15a9ff68a22c6669986b19a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-arm64.zip", - "hash": "d3ce21557b9ed09e7e705930a4b7ebb602882f55721a87570e9f9f571754a0dcb218d0354f97cb1364ba43f67ecf1d9e7240b4cc4454f475dd4af65291a9f939" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x64.exe", - "hash": "c48518ba763f6b72ce8c83a4289e4f2468c5b654b80ccebc410d3c76b10729ee803ce0964d698e1dc11fffd09ec07e16684db48c2877cf57e7608a773eb02738" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x64.zip", - "hash": "fe2a799726fafa252352e6397dd790717f7263903408ccfedb0fb275ba93f96a7840dacc7f188e94d87671313d2a48480ea8387408ed5772b43c363e2dbba1ba" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x86.exe", - "hash": "95185dec2e17cc186af1632901d537e5ed2bbd9db0b38ef64fe09a09d09aa83230460b83dd59dfbe2c92b3fac2e95f8216b7741ea7990a5a367c50801cd97dc8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.404/dotnet-sdk-8.0.404-win-x86.zip", - "hash": "d733d4a5638ae9de299c778edebe006b2f2ec53ae39b87a918c051afc9d1fc81d03a2d7c2d0681ebbf7d15d0ad613d4126f4929afad57cb35b191c1352ff9c5e" - } - ] - }, - { - "version": "8.0.307", - "version-display": "8.0.307", - "runtime-version": "8.0.11", - "vs-version": "17.10.9", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-arm.tar.gz", - "hash": "92981bdcdcfd184db5e401202e37d6aa84383b52367400e26fb25c08b75de8b6ab096e575d73044a7d5230c5d478001abce4daf28a1afb372ac2346525380e4e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-arm64.tar.gz", - "hash": "5d3b992b525f3ef8be5faf67378d7457210eb81452c6a4090dcc60567477978480be180d04886165a4a334546421bac5c45a0d8d6ef9b40d0c77cd2d5e6fcde7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-musl-arm.tar.gz", - "hash": "c33cfb368d5dff64dfaad5482fedb5993509c64c659f08f9f48ab655bb76931ed17bcf0f2053a4628820e5c882fd3f876e3ef0125c683625c6f28a7607e63bfa" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-musl-arm64.tar.gz", - "hash": "501a2cefba13043f0ae1d9609bc3292da217940f531e2f67277c0738de76692252d7813dcba706edc2a20f46a9fe76950c7c18032466e8e8fb4824e7ad6feff5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-musl-x64.tar.gz", - "hash": "252573cb7d40128a413914148c3974c105ba7c8b9e0327b4a625b7a3e3154177bebdbfd489c2493fb14fabc097c161ab4fc98a4f26a734a5fd0c9923f5b3cb80" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-linux-x64.tar.gz", - "hash": "94923a5cc2337b531bd3bdf08c99e7169ecd4c81a63a2b8ce204fb087c4eb526695218fc763860ea2930426c2b31c2328df13370d64217d375198b93fdf04c9d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-osx-arm64.pkg", - "hash": "19ccc1070e9e334a8276ca9337c990f24ac25195deba8fc769ec6e6e0c580acd5cf0bfee7047dd74f26015b0402dd2f36655d36be8a9ba2b6aeaa9202806ba55" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-osx-arm64.tar.gz", - "hash": "c522d9e22321d044bbb447ef24869b125753d2267a5dd5387059be099d37d7e981b38103c4de695210274b2c40a26edbf8658c838c26d20b44f31f521b45b5d5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-osx-x64.pkg", - "hash": "a2e61b3e6c230c27fc736076b8745150d53caf5ccbb628716816c01f915da6ee1fe47a4f82ca980d9857167b1bfef3715b61d92c3968891d7134efdf9f453f6b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-osx-x64.tar.gz", - "hash": "c93d7ea505c3d7e1ab024a3b0110ebdd6832c582b6e3f80790bcc15554e039faaaf56c9a2b647bbcd25c126eed24871708bb9640b4790452ced99dd171ad15d5" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-arm64.exe", - "hash": "10e77ee7494911c9124daf61c7b1bf242f4baea1b7cee8569080fe0fe79f641c4539a519e23b3b5c06f96f11e72feb6d0de17814a231ad936a3d9034fb8e3bda" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-arm64.zip", - "hash": "18b4bdb5f6a4912a6790b970a6d3c822065ef834a2f2b981a348efa3936e069ac973d9955bceacc84853bc0f0182357a4e700a76a471df034776fb7baefff668" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-x64.exe", - "hash": "446d060b6716a7e77e353fcb9407ae7ea80596979bafbcb8a2339a374319cb7795996250c9e423f6c64ced596dc0feb1bea75c6e861d2b38ad9ef9e42848476c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-x64.zip", - "hash": "57f7db4ecd8d2c25d2fa4201742b5b52965d4b1b5566c2580dd91a3d22053362104f7b50f1a568fdf4c363b99a4dd19c1f687afd99d06de8b08a1c81f5a8de1d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-x86.exe", - "hash": "6fb98d60155db665f0b2c9b48bdbd5f3f16f09950e5dba2e6b673da9402f734a6a135fa1710364d3751738e86a946ea1322ea7675d5a15788fd508bcc4437a35" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.307/dotnet-sdk-8.0.307-win-x86.zip", - "hash": "fcbdd8cb6c32082c1d33cee3e3ad835a48de5d4dae70b4bb9cda171b654ea11d9a655a27d669fcead0dcfe2fe319b1aa65398fa1fd5069e90477cab9e49b8e54" - } - ] - }, - { - "version": "8.0.111", - "version-display": "8.0.111", - "runtime-version": "8.0.11", - "vs-version": "17.8.16", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-arm.tar.gz", - "hash": "2f0df60b05878e02c16855c4942e8f47f09a356c598b55846ca3b86e9a5a4900e774fd75ad69800da2990d16e6d4f16edcc53e5fd9bb06998eb4abe0da9d2c86" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-arm64.tar.gz", - "hash": "9ad1a8349d4cb652fbe99eb2b56b2c714f09bb49ecc2318d859721edbd0c2c1e5f338444ea1ee6dd2f02e7d101bce0d3c956913312677037059644779498a54f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-musl-arm.tar.gz", - "hash": "297fa288c8c174ec16ae9d775411668a827bd22277722b0f2885ee6097c0a827d9f35c34052ce58a90f16d4feecabe738c63f1c902b3a8fea36771a3bde4afbe" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-musl-arm64.tar.gz", - "hash": "7cd6fa333fc195e5f5515bb675b86ec3160a4d1a82c6896b39d04779bb1d2aa8677498ea72a7d3e85abc08646552d361a277d9a6fb8c418af7077df94f2ae03a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-musl-x64.tar.gz", - "hash": "a51753743b0145060f7db17c33a4708da05f1ff7eda043ae9f39a3c74c5a75537d016e8cd6b1818ac2d03ed00d3539b4a1cff4b360724a09822baa8a896f9202" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-linux-x64.tar.gz", - "hash": "e46e39a771b29744dce665a87cd5322dfa912ab2904bcc10f0507dfcf4ca05684cf64c34e12c7084af49a784cc04eb532a3ad2be4ceb668176347feb4be37f81" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-osx-arm64.pkg", - "hash": "cd7876515ec36cba0a20963cea50c7290c9c0b510b0b7eda33180d3cf7f99a2edc68d744c98c30a16e47a188c7172cc711c409cc7bd8063516501bb901546789" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-osx-arm64.tar.gz", - "hash": "b47fff1bf5d9e2b5ca7b684d72a0504c3ccf8b3374b8d7a2e38e41722f7e11748001fcd3448e626014b9fca78082bfed9c0e46f5ab141a646421ebc2191b9a5b" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-osx-x64.pkg", - "hash": "ffad90dec72a979d879421aaea3207912f5ee2cef02d004404035a0a043cb849083a26285963f52232f38b49aa0ed88c0fb88d066d6d830de3171cb925d0692b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-osx-x64.tar.gz", - "hash": "419f2a65e5714537b185691c9a7152abd4e5f85f6e58066086e3f341ea4f16e0f564bfdc64cdc1e78763a8c3b872b76cec25cbf77fcf665d7d74819c61fdc96a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-arm64.exe", - "hash": "da7a3e547c2f3e4efce3cdaba2350638e0b1d8257092fd37e1d8c4cbbf1a4fabfb757858a00be837d5a46c6a7e29e4558182da6e9721616598b6e7594b68f145" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-arm64.zip", - "hash": "0da7d2ee750ad8e7dffbeb6aa3a9ec56f602a601adcb1ce50df0d65d908cdc7c8c0ff0806bffd063799f5064b11307bf7f432e86ca035223831a4a5dc203958d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-x64.exe", - "hash": "ef4416f0ff1e90131ccdb1f183590fc7d1fdbc82cf09f081b3be9fced7df628590ce3615ddba239375dd2e4bdd5d2c37811ff797c25ac244d82eb14ca3c3615d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-x64.zip", - "hash": "ae87a5850dcb5949a954bf32c13deda443725ce853ba325f30127a4f6fff1ecd7eba132c4a964f572e934d8e6b897abca81260134eb06af374a20914e9d6c09c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-x86.exe", - "hash": "62732c054201aa369a3b7336909ad0b3cfeb1c40f9ae5bf4a0b788765d0ee8368c497e6c1d293af76218cf6bf09b761445a4396d4f2bab41f00b665e00dc62d3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.111/dotnet-sdk-8.0.111-win-x86.zip", - "hash": "60640174ea583de361305f49fce5283674a0169091b76163fc5fb5a26bafe447f623f0d790df5375858d0bec43120a3b0a81d179bb1d5b3e794c51bf02346bf7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.11", - "version-display": "8.0.11", - "version-aspnetcoremodule": ["18.0.24295.11"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-arm.tar.gz", - "hash": "76645f129465346c5de7c543bea53829228a9912971c459ae48243317c73f47dec23d7b52d7d94ff3c701b8d2de651f3375deab38100f97be81f577c3b8cce1f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-arm64.tar.gz", - "hash": "75b5888b7d65cf9e971925e48962c0822f630390a3f0f04ce1d84546990fed312e8ae8513c82caeada145c2ac8de2b229fd1dad2d2df36c8e9db0df9f65595ac" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-musl-arm.tar.gz", - "hash": "0748242eacbc47953694e196554cba14d91fc30d797fe69f904504a705228045ec46cb0de19545208ccad742682d435921fb2532c23b5bbe82295fee0804fba9" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-musl-arm64.tar.gz", - "hash": "862ca7cf349e9454203a1389ab85283c91a104d7d6b70ae66c39b7d413a351df2075edba520673153110b9ebad15801b6b2284dafb22bdaf93555b964367df40" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-musl-x64.tar.gz", - "hash": "9120ef0cac2002fefee4ab900fc0085fb56dcae58567cf8f8f61f04f6f5623dc995cfba8f6dc2c61fa4d96dda3a2ee0edc8530b40fdbc16d26aef5ba32721c4d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-linux-x64.tar.gz", - "hash": "e7acf9dc5cfa49aa7ec30dbb9586bc7beaac9e3116c75303b511770e3597b209739f28c754b2107c0255acac90187cd1000c1ee772463fc828934a4dda35f5c3" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-osx-arm64.tar.gz", - "hash": "6b2d3eb58d778b63f982a0d575397386a6d07fca649f1b94ddf08fc44e9884df54742aa0b82854cd594120984a39c62c79c15462f8984cdc04188542dcb612c1" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-osx-x64.tar.gz", - "hash": "93e4f129dddfb153f24183759266d0d24a2131e7f272361bc05e7b1b55071c1c6a2e0375f7aa20422712c85c922607e8e23442eb9241ee73608d2f2015c7dc54" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-arm64.exe", - "hash": "9e785e082be349a5d8507ed8dc51c9314ed281ed34903e4f3cb631d5fb4a7d98e87487a5de9f10e213638e470bd0b6b6a1730c7aeb48283140d77d382c7a2802" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-arm64.zip", - "hash": "1c7366495652c2d892e74eed81540cd1d47f7270becbad00c01edfa0c9647a1f60c7da494a4936c2517eace197bec7cdb32d8eb4f156acea9d65bb5870d2601e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-x64.exe", - "hash": "272766b10dc3b049b097161d9a99728993b3859b021476479a145e64114d242fa409e13038d9efb6ae172f93624ee0ee88bef2e4a8f9f8ce29aafbb907b98d4c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-x64.zip", - "hash": "a3fafcdbd72e3a34c60c8a607a2c8e4122bef88d8f2fea56d7a87552546adfc646865b99a0cafd8ef945b0db918ed189ad1080e9e5f845f10a25fa9df5961c85" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-x86.exe", - "hash": "67677c5c954c60b893abe52268dfc2a4efd7ee42c3642360370b57905498a461a998d5d0c40855e374f80249a4299d4799e76ae7ef2b2399a5628c1140ad80b6" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-8.0.11-win-x86.zip", - "hash": "c0399cf5b217703f1142f3d44a29eb443621f6038fa1bf602c3c661b5a55c13f18a74f90a6abc3d1c1e1b6a4232a7ab7b9bb19ba7f3454387097e98f79b5fdd2" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-arm.tar.gz", - "hash": "1d15946b823f3aac007d5f265d3cad731bf79aae60b79a7c6c27f62c9661b03280326b8ead37a16f0962af00c1b1569d95b84f9a25e8de672fa610a74c3faa82" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-arm64.tar.gz", - "hash": "0e0e02c03c59ea68eed94bd482c5820421184f7b41a90fc7c3ac58e5ae3c588233e13722906f5d3de4513a3b9a55bdb81d13e3b193d57ddb106ce6a5d027a99c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-musl-arm.tar.gz", - "hash": "74c72b06059b51d75fb05e6495a65f096ed39d6c3ebcd0e3fb4712873d6effeb005d85e1296f334acbe32ce53e3ace66960e756b1e3f7155257508eb9c8295eb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-musl-arm64.tar.gz", - "hash": "051b1087f6fc052f9c52c4f00d526c52c6c16705eae81ca5a5f436503d17eadb668a2065eba8c70214b3088d3a3d3a68071946c5ffb1f922b8ba5a43375158d3" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-musl-x64.tar.gz", - "hash": "ffe1b824ce11dd7e100278b6950c5755e4a5c975328c14c56a403fff408e024506eaa67c7be24baf6b87b3afb2c37ded0e89eaa5170cd04e0e279f4f969e28bd" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/aspnetcore-runtime-composite-8.0.11-linux-x64.tar.gz", - "hash": "af0bba2eaa03d98faf86ba891281bec966e7faaee5b317d099748440adba49355d17bdb6cdbb46f9c74828b02fe90059c4b7890ff6e2304c211754a0dea3c40e" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.11/dotnet-hosting-8.0.11-win.exe", - "hash": "efe670c04536c87d316c9c0c6def1f8abf47aac8bbffc5b0455751b6e027a6cb71a651bedaf32a91e70d0247f13adb2d114a277eb4104012d14ead4b2a9f25c0", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.11", - "version-display": "8.0.11", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-arm64.exe", - "hash": "888487f046d07ac904c6de902dd5403d97f5a7251758e976f98c43c8a5fc1146996acc37d492466ab60bcab00be4db433a84d9ef01e897c8528c800262f13ebd" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-arm64.zip", - "hash": "c528745b42345f0a33dba7cfc9227b41e5c22b33e3d472ae502f782059ef2012e6ceb84c721b9b54c4b8449411a13a36dc9b535e9c4a79bc4e88e235625e61d1" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x64.exe", - "hash": "fd6f0ac18e77f92b78c41aa2f3e19b9d1de6e63a0e4a517c897e68dafa5131f734d39f0b1dc9ea09a3b0949805d72ef6f82efb1f6a689ab055048705f43cff7b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x64.zip", - "hash": "ae6a326b18ba173423736630da90c2f67a14dc1bf28e19e757172070bebeb63218756354832fb5489e54a4c0145b7a50b3328be19cd9c298d990b76093a84ea0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x86.exe", - "hash": "32d11f33394ea1662a23046c45c224d60b25897951072d00324f6a9a297960086e3b8c606018ef947f40b19b570f7335e18fe8481bcaf6edba4a349285be8186" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x86.zip", - "hash": "b7813060d672a93d7273f11e03b6de923aa853d4a788699357199b233effd7faf282610e284d48e95c1fe1501a1f3279603537265c56c938c4d40186ae67ff8c" - } - ] - } - }, - { - "release-date": "2024-10-08", - "release-version": "8.0.10", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-43483", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43483" - }, - { - "cve-id": "CVE-2024-43485", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43485" - }, - { - "cve-id": "CVE-2024-43484", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43484" - }, - { - "cve-id": "CVE-2024-38229", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38229" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.10/8.0.10.md", - "runtime": { - "version": "8.0.10", - "version-display": "8.0.10", - "vs-version": "17.8.15, 17.10.8, 17.11.5", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-arm.tar.gz", - "hash": "f06b8787e4f86f61569959228a9ae7d10bb7a1fa967010d7f3ca0080c850513cf5657c18d472211ce16880ff5eafc6c8442a564b2f8351d77c5dd270213c984c" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-arm64.tar.gz", - "hash": "31599ffbca710247f4e03fe99b1098b287a0ed820a944b5a6ed22372651c97d67531c34abadbc52e59e8f70b4f76cd331221d008684f3feefd9be2904a73e388" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-musl-arm.tar.gz", - "hash": "aec8c820591a13d17d80a16880fa622961ea3a982d5ea30b26ea915ed8d860e9500b2ac7aee07aacc0a3f505ea33a665037096a3dbc9ed95fccf335e4b4b9dab" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-musl-arm64.tar.gz", - "hash": "1eecafe272a071ed78bc91b4c900ab70ec102c9f82cedcfde279bd9921a7e740ee9e881538a00a6ce400d9dc0ebc9305e8cd4962db2431e73b691e1052694ec1" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-musl-x64.tar.gz", - "hash": "2d6edcc14b9d9fef93ac72fb32b17a6318f2af5bdd83c4b34b35c591dcd406da4d489c1a4d5808a61bac2ee14b40bb6b0e8ffe9b424901b70fe2d969deffa087" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-linux-x64.tar.gz", - "hash": "7fb813677720d125c2337fedc6131b230daf1c1d79d5912a1ca6b5e08bf7802b412de3248d645b6483ab23f3fae837ed02a0e520e33020cfef2c888c54f474ac" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-osx-arm64.pkg", - "hash": "e3845aab7f59bb2be2245f1923626ff2f1981306a5a8c13d871fd7075c4635aedb1925083437baf7992cca162b749caf234b041f8eedf614391ec33b5224fef3" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-osx-arm64.tar.gz", - "hash": "d746968d04947f4a87d24fbf471309a0377f990a1877e926d6e51b50221043ab270c00517f578aa53d653e18accc386f5551a9f4acd36b0233fb663c3533ad2e" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-osx-x64.pkg", - "hash": "8df43d77ba45385a78e7676ed39d7402870c1045e4e598444a6278ce709c08ca15a98a1c79a90422e546f758647d4348af5328b06830e749e6c8402a5532df1e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-osx-x64.tar.gz", - "hash": "44abc477bf7eb40e141d715f895c3c5b091481854736dde5347a9973191dcb5f3c3f96dd9360e282149f1d97a33d7c08b938008a5edf3b5c48e3b93db3517107" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-arm64.exe", - "hash": "90e248a8b1d6af2b00cf7e81209c4d1f6cd4596b95a8d878fc8e33f531d10b5cc747614de82f367b5f760b6d6e9cb3e5d643c33dfedb25bd5b70fae1aee1af4e" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-arm64.zip", - "hash": "b865b72078d49dc5fe521b98d6b3df0cbadb362dd815aae9f9b1170c4e4b782977729be74915f8ecf0d66df779b3c8f108dfa686318d0ec73742fe079271e6f4" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-x64.exe", - "hash": "e56ca6141dd073f75b2f14b39be4ac6ee8011cf94e3d532321b75973fab6b99d04d8aef2b3b8c5f7e0eff2a700417c626bf6182977ca17244f124607be5f72af" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-x64.zip", - "hash": "fefa7e8958a67d1a108457ed55906eb62a53fa61d5fb0187c489b981946d988ff2e31aa1ce7b1fd70ce7b6c1e07c616983161e13cd1009655a9ba5297677a5f7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-x86.exe", - "hash": "9bff7a3abd0424de33e603af6e421013c685942ba04b70a075f61288b49ac611f7a798daf49e01fc121d34d776223df29172e9479ecc88b334cd89350b738758" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.10/dotnet-runtime-8.0.10-win-x86.zip", - "hash": "2a0d39eb1c5363bde6a3a52224664d999e719df174beca19b12fe030259701b458ae33c14e86a3cf5895e535306d62113a8dc5adcdc9442bedb96d3ef087422c" - } - ] - }, - "sdk": { - "version": "8.0.403", - "version-display": "8.0.403", - "runtime-version": "8.0.10", - "vs-version": "17.11.5", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-arm.tar.gz", - "hash": "ddcc229316475ba73cc46518ea263a97bd57fa7846a4fe76efb90f874311e8a7f5718ac6dcb8616835b4321af46f0e0265ae48b106e5adc9ba82cce88e804a4b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-arm64.tar.gz", - "hash": "f42e1ba9a897f91c8d734b09a9bfc82428f0629b7cdd9375262158d9f282797c199558c37ae7f36947e57d8adc61af9490595c4e6bbd05217fd6d05133dded4d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-arm.tar.gz", - "hash": "6bc5ec6a0aeea1d8b002af1edf63da0fdca3d54d2ceb4e51a90ea53a9a758561d161e4fa10ac3eebc564bbd400c1b94df2e04c26bae01d99bbc109e4eee32365" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-arm64.tar.gz", - "hash": "bb63ce01ab1c64b86bd94d90c10e568687276275a5cf916f684fe5f131723745216639e37d3ccf2b7923f558f190dd3848ff621fbc8e9eca5b4951b5b75ba110" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-x64.tar.gz", - "hash": "920373320b0769546180f5099fdba334383b45103120fc5adf876583986ec3a5714e82fcd6475479df415f332dce4d0a989c05dae1f4d1a50d0265b9121f8d2f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-x64.tar.gz", - "hash": "7aa03678228b174f51c4535f18348cdf7a5d35e243b1f8cb28a4a30e402e47567d06df63c8f6da4bdc3c7e898f54f4acc08d9952bfa49d3f220d0353253ac3e9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-arm64.pkg", - "hash": "f730a482a99b729fbce6e1fcd0fb6bb2590ce7543c8f78906529b1ac19882e63627620ba08e27a18672de4de3fa2596159384e9dc09c77069e05b976a35fc2b8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-arm64.tar.gz", - "hash": "f3dafcc39e131de9bffff190aecc08d87aa0625a66245af55c019b5cb64d1593cdabf652c197ce4152bbd7c54cf68c273499d969a34885e3b7df0890bf5c9336" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-x64.pkg", - "hash": "a018f5a66c6d7e500a11d693443efbb1e7c9562ee500e046bd570f44b58c951a362e3dece6ce8d4dfdedbe94e394a64dabe3e84fe6b8b41290c8d320b11d15b3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-x64.tar.gz", - "hash": "3f1f5cb090d461a026505ffc5d1fce6f15ba5354b302254c077eeb97cf23c83503b454e2f8125fbdd3647f4d3af3a1a436780d2a2842d5cb09d076ab5e401446" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-arm64.exe", - "hash": "95b7fc541629bab1db1e9728a1b0f70822ae6adcebd2aa78561ed888bc6e9139db6cc490e0800ee93904816133e5d35e90738b9f567d0117cb5fecc7914d16d7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-arm64.zip", - "hash": "cb4965110dbd3b092283051e141b351952e06a02fcc4a9f9e86c4fdd2a6f2fa05a1eb72a6bd6267200fbff4c603e4f7107c45aa3e33bbccd65d12735de48d808" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x64.exe", - "hash": "f5f4c86f8fdef861347fb46a38f63d19d495b4751f303391f4df701499cd2dfe4901e7c42c0384b05478b41dc4dd7aad670f5b995428538d071fdf3f5b6bcaab" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x64.zip", - "hash": "39f4b076984ee18f899ad9fa3f583d4eb4fa2e340f2093f477362a54bb5d955dbb5f18049bd2c80317d1fb5daa46d13c2b18267303555de0d9a8c3ae1063d924" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x86.exe", - "hash": "a1750b201417c0210d5c27ba0ba31dac985b26764ee270ac4021f3c4777e77751de9846bba38f555330a3fa7f62112ed3d410ce86412269d6d2581c891dadf87" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x86.zip", - "hash": "9472e7be7547c0640fe153c76c8f01581e92ab710850965344a1d7092a1f73ae11b97438fb54b7c939ba84392c8ce438fb77dd9dd7a5b01744ea8445133e5a47" - } - ] - }, - "sdks": [ - { - "version": "8.0.403", - "version-display": "8.0.403", - "runtime-version": "8.0.10", - "vs-version": "17.11.5", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-arm.tar.gz", - "hash": "ddcc229316475ba73cc46518ea263a97bd57fa7846a4fe76efb90f874311e8a7f5718ac6dcb8616835b4321af46f0e0265ae48b106e5adc9ba82cce88e804a4b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-arm64.tar.gz", - "hash": "f42e1ba9a897f91c8d734b09a9bfc82428f0629b7cdd9375262158d9f282797c199558c37ae7f36947e57d8adc61af9490595c4e6bbd05217fd6d05133dded4d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-arm.tar.gz", - "hash": "6bc5ec6a0aeea1d8b002af1edf63da0fdca3d54d2ceb4e51a90ea53a9a758561d161e4fa10ac3eebc564bbd400c1b94df2e04c26bae01d99bbc109e4eee32365" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-arm64.tar.gz", - "hash": "bb63ce01ab1c64b86bd94d90c10e568687276275a5cf916f684fe5f131723745216639e37d3ccf2b7923f558f190dd3848ff621fbc8e9eca5b4951b5b75ba110" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-musl-x64.tar.gz", - "hash": "920373320b0769546180f5099fdba334383b45103120fc5adf876583986ec3a5714e82fcd6475479df415f332dce4d0a989c05dae1f4d1a50d0265b9121f8d2f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-linux-x64.tar.gz", - "hash": "7aa03678228b174f51c4535f18348cdf7a5d35e243b1f8cb28a4a30e402e47567d06df63c8f6da4bdc3c7e898f54f4acc08d9952bfa49d3f220d0353253ac3e9" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-arm64.pkg", - "hash": "f730a482a99b729fbce6e1fcd0fb6bb2590ce7543c8f78906529b1ac19882e63627620ba08e27a18672de4de3fa2596159384e9dc09c77069e05b976a35fc2b8" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-arm64.tar.gz", - "hash": "f3dafcc39e131de9bffff190aecc08d87aa0625a66245af55c019b5cb64d1593cdabf652c197ce4152bbd7c54cf68c273499d969a34885e3b7df0890bf5c9336" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-x64.pkg", - "hash": "a018f5a66c6d7e500a11d693443efbb1e7c9562ee500e046bd570f44b58c951a362e3dece6ce8d4dfdedbe94e394a64dabe3e84fe6b8b41290c8d320b11d15b3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-osx-x64.tar.gz", - "hash": "3f1f5cb090d461a026505ffc5d1fce6f15ba5354b302254c077eeb97cf23c83503b454e2f8125fbdd3647f4d3af3a1a436780d2a2842d5cb09d076ab5e401446" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-arm64.exe", - "hash": "95b7fc541629bab1db1e9728a1b0f70822ae6adcebd2aa78561ed888bc6e9139db6cc490e0800ee93904816133e5d35e90738b9f567d0117cb5fecc7914d16d7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-arm64.zip", - "hash": "cb4965110dbd3b092283051e141b351952e06a02fcc4a9f9e86c4fdd2a6f2fa05a1eb72a6bd6267200fbff4c603e4f7107c45aa3e33bbccd65d12735de48d808" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x64.exe", - "hash": "f5f4c86f8fdef861347fb46a38f63d19d495b4751f303391f4df701499cd2dfe4901e7c42c0384b05478b41dc4dd7aad670f5b995428538d071fdf3f5b6bcaab" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x64.zip", - "hash": "39f4b076984ee18f899ad9fa3f583d4eb4fa2e340f2093f477362a54bb5d955dbb5f18049bd2c80317d1fb5daa46d13c2b18267303555de0d9a8c3ae1063d924" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x86.exe", - "hash": "a1750b201417c0210d5c27ba0ba31dac985b26764ee270ac4021f3c4777e77751de9846bba38f555330a3fa7f62112ed3d410ce86412269d6d2581c891dadf87" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.403/dotnet-sdk-8.0.403-win-x86.zip", - "hash": "9472e7be7547c0640fe153c76c8f01581e92ab710850965344a1d7092a1f73ae11b97438fb54b7c939ba84392c8ce438fb77dd9dd7a5b01744ea8445133e5a47" - } - ] - }, - { - "version": "8.0.306", - "version-display": "8.0.306", - "runtime-version": "8.0.10", - "vs-version": "17.10.8", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-arm.tar.gz", - "hash": "ddf4cbbc33e14ea5349fd0d1372f36b8e32920bec83625dad18787e717f614d94a9fd9eda42e0b3fbe68ffdbc79d343f370c3412c6a0bc4750a88c3e5c5df0a7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-arm64.tar.gz", - "hash": "3a554b92350b6e7d3d86ed92949295d469963594618240c9881adb36fccafb8a51a5961a85056f32f0bb5743b6ddcfd88e739359e0cacc69e20277c747c2be2b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-musl-arm.tar.gz", - "hash": "26d90af94f4f0b40174621dab65a314c1c658123650d5e72a43ffdacdc5d1e87181a8ece1cd0ee670ae690b651cd6894756fd1ab3cf13317de55d76190afaf10" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-musl-arm64.tar.gz", - "hash": "09ed1b5a5b7a103a058353be1071212b5e99588d9f8841d67914ac3bf7356f7cd61a7daa9d4f8998c9410804625717b80a0c367b280dc41b9b7a5c132519d5f4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-musl-x64.tar.gz", - "hash": "7565734a26d8ef39d7c8eaf2967628c9e0e4cabdc225390a84e288e335cd2e367aef3c62be42f26ea3f7700f93d76c05cae957caa8d8f7ac8e2ac4a5d127d3e9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-linux-x64.tar.gz", - "hash": "b59653508a7f1b7ff563c33d22d92e7e71d5fea2f01d600429df3ef262fdadf11d11cc251fcb349715ae86fe0eb3f8f35223f0f84d70dd2fe1c39a3f09f6e021" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-osx-arm64.pkg", - "hash": "7db1203f9b0d81d6c6a37d61bd6d6bc021d8fcfb242e1724f23fb0a48880fd0264b3f727b402c5dedc481a642a4d85fe7b22621424cc983b1462442c8503590d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-osx-arm64.tar.gz", - "hash": "306abf8eef3f16d889956f18433b0a71d9dfeecc3c063e4e0d33fdfe37d4f2d1106c27ccc44961a9e2e0588382c33d12192b9734621eaa4edae68e7ad41591a5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-osx-x64.pkg", - "hash": "bdc9a1f57472e87b12bfbdf89fa0997b8a15b307ed18af3bd3f0a72a5565e5448b3aa7f73e3f601b19768153dcb366f1ee8609ecb11fc7cdd950b8fd0ec8d13a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-osx-x64.tar.gz", - "hash": "72af4dfcf98d4e2edbab485dd73791a17b9c27ec9afd87a40a8f0ab035ca704d0cc5149c34b49e299875fcaec309a172dab81360bce27b09b517de0224bcae02" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-arm64.exe", - "hash": "12cf52735f2e20a02bbe415c35bbe4e384d1aa00ccfa81b31f09185712007d24d31b8b915ab4c80bf72d76f83aac114c85e67b55bca2bb75d90b8641f07d8155" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-arm64.zip", - "hash": "188bb00222b4915e8aa0afb24048d8248f3390315df9ada478c7d4350b04f98527e93b6700041ecd52b417882d8211f1ebc1303fa8f3e0610ad4173fa03ec8d7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-x64.exe", - "hash": "c06bb0fd70003aaa01c7fa379e475ceec524acf8fbb648296f3c64dd4b65e60722c0ea58f3309d4c3d82dd5326861e6c98fa663b11873e708efebf896202db47" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-x64.zip", - "hash": "71a2cc0c7d8956bee35e82ea43550c97efe6335a50a65412b52d0b63d8093cc0859c53e27614f3d931c876a1380c9e8098fd7226408ea1d26cc3265002879bd1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-x86.exe", - "hash": "4eb4a2026c197a72fdc87be885e1db440c97e372c220ff73ce9473bee8452c17ed4d7a5302aa058859637c7e182e038a24b093eeab86667cafc1f46527c8a32d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.306/dotnet-sdk-8.0.306-win-x86.zip", - "hash": "f32955bb6433e36118a541dd1ca7bd2c317a06c60418b865597682576bae18ceda541198c7bec37e6af8fe810bee0b0d52514e85d73726508d8cc08e270c2095" - } - ] - }, - { - "version": "8.0.110", - "version-display": "8.0.110", - "runtime-version": "8.0.10", - "vs-version": "17.8.15", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-arm.tar.gz", - "hash": "40fe6c12ee3f5629b8e6150520654f995aa0ee98315de1623742030e168b1622721ad640d26f44bfc11f2193b7afa0f8bdcbb953cd417b4576e78acb053bb763" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-arm64.tar.gz", - "hash": "286ca560e79b1c789d80fb6f9b6aad2e105d6e3939cf676394127e481e9b200bc9da72d87bb8162b6b2a4f62694a36ed66ca1f3d8ede261a790abb676537d164" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-musl-arm.tar.gz", - "hash": "e58cf29ce35a5b7746610f2edd3555675193501b998da7d9ec528755cbb3fdc4d2249db338645a8780d47af46f169c37c13c9bad67e00c860d334c46a011407a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-musl-arm64.tar.gz", - "hash": "7a3705da56b24bdb37b516e425df944fa8cf32a3d5e25239cfa4aad94a716d5f1091830ad45274a26104ab4ab772e0dcd8679a698daf5bc34b24cb7282d886e0" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-musl-x64.tar.gz", - "hash": "8e38313e5b16bfc0139a22bab64c7818f9b66db9ffed4e6adec20dcae8618d9dc20c6cbef2bc24b3440b679569e1ddea44b07661e41d45de0ba196e4526f6818" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-linux-x64.tar.gz", - "hash": "3dc724aadded97bae639969f8b15601962654af6561a132fd650ec6a03a7473a1061f8f5f7606cb4b1a4b127e6cdbfb59354bc025bd3f07b56e0a8716b4b66ac" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-osx-arm64.pkg", - "hash": "19e3fa12cc4046cecabbd4066f3e9f15398df39384eb19c64aa84e82ac87bf4f121654c124b29cbcee4e3603056f32606a3a6e4904230d5b876615287f442e2d" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-osx-arm64.tar.gz", - "hash": "6d64ea5c003814b0fef4b5bbe74caf9ea502677da22c676b2db01bb94053a2433ea9aa932067145809c5d98853a6c4a8074b3f24ae8b77c835940270898bfccc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-osx-x64.pkg", - "hash": "f7f0608873887e1602526c16a25d82ef0ebba96857011b73c4bc7990061e7bc252a6683b491cecb551ad287293480158ec1c352d0a04a37b54226711248855dc" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-osx-x64.tar.gz", - "hash": "c56b827da7003df700662abd08f5af06be2238794bf4ed24978d612e45b97c0da2792bfb4523871a80a323bb2d4f7689de9d216eef29b65108795dec20a74180" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-arm64.exe", - "hash": "5527b9840756b6e444b425ef54c3d328cf4d90217c5e25f25f4b241c8df775f716529ce681c357f4b871f258ea88b37bf33db6322c1281360e88bd92d829b86a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-arm64.zip", - "hash": "67d58da75e661b11b269f2f0fcf1c5ed3bfc23b8f46ee50c4699b5ef1b6e61f135a147d0b4273fb1c544639e95609ab40139d3f19a77547f4b7b0c096da38b20" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-x64.exe", - "hash": "a52675da632488d69fbcf68a75084f1e6afeee92a5bc1a6e256256b74d0b0d01dbc50e86a1331c57618263be59b792943b8674f96862a36e49dacc00f2bd597d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-x64.zip", - "hash": "38a00849a78a3603675494c24d678033d2d887e8981cb4f80c26a8a4929d080e93cdbf41a0089b2aa6cf9be3479b3c4b00d7659378357d19c45b2bb7257db065" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-x86.exe", - "hash": "9bf901541607408a0c16ec1d0d29aa32c841e030566b5fa44b5d28ffbac135c0379c843c075ade673bca48885715abbd5d75cc1d360168c67b2fbee488d4c901" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.110/dotnet-sdk-8.0.110-win-x86.zip", - "hash": "abd2d518c2ccc4a2b7da2b5d8e8dffcc5f95fb16481871301a8fef7100e8f3f554799ab82d056168642dbc141157343bdf89c800d3393274d2a1f8ea49865696" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.10", - "version-display": "8.0.10", - "version-aspnetcoremodule": ["18.0.24262.10"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-arm.tar.gz", - "hash": "fae8b6b270a4dc9218df99bb3cc10f0a52db9ed3630ba82056402154d27c238f76e44561f85348cf1a4f7e2bd1dbd910d4138a91ef66abe5685d9972b3d050aa" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-arm64.tar.gz", - "hash": "3a478f9310c748b7427c91deb3ba83f4c02557a7d7a3d7382526b6dc39dad3d938022475ab20f060f1b4ed365c7b1b95a1d089cca502a423298c41379bff8111" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-musl-arm.tar.gz", - "hash": "45b1b3110cd2c6684c3120a719d7a62d7a6ac15474101e629f47ce012abe1c65aa67b93fb0a05128b7462fe3f03edc5cba40fc788004f888a8e3b27c861eec56" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-musl-arm64.tar.gz", - "hash": "c71ea24716066096b48be5ce8b9fd3a144ff8658382f7b193c9c388eadb4279b644b2bc7a0293c01a61084399d5e89c8952f93ded90beaac6a01c361c57a8fe1" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-musl-x64.tar.gz", - "hash": "84af156fd6145fc699c73865ea12a5994e43e788945fedcd5c80d9136b9482ad0d9e0bddb933f5f72ff1dcfb90d06dc2e94a21d02eda10bc1015f3e4b8639d14" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-linux-x64.tar.gz", - "hash": "33221f19964ccb06cba74420dacbfe5bfd036f7847387093119f8f391d5716e1c5a8e05721f2335984409b43423d79b51ec571e51f0cdfae6d9d2a2b2d98505a" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-osx-arm64.tar.gz", - "hash": "2bc9179843932228fb3550cd3eee88a645c5b6d695a561564195f0b4583fc0c90716254dde925020bdda03d0e0181f049750c06f8398a21b7fd0ef5b8c1fe584" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-osx-x64.tar.gz", - "hash": "7ae1f424bbffa52b81e5db8f1d590d67c34a88650eb573d05c9222bbb74ff89e6ff0581b6ce267558f19fe3433473d4a8513bef4f5e1880cde03f19606b0d42d" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-arm64.exe", - "hash": "a159c9a9c1d7d5b057d561c6f6ce6df08b791fbc1a3803f16791680a4400210703443fe2b2785c9ab111fc035541fe7929269b39258cb1ed19031113b2423180" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-arm64.zip", - "hash": "6afaf8b1a3ee419e336e2afe8e693808e1c99d038b962de72a79b06dfb40cac6709299a9fcb9b15915fd8e9c3312e4215dc2f9a0fbfb24c0dbc1623768c8557f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-x64.exe", - "hash": "df49756a13ae73550804d2156b86225ed77e1646ea4f92724b48920f213319c7ae75cccf63eb25e9c529ab41c62d02f969a2740947aa0100fbf8a693629ff3b6" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-x64.zip", - "hash": "b9d08366e056def8760882d08f09e8495a6cf6ebfd1b881c92f3c385637c77ccf432ed51f930e4994e66156fb5311daeb0b2aa06074da17cbbb068e0e5dfad3a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-x86.exe", - "hash": "97d919d9b60adcce8a8ebb01bcfaa55a3b41ea2cdd3b4f8930f0881d7580bb980a204ba0034d2580ac1bf5aaaf4cd0b1df300cd54f0a77a6544c41b6eaf9c934" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-8.0.10-win-x86.zip", - "hash": "7d4694b3059094b2383421a40c102666a5fb8b3b488e92155582d3204f2fb7d3cf1752ee7d9fe6578418ec98a4f3e7ea48e936cc0bdfd7c778f02774d31377aa" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-arm.tar.gz", - "hash": "68191eefc373102b908fe752c44238327c76448350536988cd1e992a65c3e78d8094e760f6490c3052a2fe33820cf8fbdb44d647015e36c986c1436a9569a484" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-arm64.tar.gz", - "hash": "4ef6d3653229e93b29a2e16da4b5311a0f5b729aae5f5fd21d6ca1f8948feed45504e8dd212325ca8787f9d8ca0617fb43fb947949597d762602db1c4d3513c2" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-musl-arm.tar.gz", - "hash": "aaafd623720cabeadcb43fd10231e93fd59b71a1d06325c8a33b48bf103519d6bf531c22a0f44f8d249f4ed2f2547977d960dfcf366eff62a71249ea01ede5b4" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-musl-arm64.tar.gz", - "hash": "decd084ccae93fa7cda4d616e4af3740581f61c680fb0dfea64f69883de79aa3303703c0de0b7aaf5c4ce7ff0faf0c690e00c3ebac29da6a80a0e3c38171c093" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-musl-x64.tar.gz", - "hash": "1636eebb2d3a96d386a7bff23044bcc796b9ccfd6c7b50d6814d85184174e42a6116817f3c40f6f69ddab4f9c5da41b637633d8191c35c062c91fde9883b9ad9" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/aspnetcore-runtime-composite-8.0.10-linux-x64.tar.gz", - "hash": "2613c87a0d060681c16f8d0aaa507d808941f8c3262bd793043d30785df26b3a5b54be395e18ebd66bfb309f190179fa11b7c8354a40b67cb20d05ed88baa235" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.10/dotnet-hosting-8.0.10-win.exe", - "hash": "6b8643aed744ec1df02590e50768c9037836a3f75739d1b296f7769e7d2b5ac4b07dcdda1b65032d1e46984ad8860c59f152c774e3190f8e8708f426a9a91cb9", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.10", - "version-display": "8.0.10", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-arm64.exe", - "hash": "4510f75c68e32a221efeeb576f25ff6c480c698b064eabd49b97e4fe9e22b6db94b3fa7a30de69af09318b0d143b7a3b72773a7f2b9a8a49fb3161bcd5b5cb1e" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-arm64.zip", - "hash": "ba4ab6a3ed6cbc79bafcc4c6fbd27fc9c61a14717328f026bf43ed570c8db1ddf4a54a092ea21c701c702c2c5f11663635c1e25470a22e7589eae43cd4b9b558" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x64.exe", - "hash": "914fb306fb1308c59e293d86c75fc4cca2cc72163c2af3e6eed0a30bec0a54a8f95d22ec6084fd9e1579cb0576ffa0942f513b7b4c6b4c3a2bc942fe21f0461d" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x64.zip", - "hash": "8198ded846f3c9f7c61a65154acc7eae791114f2522161cce8e10ee066934608a3e4e001595c5ed2674e4dd3aabf089605d78c1b518e02da5cc1422d1e412193" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x86.exe", - "hash": "e3aa583ea83f1e494b40a2152245eb1dffa96976640466ad39c9a4ef77eedf79edaf990d687ad95a36fb551ddaeec8ee887c4eea6d590366e7da4e8427dc45e7" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x86.zip", - "hash": "f59c80a4271f61e5234733dff903585e964135ffb637cc1057ff7ce55d13b21dbae37ee1c01a0724fc5a2ec9f66ae38cad0ca75320dcda47f74f9535c9a8cb4b" - } - ] - } - }, - { - "release-date": "2024-09-24", - "release-version": "8.0.8", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-38167", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38167" - }, - { - "cve-id": "CVE-2024-38168", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38168" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.8/8.0.8.md", - "runtime": { - "version": "8.0.8", - "version-display": "8.0.8", - "vs-version": "17.8.13, 17.10.6, 17.11.0", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-arm.tar.gz", - "hash": "c87af5aaaf32e18ccdc2965179c65aabae5e0e9e8ea209f6c364270ce2e4afffea979ca22e143de4674e36a2b12c66b575588ae219f16636aca7121440240288" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-arm64.tar.gz", - "hash": "246fb7e5edb51db93421c6bb7420f7a358430b98b224a71fb70e71a2bce0bc91f853aa89109f2188b0ab28532a245c3d52baac163463e01a02019dea37fd39f2" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-musl-arm.tar.gz", - "hash": "8a6f920d93d7d5527dc289f472521e2a671afb4e663aaacfd82c32658c2ea39eab43a5c97d3d3d7ba58403ebfbf6cb96fc73ff5b7ccc1a9447d13bf41eeb80c9" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-musl-arm64.tar.gz", - "hash": "26f35e1c6074a7d99a40ea48f6c02db78f4e2c743cbc74463a094da014e126e9379d09b4e56809ac9829b26b6ba0a901adc47adfc3c5d35a97e9ead5a6931489" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-musl-x64.tar.gz", - "hash": "ca2ff32145506513253f80ecd72b5c24d8bda28f44ae83c988c39ebfa75e737d5510bcb84bc27a149d2e6995761f8b124d7701522ae9bbcac17fc32667217eb6" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-linux-x64.tar.gz", - "hash": "8f5220098c562fa3490417748eb9f4f9ca1551f7155728b9ebb1924359c63c18dedef643bcd89ec67b59cb5b1b9de7283ee156ef381ffb16801b516dba9b1b0f" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-osx-arm64.pkg", - "hash": "3c53474ad1ae8549a24bb6c11d8dc0c2d4fa6b67bde9d01d676162097352070fe65585101264d7ba8a725b5c1c4a1901f3a625be26d10481a3ba6a66a0a3fe41" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-osx-arm64.tar.gz", - "hash": "88b06dd051819bd9e8ce2c340b2516dc0e4a77d565eff145d8e957b2552a641e235a5ce7e8db3607475887bc766f1530d01d0e7efd80d10cd652a299954398b4" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-osx-x64.pkg", - "hash": "00e76af7982ad1da51241d13b5cff379cb2eedccdf7bd09c2923e4610e232ef35c9e8d34b58435f5ed66c52ca3ab6e68c7d89fbb0caaa53487c4882e00b01865" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-osx-x64.tar.gz", - "hash": "8029986c1f8bbf1b0e8d0929756156fe41d46d2df6ebe1ab1c66fbcea2add47c35b934573c6198797cf60d2b372cd463e70326c0a35b0926dab4d5c157a357f3" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-arm64.exe", - "hash": "a4ed101b343495708462e96860d4e20542117988186aea96d7ad014e52571f9bcc6d730891b5245e70cef98ca0944b6dd45703dc261e7a28d9e4673392e45928" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-arm64.zip", - "hash": "36ac8eb458e3a31d02de10ce1855bf189b85ac2e88020430c6f6cfb7b92fffb04463bcfbf0d5a2146862102be922b182d230f51dc2e34a5fe7133abdc201ede9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-x64.exe", - "hash": "57f2a276176661a340b96991b584bcb81ba3c0150e3684cb109b29cc3a8ebe6fdf1e586d948d498e7aaf22f7401c1cc94062c13cffd20999771ecc5dfc2e917e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-x64.zip", - "hash": "cca24d8c1d8a8af7496fd29bf8fa1750f438207181bd3add128aa5083e6ddb159d5d7de8f3bed3b30618c8886b4380dc55ee15b03e71feb345011c48a08d27bd" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-x86.exe", - "hash": "fa542b8d3ae98e020b66f0bfa33c44a4ea166ab9cfb7b3cbe3034f9c38318464db8c767af9eb3a6fe9829aa67cff96beb49e2c1cb9e6081e5657ee4f75544bf3" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.8/dotnet-runtime-8.0.8-win-x86.zip", - "hash": "c36c90dd056aabeef40615113941144381e45f831c71b129802bad04b6db4a95561d8552aba1cb75ff85e8f0820d2d3887660ce7113bd449f3653801128eaed4" - } - ] - }, - "sdk": { - "version": "8.0.402", - "version-display": "8.0.402", - "runtime-version": "8.0.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-arm.tar.gz", - "hash": "ac654aded46a89a825f5e7471332834800b1a11a14bcd92282da155bea89966add3fa9ed8281d6f20bd4a4f5d2c5aefaf454c0c630cda09aa759c2f6a7755d10" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-arm64.tar.gz", - "hash": "03a98e2fa90902f1251f231e268eb70c59639ef806d0466ce14ec3224d0739526a38982ca84d68e76ebd99f5962d6d490915358aa70e9276842e4f148fbd9596" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-arm.tar.gz", - "hash": "d08e1bcf304c4ea4c7cde0f63a56077536e758b7cb512a593edc4afe4646f5e6256df6ebda48bb4e0955c92ae6b128e47157cb7331ae4691bc0c40a7ce732a83" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-arm64.tar.gz", - "hash": "939a8eeb001983f493828eda5cea9cfe26245d7cd6be11a9f303d04a4b7d6d7bafbda64ae64243d5aa6d6583e1e58115053215369e14b1aaf9d914f311ada1c7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-x64.tar.gz", - "hash": "3c74dd447d31363f6f753bfd8359313e8abb2b008717e9f2a860d71236aea915f0a81739045802380e211ed4f478105f00f93152983eedd9b8a43224c8531af1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-x64.tar.gz", - "hash": "a74f5cb0ac34ac3889c7616da7386563103e28a60fc8f767857f9b65c34c34d11301593de6b248d26c72557d63c18b0f7ce15bbcc0114f321c5e14dcec98008c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-arm64.pkg", - "hash": "9aea63002fdb3addeb209ea1e155b10e6ec986ed9d431b58b47526447f630f9274e0bec215a7d3f358de204e865a103676b51b3bfef077a4f022f49ef80a53e1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-arm64.tar.gz", - "hash": "a0e0726640a4829429d7ed95b00603635bdd56bba8163d26014488b5d2666c75ea954bd218a8f33922d38f3dde58f5b7b97e148d2bc69c79a3a3251d6005275d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-x64.pkg", - "hash": "9d55f9b3da455ab34d1c8704f7b526a8d055600501fc8759dacb0a000983c47671f7aa030a948cf53ea977cdfa97fc44cdcee824580705c077c98eb62d2a7552" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-x64.tar.gz", - "hash": "917498dd34c98d8ba439ceaef5dae9090251e505ae8f3fa4d3ca03b7812ade4466981f128fa31bc469489b71c945cad35eb63c99b264e6e10585395865e587d4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-arm64.exe", - "hash": "09ef3d4466220f558c638ed24359db47ee4087e98e9a2481db55a8efe66256dffb2de944c166aac90f6afec3774626998cb20ccc48939a9103c97e917e3d9b11" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-arm64.zip", - "hash": "cab014549c88d925ceda6bcf808fea111f6a6c21caaa1932e90c6d9f239bc015c891056a892828e7eb9e07f261805a3b9191aa689656ad3212622c1b62c97707" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x64.exe", - "hash": "19f94cac5d2534eab94f084296cae11bdd798c65dc8097b802b3ad69e7cc9181c80f9c47ddc360feb8a654801f13cdd63d1ddc69c49b41413b6fa1c6122ad223" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x64.zip", - "hash": "532e09b25ffb174db2ca6f7cd990571faaff6a6ae2963f242583d05606b9798b5672c85bd65ebe94674681c33f06f342e7e4214e6e6da72b227323e0cbb06b43" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x86.exe", - "hash": "29a48c38b388810b90205dfb94ab9994f7df662c50021f13460f8a299fb6754d8bad8f13705416d5a878b93b5983e6f25a1f486eb445496a928e7f033a40cffb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x86.zip", - "hash": "401a4811f13d37819a72291566230bc82a83f23553892879e6f14770555052e8e775af1884f36081c5aba3234430f671d12580a27fd6ce0f91448c0afdd3fb0a" - } - ] - }, - "sdks": [ - { - "version": "8.0.402", - "version-display": "8.0.402", - "runtime-version": "8.0.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-arm.tar.gz", - "hash": "ac654aded46a89a825f5e7471332834800b1a11a14bcd92282da155bea89966add3fa9ed8281d6f20bd4a4f5d2c5aefaf454c0c630cda09aa759c2f6a7755d10" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-arm64.tar.gz", - "hash": "03a98e2fa90902f1251f231e268eb70c59639ef806d0466ce14ec3224d0739526a38982ca84d68e76ebd99f5962d6d490915358aa70e9276842e4f148fbd9596" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-arm.tar.gz", - "hash": "d08e1bcf304c4ea4c7cde0f63a56077536e758b7cb512a593edc4afe4646f5e6256df6ebda48bb4e0955c92ae6b128e47157cb7331ae4691bc0c40a7ce732a83" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-arm64.tar.gz", - "hash": "939a8eeb001983f493828eda5cea9cfe26245d7cd6be11a9f303d04a4b7d6d7bafbda64ae64243d5aa6d6583e1e58115053215369e14b1aaf9d914f311ada1c7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-musl-x64.tar.gz", - "hash": "3c74dd447d31363f6f753bfd8359313e8abb2b008717e9f2a860d71236aea915f0a81739045802380e211ed4f478105f00f93152983eedd9b8a43224c8531af1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-linux-x64.tar.gz", - "hash": "a74f5cb0ac34ac3889c7616da7386563103e28a60fc8f767857f9b65c34c34d11301593de6b248d26c72557d63c18b0f7ce15bbcc0114f321c5e14dcec98008c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-arm64.pkg", - "hash": "9aea63002fdb3addeb209ea1e155b10e6ec986ed9d431b58b47526447f630f9274e0bec215a7d3f358de204e865a103676b51b3bfef077a4f022f49ef80a53e1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-arm64.tar.gz", - "hash": "a0e0726640a4829429d7ed95b00603635bdd56bba8163d26014488b5d2666c75ea954bd218a8f33922d38f3dde58f5b7b97e148d2bc69c79a3a3251d6005275d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-x64.pkg", - "hash": "9d55f9b3da455ab34d1c8704f7b526a8d055600501fc8759dacb0a000983c47671f7aa030a948cf53ea977cdfa97fc44cdcee824580705c077c98eb62d2a7552" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-osx-x64.tar.gz", - "hash": "917498dd34c98d8ba439ceaef5dae9090251e505ae8f3fa4d3ca03b7812ade4466981f128fa31bc469489b71c945cad35eb63c99b264e6e10585395865e587d4" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-arm64.exe", - "hash": "09ef3d4466220f558c638ed24359db47ee4087e98e9a2481db55a8efe66256dffb2de944c166aac90f6afec3774626998cb20ccc48939a9103c97e917e3d9b11" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-arm64.zip", - "hash": "cab014549c88d925ceda6bcf808fea111f6a6c21caaa1932e90c6d9f239bc015c891056a892828e7eb9e07f261805a3b9191aa689656ad3212622c1b62c97707" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x64.exe", - "hash": "19f94cac5d2534eab94f084296cae11bdd798c65dc8097b802b3ad69e7cc9181c80f9c47ddc360feb8a654801f13cdd63d1ddc69c49b41413b6fa1c6122ad223" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x64.zip", - "hash": "532e09b25ffb174db2ca6f7cd990571faaff6a6ae2963f242583d05606b9798b5672c85bd65ebe94674681c33f06f342e7e4214e6e6da72b227323e0cbb06b43" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x86.exe", - "hash": "29a48c38b388810b90205dfb94ab9994f7df662c50021f13460f8a299fb6754d8bad8f13705416d5a878b93b5983e6f25a1f486eb445496a928e7f033a40cffb" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.402/dotnet-sdk-8.0.402-win-x86.zip", - "hash": "401a4811f13d37819a72291566230bc82a83f23553892879e6f14770555052e8e775af1884f36081c5aba3234430f671d12580a27fd6ce0f91448c0afdd3fb0a" - } - ] - }, - { - "version": "8.0.401", - "version-display": "8.0.401", - "runtime-version": "8.0.8", - "vs-version": "17.11.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-arm.tar.gz", - "hash": "fb90a8e52f5dd29e5953e4662cc9d57caa96dc6a8f6ff6cfae17947aa8a3f53b5fef1bb35b8c05815fa1cafbdc73179f7296ce846bf5769ee12c9daf5bd27941" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-arm64.tar.gz", - "hash": "e8738b21351d030a83be644571f3674c8dda9e6fbd360b221907a7108fab02becd18e1331907535a1294d8c4d0f608519674c27c77dc2c2803cc53cce3e10e0d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-musl-arm.tar.gz", - "hash": "c5c547eb301dc965eef1d9bcc64231678e209591b80197a78249d35d1655a5469f39ce6de65436375f6e42d22d159c3dc487be17f6dbe7634040095fc988db21" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-musl-arm64.tar.gz", - "hash": "2faab93dd38a49386032083a0f4a3a5a5661d6ecff4a98f068ed7aa07b201233804fa0e5efa4911b6eebedc9994d59c4d5d843deb773e7e2627b2aa97e634a82" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-musl-x64.tar.gz", - "hash": "e711b74832269463e27f98b049c442d3684cdc213115133285a2b189ef4564b65127747cdd3a900de53581019bdf8f47426f2cfc9bfc1c0c3a83106f9bb54ea5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-linux-x64.tar.gz", - "hash": "4d2180e82c963318863476cf61c035bd3d82165e7b70751ba231225b5575df24d30c0789d5748c3a379e1e6896b57e59286218cacd440ffb0075c9355094fd8c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-osx-arm64.pkg", - "hash": "3b9305c3b5b5853221bf4c3f53cd1143bef02249a81a98ba7d6ac9f4a750860bb0880cf908a6061f6be4cafd38a00c9143f3d014f6ec2a206ddb4182a9aa3005" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-osx-arm64.tar.gz", - "hash": "a3232c0693b41ee6b18dc3c8b26d82dd9116132bd7871dc9c0a0acc5e7995f352e760869fe91a08828417ea7b91fc27859aeea449b9efabc17c136a57737c93e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-osx-x64.pkg", - "hash": "61b12de01153f8f878a975052ea7a398eb1e43a6ce7b170ac2e6051ca0a6fbc4d56ab157b4e9414263bf7b6d975300591be70f43427bde567f148021af373a08" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-osx-x64.tar.gz", - "hash": "063aeaf4e949b96d501b77873279f0286cde46f9212b59181c6db21630401fd6a352e3259848cee8e127e4ceac85a25e0bce36699a2fb6f6e2a91997c6f61eae" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-arm64.exe", - "hash": "e48f571d524ad369aa0dc523ac53860fc2143f2e0a1da48e0c0ac16e373d617f427bba703abef8b0f68df1c7b456ff2ee44dc3df0f6e8d5f47d51b602a19d219" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-arm64.zip", - "hash": "5e4ab2b0d4623796a5aa9d209084b9bd19a5d5db2c9165b9be0cd8dc2953a73a26e681c7c7f5816e0b96a771f91995d7ee9949ff578da8f43990f3bd9c203195" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-x64.exe", - "hash": "47080f5378ab4ce22d572f11eec19d65151508c41f5c5245e481e6b22bd14d1d84ac197459c0d68717298657c3b752ed5a1d87b26d499f78ef41c2d04582ba9e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-x64.zip", - "hash": "384c473811118f47d50e937e29bb4f03413a07dc859c30486b1129d99ac80a61527c77baceafcf1ce42533ab307d65b476e5d0d7c503f930440456a0f75b92dd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-x86.exe", - "hash": "38c0e76da9c2e90aaed7adba596b2c3801f7ab76909cf2d8d67f3e7ad16a3fe5d30cf2ef1ce2bbb5222c6c43d001822193a694ece3c5e381189c108f72470098" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.401/dotnet-sdk-8.0.401-win-x86.zip", - "hash": "ee5e467d9285843cf4b68913c1dffc40ee0f828aa39b75e60cd9514d08d7c1a0c809e282ea4d0cd2a18376f80298fc05680f26a96d11247f7abf1347c8fa4671" - } - ] - }, - { - "version": "8.0.400", - "version-display": "8.0.400", - "runtime-version": "8.0.8", - "vs-version": "17.11.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-arm.tar.gz", - "hash": "caad292647790023a41a9b728b70994ffa2adbdc08099a768870806b16b53a4b3e4b6cc0aa79974aabf8d9adc61e2f9a2b662c829dc9c72b0fc509fe06119265" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-arm64.tar.gz", - "hash": "d27b4ddd864478fc4655485cef0773411fb934c816fb3dcdafb18f670212c5389661a8255ca8a54562613815712f5ea23e5d8ad1cce4e00a3f8a82c9b4a6b127" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-musl-arm.tar.gz", - "hash": "5588f18a3bd654bd7aa8b57574b83b40174992772e53baa80041eacde35382cfa6a1c658d979fe082d1e42fccad2af93b8e311dc2d0cd06b5385e712d5275f44" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-musl-arm64.tar.gz", - "hash": "5120d8134b2f638b3c33d7e5506cb16a980adf6bbff54c278b5de64acb8c55e034f20ceb2db12b2b61b823778823cec51089819b5d1f7cb893360ac5cc60b6d3" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-musl-x64.tar.gz", - "hash": "c92dd3284d0070f22a4b488884e06b3bfc8e42b3932c9db20cf77368a528f295d4e09e813b709cfecc01a82f8c95c8a0b9d66840073f2a352d850d5ede14c859" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-linux-x64.tar.gz", - "hash": "8a4c637746177c4da6ceec63e23a1f499d61d050aa72bc599841550557ff7b1a15a034044c3987b230fdca4e5113de12b1676f5a2366e9946bd94aec1e51a42b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-osx-arm64.pkg", - "hash": "98046617de9a6e4128e2afdf85c8f404aa155c9875f5fd564e7f5fc742ead304f0893162b65470e16891f506e70d58f5ceaa1adaae700eb8aa0244cdaf3a2f46" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-osx-arm64.tar.gz", - "hash": "29656a362ed6d74eec08d48aef930e5098c7456faa1bcaf178f9421f8423178838071b4ff81c0429155f1f834014cbdef8121eefe002a079443ff7a3193b4ee0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-osx-x64.pkg", - "hash": "7003adb0fef54264f7a2124113a8be75fb2b5f5fab33fa31af648bd02f2556f34858931dbaea06608e83084f2308c4b373573167308e24efa562fb34c8b69470" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-osx-x64.tar.gz", - "hash": "d7963a28de862605ff3c52f42155a3400aa37d7a2c01374f278bb18f0daa7a8206856cd9114bc2b94fcb8f9010ec02ab31e043e7f564038de4dd5811f943a331" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-arm64.exe", - "hash": "fc7a4e0f08c3fc623151b0ff3d1b40a1afed94bd97caf1e71820f638fec1f5e112dbb3a37d1f5af6c367132d522caa0232f9c28098edd2aae702cdc75fa4ff36" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-arm64.zip", - "hash": "f9d5a82d27fa5054bf1b38c65085d8cf4974fb8b69e646656c95114eeead163ce69ff42752266797407353759ccd9d26ad936bff830111d1b8df7f6e78e5937a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-x64.exe", - "hash": "466906bdd41ff425e4e759ec4ca827e79f4c2aebd593032191b7a0bcf554f2a43c333c606ee3ed0da9af55c2b449ed368d224751665ec0af51bbe71e27a4fbff" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-x64.zip", - "hash": "3b3b402f9402af4b80ba12d04787a083d1950c741fb64b06b3e215f6e5b3db2f86aee8014848c955ea17f9b699d302271a934ab2d5db1b35dfbb9d22405032dc" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-x86.exe", - "hash": "718b917e3575e487dd7f3bb5b5cc89491a2b203ec38bc1f93de004abeb486a9ce3e72e8cf460f89916ec8c6854b013cdf170eee1c4f39b42fefad9da217097ed" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.400/dotnet-sdk-8.0.400-win-x86.zip", - "hash": "d6102dde8550c0c77617eb19ef7c8e5e6beaacff5527ac024e7dc06acad97e2b099d570a371daf295db107a4deaa41d6d11db13b2f9fb8512ad8f8a2278c6201" - } - ] - }, - { - "version": "8.0.304", - "version-display": "8.0.304", - "runtime-version": "8.0.8", - "vs-version": "17.10.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-arm.tar.gz", - "hash": "31b48574ee763b0d41820c1f496b3e05536c6b69fd6e7641244b1cd65dcc3b2ed5efb483d7bfcc3c2fced2fe4e946589a58e244ddc5a131cb2654822018c0d2e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-arm64.tar.gz", - "hash": "6ce93ba330848b4045b6c63f96ad0a91c474361cb0a208bd4128d418fd6da04695559add63df9a0acf283a32e6e781328d3979af900e0b2382cf006c9982806d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-musl-arm.tar.gz", - "hash": "d2d1071c674664a8fe96f61a6204c56f9e2c6598d2a11e34eac9165ff30d1cd33119e10e79499a9a354ec461e3063e407772b362f3640e64114cdcd2a4ef0f6a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-musl-arm64.tar.gz", - "hash": "f266f2c8c405377d84c4f1917a0c4a7493097cc853940ee1290eefc8777331935a80002a9c6c7c03198ff3661bc8aba2e933415d8a778949ff901da8bfda8d1a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-musl-x64.tar.gz", - "hash": "41da6d47972a7ca676ebc071861fa3c56f311f63ee09f7fe03cc09cef1e4771e4efe73c5fc6b02ab84f007c2e7044d7ee16c658971fa856d53f15f43e6a61d9b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-linux-x64.tar.gz", - "hash": "971c344379240ec4bfaaf1eca69c6667e594cdd0dfdcde6e8962cb7a41d669dff91c644e48eed3573d841b7b3e60ce02e0c27a7ce37b66cdec27bf3457087c4a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-osx-arm64.pkg", - "hash": "2a8c0b6413f98eea57fcd79e0af7e8e5e42e0e122df25c19d25d61c57cd4544770379e0a5283a13031715b637a99a16c916cc87c55fa4d922652cdfeac39f6c4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-osx-arm64.tar.gz", - "hash": "6993a950bc5bff0efe762ba2562a88761e93c61024d93633209950cbb68aeb5ff189fcbfe9247a1cdebbe37e738136123c7d4eda1050708608bb1ff0408eff4d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-osx-x64.pkg", - "hash": "6d75cd899b0eba8a19a25665abf518a87a8eab9e1d96167a498cd35625ada0acf5c80a282b1bb2f05dff044baa9d2691a6bf1a7d566515baa2ef2b4760b98f82" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-osx-x64.tar.gz", - "hash": "50f0265436e8c3d756ba00ab7fcd606cb5d452d7bede4daf97e4c02cc97dbbafc00b76f37ec4f07bbed4bee643a433849ddbd363ad2d916aa5965ee74ba317d6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-arm64.exe", - "hash": "dd08ba99c3d9b8381177b549afcce1602abccd5048aedaf41c189655f2f8ccfd6fc7b7c218175f8e7aec41d1442cfc70f47ffc20864c970422c5a0f579556872" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-arm64.zip", - "hash": "252dbfca1c0d581f7ed108fc9da7716af795d7778585ff1cf631846e6782f3bf3300397741fbd0b0dab22c7a6456b990199e8232c9fc10c2d8dd4a11f3786d80" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-x64.exe", - "hash": "2a76b25cb072c10807b096e7dc118ec2bbf484d529f782344fdaf694744dbe45941c7c54a4aafe2175bd0b066e5faa4ac5c4144c4cf5f1753b3368ad73fef8af" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-x64.zip", - "hash": "7e987e30c8739b3785e7ae5f17e56f991d62d5ef9e7b721b7b19998b9b4c314c662a5fa50c299c4ff7e2b40cd706b390866a4988e0096e93448950b9710b4101" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-x86.exe", - "hash": "afcf14628b32f04fe7f4fdfdd16256e1cddfc35b857a6cfbfd0d46cf6791c5a42a428495e51c27aeaa1980f1f69d8a89a5c41c812ed750e27c944bd999d116de" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.304/dotnet-sdk-8.0.304-win-x86.zip", - "hash": "9eed5301d98ac2b644dce118ca56c89e302424893fd6b2c015bf00b2c0552d3fefe1774653ce955a7a99661f41f372d3e7530007f84753493d6abe6445882daf" - } - ] - }, - { - "version": "8.0.108", - "version-display": "8.0.108", - "runtime-version": "8.0.8", - "vs-version": "17.8.13", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-arm.tar.gz", - "hash": "fafa8564b34b524b4209e1047ce7cf1190a5d42e7ba1b13524f5de602b075e630cdd229567f14eb2f0ae6c96ac910ae9dbb4fc4e528df958c9d31471341eedca" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-arm64.tar.gz", - "hash": "6cc723f2b139d19b2e17da5936698d388a5b64638b75ef78c40c407ed3cfd3dea745c2916f03efc9e66479fc55d608eb3a89305727ecdb1c999b183b58de258d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-musl-arm.tar.gz", - "hash": "efb308d81ac1020962f14d03e7ca9419a2901a0846120e07cd95c65407fe2981a26360c2ffea141d80581aac6d2c36a7379c76c07b2fb37d4efb836905f8ff68" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-musl-arm64.tar.gz", - "hash": "e7009ba373b043ccb469557271ac8ae518ab9c9b5b364e9841d8b97305b6036f33240e672e7c483798616a233429748d5038fdfd336352b82060afd645747045" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-musl-x64.tar.gz", - "hash": "744715501de3946f06cd316f35cabc0e363e0af651044c976708c0d48d4eb0d09489d92cceb283c751b2eed0e293ceaaabddcbabf7c25e21d658ebff9dc304aa" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-linux-x64.tar.gz", - "hash": "5666ddf6fa9b65deaba4d7c5fcc2e2d56f631c4f5f6fb2a9f5919af0616ab2b420b12a828becc2e4b8628a76ac3dae824b55abde5c6d5ac59ee131d7eceae7c2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-osx-arm64.pkg", - "hash": "df4453447ec2180ffeb7d08826e296992c966467ef95982d9e57ad861ea03b6b93af1b26b7e7657c797cf071b9380550c9c5ec8ea9659e4b7bf09a0c7e419605" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-osx-arm64.tar.gz", - "hash": "83b01276474b4b62bf0a282fbe11d2353a2191d90becd403b373cd6dfc95264442a907117ad8f615765b13969267b887d26a9f24dbd5f88d8b55daa94412d13c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-osx-x64.pkg", - "hash": "45a977e7cf5fd9fe2c7b471692646212f25ac4bde7c991a0ec13a0de3ea143b08acb295bb4da6cb3ee489004bca2744e734b87bc558245135795904fc736a943" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-osx-x64.tar.gz", - "hash": "a80fee279abfeb558a5540ca2a969a11bb3dbeade8c39d8c47be8a2d622ef1c2bedb22c874598ad41dbff2b95d5a43197bd9f55fc933ab4ede5edcb6a76cf6cb" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-arm64.exe", - "hash": "699591071f80944e81b46d783fcc124f9c5095fc5b97bfc620c012d7eba4e222251f60e3a6d21d26d58eca505edc0f113ffb67def0a35a6f61de347b914d146c" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-arm64.zip", - "hash": "ae0495f030e8cbfd278912bd30ebf764007eeb31352c5a1700cb2d3aacdc1e0cea43dfc048f6da72441ed2c507b2b918297df0fc942a652c309b0070c53b7577" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-x64.exe", - "hash": "a2506216679e4d04767a6a92151a660545461a5c4a658f51c97b0e2fafc61d05abb1c143f43e05691f9d6d9c3342280111e94121583fac0adbc836d6a15d0ef9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-x64.zip", - "hash": "9ab4a1fd0e593dfdac8834ff614f7d1d39022fe3cb3b70c500b07afe77ba7e1214b531a557303b8d3f667a3b22b88df12d4c9e2020427f5a3526a2a394740922" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-x86.exe", - "hash": "e76849c5604c1f061d963d4254078211b866851645a4217644aad9c5e611c8fd1341a4ed406e9595696000902442026103dd3446615e57d84371918c890d73a4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.108/dotnet-sdk-8.0.108-win-x86.zip", - "hash": "bc18424167a9978097918ada0ec8510d592ac3567966321b21ee651e73d50ca4dcd90b11dbed6410d722551a7de2bb02b4de0f7644d58213e585d6b9051bf4fa" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.8", - "version-display": "8.0.8", - "version-aspnetcoremodule": ["18.0.24201.8"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-arm.tar.gz", - "hash": "d0feedd91bb4028069d8cff1726191e9f09920e756405de0d2bbf6f43116277cc93ebe2483f405baa4972b54ffe89b09cbe172a639e60397ae7138df5ef48c4e" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-arm64.tar.gz", - "hash": "c3dc9d71fca0a48eda96074cbcef4c9a265c1c4e10cbff38614dd74d79443ae9d1ccd10714764cd041291f81d83c0ed1c307abf89249ab4b6f58a5de952fcffd" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-musl-arm.tar.gz", - "hash": "5d9f609e72dcfcc16b6bb63d49e7fd47c3e2d77913d9de14864417fb2a534b2f7db56530db165acc63633641c706d0faba95db985b09844677d8cb41039a0c67" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-musl-arm64.tar.gz", - "hash": "6028c29306d4969ee404c459dca3130f1e9614d1954e8ed4400140b35ad8a1e66a0a8b3ae02155df6bd046cd9309074220487a1c2625c39f081bdc6c8ed62005" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-musl-x64.tar.gz", - "hash": "822f2e1716dc2d2aa46ff08f4d2d9bb9ea8c82332785d0aba5f4f33e5eb60bdcd84e899cd2a13ca93032226710b5f0ca5c7159beda17027f84efa285278b5798" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-linux-x64.tar.gz", - "hash": "d6c0cc2aac79fbacbf81b597f286763599f66278c17ddb448ce0b93d499bad8f88777d425854e68602945ab18af8a61f1ee59d431d5503006137f86113faa8b2" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-osx-arm64.tar.gz", - "hash": "a196c62b14e9136362073826a03e76e0a147027f03655529426e594f7e44eb8dd036daea80997876047171c1793c7edcfa5146bd55a01b591d9405fb1646eb00" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-osx-x64.tar.gz", - "hash": "d3ba8dcfaddcd6d50fd434911fe3eb8309666939a8a1ede800d7da2dd814efbd781d1449a42b71d1c71d9593465e9e97205025eb432808ef9a3ba0dcbdba0e3e" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-arm64.exe", - "hash": "3cb44ec35bc7f6fff4d6879ff0fc07abe1f2cd192ef9950c8f95aeae4c9023189710941583ae22bb7c56e5c3357ee80dd9fde1a9ba35452a46d133d2970604f3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-arm64.zip", - "hash": "cf1aae298dd82dd3f23f30ed2cd045eec71fb3d6714bb4d0ebb4d7adf3597096106c2beb753398a82875012910215b7ba3b901c307c2a8109a7a65b67ff165a1" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-x64.exe", - "hash": "908a9e973b052ebf564f2b693bc004ef968079ff2a325cce2912d6d20dd8a74411ba6e6e98ae6e9cb0098eb1cd3878c7cbece8af62ba0e1926c89ba5408799aa" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-x64.zip", - "hash": "c5ad87fdf6cac37234317109fcbc6649aeb0adef3ffc2583af6e044e8934862aa37d17a6071d5383917ca92c01691c8c0680270fa5b6f1aeb43a0fb1d6cab4f6" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-x86.exe", - "hash": "45b4cfb383fc9541423547807229bbd8477bf7f1c30af84cc4f4a41506fba0b54a06f28d83aafe7ce2a0014ae581813c4f4e60a3f08c23bd7e013fa947bd6995" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-8.0.8-win-x86.zip", - "hash": "7f1f69cdb6ad0d1ba784cf827c122a1e77084c98d824936ce2d9c5a611818899f4bf27fe5d1a62678e78dc9cf987cb5aa6abd51c03874d046964a88ec7f80061" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-arm.tar.gz", - "hash": "0b4273d059bd57c7473b80f548fc519a674542d18403d46416e7005dc6e5b984828f1c3c125d19af8752712936c2e49e2e574d8534002980aa298a159bc89698" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-arm64.tar.gz", - "hash": "6385460af9f0e0377fa92f737dd0c76aaac60c8602c0a872467909738ab95dca67d9f75e10077610a3a7ea52f4abef5a86f50f25eee1c8587426011441d1abfc" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-musl-arm.tar.gz", - "hash": "f115d139bbd635eb83818d78caa85b68725a1c35404985c077a1a0c696698cf4e6068635a25b053251139ddf80738acbe97168c109fc890f1dea4fcf9df86cdc" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-musl-arm64.tar.gz", - "hash": "02e92e451ecfa4fe2e6c9483323fd60b974c62f24e7f6910ca28a977233315029566e440f44acbb8beb23bf7691c9a7812a0e2670be3446158362279a08be752" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-musl-x64.tar.gz", - "hash": "7f3ad22abca4d43a46c11ffcdfedf8cf51a297ea83e53ece11e131cc9afceb67a8d4cd8aa0e35ae53c2bad0fdaf866936ba4c670fdfc9c9f57f832d2cd1d0c62" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/aspnetcore-runtime-composite-8.0.8-linux-x64.tar.gz", - "hash": "7f5c9df8a36f900021cdd6c3e8aa7e1583b1dd413de52d0ee109f44f101479110828f8840082020b86e06301789f075a6ce0018b86af26bf9544fe4f6fc165f2" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.8/dotnet-hosting-8.0.8-win.exe", - "hash": "f3f388d24050d4071a8564fbd22c23d3ef86912be48ead0854ea4fe37e2416d8a255031bf85208b6d39c87105ab41442025366aa42b35337357cdd74b423506f", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.8", - "version-display": "8.0.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-arm64.exe", - "hash": "6c8d48681b18c403e1daf1eff2d141d98a2c538d26f49dde6dc02701c0300bfc5e101dfd47e9eb54f2d9328e5eeebb44366a08d99c48efa3eb1c6f71c98b78c2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-arm64.zip", - "hash": "eb881af017d58baa63d96d93da551503b7abe503e1a5e1fdd0e9f253d70e40607808a3b0ad68988f6683927b6301a65dc2ec020e8dea0239bac4c24923fb6f2a" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-x64.exe", - "hash": "27484ffb1e9ce5e6290cda8f5f49563cf4a9e2692aa57429fcd0d3de4f30fc2fce204b1b120349ed50712e95d3fa51037ebaf9b7fd60c41856857b1372e0eac7" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-x64.zip", - "hash": "955db393694978a237f2e16a70057a3a4b74e0de15e18e1021f411ee9913fdf63aedada8d71974c6bb8b609c6d9296fa8770018bf582a76a46c4e403651c7fa0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-x86.exe", - "hash": "3101e64ab772cef8081ca5f441f599d1906c9a3869e7ff20ee1725e121a54dd0569e55dfd842e748a0dd6bff902562834922681c9bb43ede6760aed1206c7966" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.8/windowsdesktop-runtime-8.0.8-win-x86.zip", - "hash": "37b580145dcd37bcbc2c9def7f3f0e51b63e1210219712b9828b403b0805a6fdfaf1f2f6e42196084726575e27a0edd1cf7c40647c92c53fabdebe5d89664ccb" - } - ] - } - }, - { - "release-date": "2024-07-09", - "release-version": "8.0.7", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-38095", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38095" - }, - { - "cve-id": "CVE-2024-35264", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-35264" - }, - { - "cve-id": "CVE-2024-30105", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-30105" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.7/8.0.7.md", - "runtime": { - "version": "8.0.7", - "version-display": "8.0.7", - "vs-version": "17.8.12, 17.10.3", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-arm.tar.gz", - "hash": "ccfe95a95be3c64d568c6f79df391daf73304fa2c2aedf4616cd9981efe11cac698c157d8375da3afda691b78124cc6672fde7353b0fea4d45da15e003040a2a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-arm64.tar.gz", - "hash": "99e6959a1156d5abc8f0c73b3d493fc1e10a42d48a573226ebcfbdf96bb6fb1c8701db5b3582a4303ce26a4f784e74eb402cb6e5e4bcdbb5dfab8fea221cfe02" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-musl-arm.tar.gz", - "hash": "03aecb348a99d0afc9b90006e14a0c75ed69f7ef6cb8689fac171edf0f88aaa928a395ce433a390cee1ca4255560511c89d8d827a575b21876e2e7f94d5bceef" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-musl-arm64.tar.gz", - "hash": "249246082498d3f6b5a3a0347527ac5a98ecd0fde235d6bb48bb18e4bb031eda6833526035279e99e97fbb5dc58fba132c9bed5f33442c47e571a91f648fa863" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-musl-x64.tar.gz", - "hash": "31386a3af6cbeea3e1b0e2f109d10222c5ad41057540fd5c626959ec7d2a542b859c9699cb86a1ac812eb7fed139dcab0c53ecb8adf678fe0ad04c62cf6c1f8d" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-linux-x64.tar.gz", - "hash": "88e9ac34ad5ac76eec5499f2eb8d1aa35076518c842854ec1053953d34969c7bf1c5b2dbce245dbace3a18c3b8a4c79d2ef2d2ff105ce9d17cbbdbe813d8b16f" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-osx-arm64.pkg", - "hash": "6fe0c208a7fe6a2b93a64a9d0cd30f7f162849fc9e71bd012e5f1305b27103721f403689f1ccce8b45b038027d892d125f842e280d680c831f09dd5ff400b998" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-osx-arm64.tar.gz", - "hash": "8af655573350f6be0b47223ae7272ca8d49fb3c74f6fc167e7249267c1616842eea09709205a07acd3b86a5ac862026ed1269ece5e681c3fd50ada8351c5dfdc" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-osx-x64.pkg", - "hash": "9bbdd3a4f2792083a51d47ca2e854e392bbf64c4c6995e4d6833a2998f4549dbf5aeeca2d84c335965f48857b7813d860fb980d7a254704dc43b72fe8f512952" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-osx-x64.tar.gz", - "hash": "09107de04c6748fb3d98d72296e3470a6d3551a66bfcc310d2be0f678dd1cb8cb13a886b1b7e1e3856e12c0766cd5007f9922625653a6e284f5ab8fc80ee04ad" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-arm64.exe", - "hash": "098e27604a181888ce901eca1cc2e55af60a540e813be554eae39fcb2569b5e74b8ae2c7ed37a7ed9ef1048d50b8a0bcbd33ad94803a7d2e4b724a64e87a0db7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-arm64.zip", - "hash": "4b2dd24aa09efa1438bea7f7d8e973117f4901f94aaed785f12a3e15fc705bb4ca068c5c81ca6f7751ab9d1ec2a277a11430a3c9171a297d628190e250c96c1c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-x64.exe", - "hash": "e016b47ff8f179f1edf641cca20130e04951509f0f69f564f290bfb0ad81d7db83541fb00c4ddd8364e71c1120bcc227fa0e7e8e142bbee2c4d329674ed0b155" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-x64.zip", - "hash": "abe510a4e57bb115698bbfc1c49fe2414cd5696ebeffc7c8803d4d0278a40010dff36b3c347651e5a87301a4472bc610019ea281499d5c351e25e60caa18195e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-x86.exe", - "hash": "32290e42a0a0b082eec4e70352d9777c9cbcc97296df98904a8b8e309dd1fc196433a1a3c62d1f60cd0939b4948237a3ff5f154c577729b7154a627e3d56c1bd" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.7/dotnet-runtime-8.0.7-win-x86.zip", - "hash": "1bd64825ace6fbde84c8f0d42f18df57c1a570464ff65767842797f3b54f86486288084687bdd8d1da0f83ef2eb76b05af14d386b6c52e4c9ff072bd71f58a32" - } - ] - }, - "sdk": { - "version": "8.0.303", - "version-display": "8.0.303", - "runtime-version": "8.0.7", - "vs-version": "17.10.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-arm.tar.gz", - "hash": "03b3730d1fd5e1955b8a23e69695c975e88e781513b1f47027ce4ed96a8743ba2560ca87ae2e937ebd89ef69a3aa05c4ca2f39eede5a27bd937775f372b9feba" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-arm64.tar.gz", - "hash": "09cb6b12770febe186e36971afdbcea6e8bf5fb34b7701cd8c416f597d3b7e930d05e51ccef1985e5598291540ef2d721187904587469300bb39772317e2be5c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-arm.tar.gz", - "hash": "5e119bf1496bebd3b62d0c0c837bb8e8695784c91f9042771b01b47953d82e59605d7c04f2b821340792ace2966587a10d980bebeb8f9a39f1e8e4588ab59a6c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-arm64.tar.gz", - "hash": "88a42a0a9f0b6981eeb0d2cdbde0fd98631d57c09ddca566bc1b4d4b99a9165e276a3434f6804bd54628387edae99c8f0025e889c0e06ade0defaf2fa5858d65" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-x64.tar.gz", - "hash": "5696332dcfa1dd16f897f68dd190e45f6604fd8228d563394ef9da09f2ff99214ba23b80fa416b7748a5c34912eb42523ba83138d5cbc4468e1efc15b747630a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-x64.tar.gz", - "hash": "814ff07ccdfc8160c4a24adfda6c815e7feace88c59722f827a5a27041719067538754911fc15cb46978e16566fe0938695891723d182055190e876131faedda" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-arm64.pkg", - "hash": "3084ad0cce453937b22912ae6b882fcca3d680c3103964ee7859a2ad55816e3188b98d186df0a7c4e5e2a411806a72686392e646c3d34c85bb4e40d525f0f12f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-arm64.tar.gz", - "hash": "c1c2935ac0b6654805e8112ff88d31ca9aae7f345218c9a9d9e512c98d73e2bccdfdb006537832e4f20fd3a9ce4defaad537e5cb98deb538e95b54a2c76a9110" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-x64.pkg", - "hash": "3a65f25e7bf4af09403776fe058b990cc7ee43e59ec7312d18429d1da929c5e9564d9ac89ee68775817b814b47137e1f4ab93e233635467ba8f48cb42b447b9c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-x64.tar.gz", - "hash": "5676b8c0497adcc9543b5f4dd57c54451ea66e79ce6f656647bff54619785a05f5c52cb22483bf14b1f3eb85cd3fb19c2ce4352e7b8482fbc1998a1e7043c377" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-arm64.exe", - "hash": "a2f26a8b816bb27fda3d0b5bfc32af0714543ab08cc1261261dd4487605fe89de85a77d646e2c514e1b54ba0d0f5e06b93c3d81a7a81cc711654e6c1237d5cd7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-arm64.zip", - "hash": "3ec3f0a3d5cdd3cd0b33be9b09166ed0dfc1e83bcae38170b60085fd8a95b557bfa9bd0583abe576156845998e356cdd43afc95428a1d093546a3bdbfdf97f43" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x64.exe", - "hash": "69c7195d859b3ca0757fa1bf367e839c050996ba8e46568130b722d987177d3d3e025dfb9be6ba3da3e83d3c1e7a4ebba6cdaebd31ee4677a8fd4a74971ca0a1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x64.zip", - "hash": "be8a71f8819ceb35937c158107a34a77d0ee4f7ad761241d1a5a49842288f280b1f521dc3dcbcd2fa8a571de740d873e40b80615c2b345e2501e1875844b0350" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x86.exe", - "hash": "af52649a05bb3c8ba494291234d67f3385446a8a08eaefcbe9fbc4e766ae97a6a13253060a798ce076511fa59086b1d9fa638b51a5e748bcfc79d36ddc7991ca" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x86.zip", - "hash": "1a2e7f7c0c7ca9e1bf453459490e8a496c673135f4e285ed9dc3b205cb999c0fe686d74bd3f1d1dd5293b943b14d41d1d2b61e3f8dc7dda9d6c524cea8b30c8b" - } - ] - }, - "sdks": [ - { - "version": "8.0.303", - "version-display": "8.0.303", - "runtime-version": "8.0.7", - "vs-version": "17.10.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-arm.tar.gz", - "hash": "03b3730d1fd5e1955b8a23e69695c975e88e781513b1f47027ce4ed96a8743ba2560ca87ae2e937ebd89ef69a3aa05c4ca2f39eede5a27bd937775f372b9feba" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-arm64.tar.gz", - "hash": "09cb6b12770febe186e36971afdbcea6e8bf5fb34b7701cd8c416f597d3b7e930d05e51ccef1985e5598291540ef2d721187904587469300bb39772317e2be5c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-arm.tar.gz", - "hash": "5e119bf1496bebd3b62d0c0c837bb8e8695784c91f9042771b01b47953d82e59605d7c04f2b821340792ace2966587a10d980bebeb8f9a39f1e8e4588ab59a6c" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-arm64.tar.gz", - "hash": "88a42a0a9f0b6981eeb0d2cdbde0fd98631d57c09ddca566bc1b4d4b99a9165e276a3434f6804bd54628387edae99c8f0025e889c0e06ade0defaf2fa5858d65" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-musl-x64.tar.gz", - "hash": "5696332dcfa1dd16f897f68dd190e45f6604fd8228d563394ef9da09f2ff99214ba23b80fa416b7748a5c34912eb42523ba83138d5cbc4468e1efc15b747630a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-linux-x64.tar.gz", - "hash": "814ff07ccdfc8160c4a24adfda6c815e7feace88c59722f827a5a27041719067538754911fc15cb46978e16566fe0938695891723d182055190e876131faedda" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-arm64.pkg", - "hash": "3084ad0cce453937b22912ae6b882fcca3d680c3103964ee7859a2ad55816e3188b98d186df0a7c4e5e2a411806a72686392e646c3d34c85bb4e40d525f0f12f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-arm64.tar.gz", - "hash": "c1c2935ac0b6654805e8112ff88d31ca9aae7f345218c9a9d9e512c98d73e2bccdfdb006537832e4f20fd3a9ce4defaad537e5cb98deb538e95b54a2c76a9110" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-x64.pkg", - "hash": "3a65f25e7bf4af09403776fe058b990cc7ee43e59ec7312d18429d1da929c5e9564d9ac89ee68775817b814b47137e1f4ab93e233635467ba8f48cb42b447b9c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-osx-x64.tar.gz", - "hash": "5676b8c0497adcc9543b5f4dd57c54451ea66e79ce6f656647bff54619785a05f5c52cb22483bf14b1f3eb85cd3fb19c2ce4352e7b8482fbc1998a1e7043c377" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-arm64.exe", - "hash": "a2f26a8b816bb27fda3d0b5bfc32af0714543ab08cc1261261dd4487605fe89de85a77d646e2c514e1b54ba0d0f5e06b93c3d81a7a81cc711654e6c1237d5cd7" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-arm64.zip", - "hash": "3ec3f0a3d5cdd3cd0b33be9b09166ed0dfc1e83bcae38170b60085fd8a95b557bfa9bd0583abe576156845998e356cdd43afc95428a1d093546a3bdbfdf97f43" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x64.exe", - "hash": "69c7195d859b3ca0757fa1bf367e839c050996ba8e46568130b722d987177d3d3e025dfb9be6ba3da3e83d3c1e7a4ebba6cdaebd31ee4677a8fd4a74971ca0a1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x64.zip", - "hash": "be8a71f8819ceb35937c158107a34a77d0ee4f7ad761241d1a5a49842288f280b1f521dc3dcbcd2fa8a571de740d873e40b80615c2b345e2501e1875844b0350" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x86.exe", - "hash": "af52649a05bb3c8ba494291234d67f3385446a8a08eaefcbe9fbc4e766ae97a6a13253060a798ce076511fa59086b1d9fa638b51a5e748bcfc79d36ddc7991ca" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.303/dotnet-sdk-8.0.303-win-x86.zip", - "hash": "1a2e7f7c0c7ca9e1bf453459490e8a496c673135f4e285ed9dc3b205cb999c0fe686d74bd3f1d1dd5293b943b14d41d1d2b61e3f8dc7dda9d6c524cea8b30c8b" - } - ] - }, - { - "version": "8.0.107", - "version-display": "8.0.107", - "runtime-version": "8.0.7", - "vs-version": "17.8.12", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-arm.tar.gz", - "hash": "782065b4bf96901c91448412bb22fba27958e8812caba0a02cf8dbf2333f7320ba2c1eecbef4859f4034eb80d04bdb853a1836e1d284bdf5f623c7416dfc9861" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-arm64.tar.gz", - "hash": "ab487873827677f44efe4372e0c325a48f339008d00307876e1e56795bc006be1770e8b1f9581c7197ea1bf857eae525aca18934591f603363f8fe9e021e7b2a" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-musl-arm.tar.gz", - "hash": "e6e6325c6292bf435a0771c33eaf330dc132a11372ea6d12427f5a6c24cb6db260d95b1dfbba3c232cf9d5166f61192a05c7e3be4210a05a6687634fb0a887c6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-musl-arm64.tar.gz", - "hash": "5b99a07607cae652e4b392c17a7856ffb5df939e95d741d07c385d422e5511394567b5102213da1dc65183680d0e908d83c43c95b14bfabec305ca7731d9d676" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-musl-x64.tar.gz", - "hash": "f25c95f9acff4db16593541fda517c32477eb618dc9ad5b3983a4ab5bd62fdd3c03c7d9f56afe1132aff5137bbdc4161e0b83f7c8101cb1766b82ed4072becef" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-linux-x64.tar.gz", - "hash": "10e0fbdc589e5e0de4fb0fe0e9c839bb2257c51948037a224d4358b8328b6791014ab4cb164beb617c83531a6ed774acb37b08e4a1b53f165e3eb853fd41a959" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-osx-arm64.pkg", - "hash": "15049070340e2ed4481df808fd922d19e9ef2287702feb5b4a5785e2a20204108274869f3376dc8ff4b2cb4e5e43fbb9fae6a430a684539bb4c2451d2f33eb32" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-osx-arm64.tar.gz", - "hash": "b293f8e3cad20278ee85e30b4b1baa615c30b0e7aba557b1d0248d9e5c4557e323b726afdde0386c0227d6cbc6f95c8ef5493e209cb5a42b64e8c7f6e495224e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-osx-x64.pkg", - "hash": "9b63206c36ff3b64d222fea1c143741a813d099616e5c90665484b966f82e26b38addc7f4712a705287b12534319b517ac377b14d30c4310fe7d695676f7b4a6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-osx-x64.tar.gz", - "hash": "9bc62515220f924cadf02e5be880fa813b6d0b0cf8c2199a7e930e25e81576ff3e88894e5a0b691d8b0a1e32fe1ab4499ff47d80cd004f07af61d6d362efb654" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-arm64.exe", - "hash": "df5c9f9d4298bbeb5430e793d1735ecd17bd8bd18ec5547c3a9593ee4cd09688dd6eccfaf312156a161336fff830382261ed970bdd767f8dcc8404bad1b316a1" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-arm64.zip", - "hash": "088753c813432bbd94e13f45b7db4366730a832ce603efd5f60499c4d414575bca805c066ba5743d5639c5e427d9f4501640da7c0eef437d411382e0c17dfcc5" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-x64.exe", - "hash": "98413082e4d7df181904053f481f3d172d6d62fc546c004d0e8301b882cee72508c0d69afa514b6ec060ffcd6e4b02b239eaf9e2c804009bf5b99dfaa29ee41c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-x64.zip", - "hash": "9d26be45d25a7b13861e4beb95c78e73425c5c210bdf8c3b23b29813caaa314195b928df38eddf5bb561bd2767e607dd2b863d09283ed7d5f96dd4fa6a35434a" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-x86.exe", - "hash": "969d63a0747103bd4bec05a891d0e2c900e12ffdda504123f2de4c4025c4904f516e55b8edd84003e08e414c05256c5cc0df2ca6527c61684be59791c071abca" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.107/dotnet-sdk-8.0.107-win-x86.zip", - "hash": "8500a6e40d28de34881ea9f2679d2559d6192a4deb16bf2fad7bed91d10ef0726da294b6f362be0fb89524622d246bf0fd3aa2a4dab97e671f5bcecaaedb67ed" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.7", - "version-display": "8.0.7", - "version-aspnetcoremodule": ["18.0.24166.7"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-arm.tar.gz", - "hash": "d0107441223a44f1c4d9fa08c2d66b1875d20917fb1dacab7f80a42f0da1428570dd1cb86bc1f6e4eef3414e1770768fc8f17b836d0f7ab9b890848bc18ce8b0" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-arm64.tar.gz", - "hash": "5f1d31b0efc793655abf4289f8f1c7e8cd1ffabfd65b385b49e3f5232277c62ccfbbdad2a51731a8a88594a06c2c9774e38865cb3f7e19c9925a12b25b40b485" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-musl-arm.tar.gz", - "hash": "9acc8bc8c5fde692def85b1dffaa8648fcc6a2a482c252882660ecdc4ca8b4be8d59274891bfb9b106cca62849a705b482ef5b4c539014e284dc2309234ffe22" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-musl-arm64.tar.gz", - "hash": "ca5b8d9fbdbe3c38f560d662705be00174885fc7abd875ac056c97788410329af9017ec6052a146b9414d26ff956accdfdc6ef315aaf7c6936b0520a9320493f" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-musl-x64.tar.gz", - "hash": "a60d470dee1a1da34ce4d9e84a6dca1e7df2bbbc8b3b0fce36543f712b8a3da78a3ddf59b4ac231986f49a6fb44f59a270a184fabbda6a0e098d018d3e2afa46" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-linux-x64.tar.gz", - "hash": "c7479dc008fce77c2bfcaa1ac1c9fe6f64ef7e59609fff6707da14975aade73e3cb22b97f2b3922a2642fa8d843a3caf714ab3a2b357abeda486b9d0f8bebb18" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-osx-arm64.tar.gz", - "hash": "f02e3b3a4ec366a2be7ef596f728914fb7c3810ed507ebcade27b09ff62e7cb84cd4b24c8438cada72b99e60fc7477d868a6cb57083a39387f7900874faa35f7" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-osx-x64.tar.gz", - "hash": "867765250c5ab0431023d59b9fd04ac0ac868797e2ea1b4257e44d93033d653e48d8776bb7e7cbbdec094a5a60002d2833c5a58094fe54c2b6402b1ce2882c49" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-arm64.exe", - "hash": "d54d9a1f344adc9f31d3bc4085fe977c55fde9e5c65c59a9ae3475ddf53ae4a15e0a6eea7dbcc211e02297530035f55f879dc777ad499e25b61b5be29d51e09d" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-arm64.zip", - "hash": "e4443dec8f8c50ff61bb607447c662c48c05890946afe1a7dcddb956b94056d14bed60f455d0854b273c938c078c0b67f6cc3744216f7d4f199218a7898170ab" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-x64.exe", - "hash": "0a6b57b7bf939dacd3b90f7da9ee4696993c1f736e8e4d61feb97c9061e78cad023e0efa94c5c6bbb4c25272acd4ac89e555dfff39a44fc65b9d5ad0bb1e6019" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-x64.zip", - "hash": "e745cd0eb11ff4f5dbfcea2966542dbfec57cb0d6025e1fd0a8f0d500c1246d9636f780b72586a55a3c8bac657a07443e4073eb9503b9f4eefa7aab336b6000c" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-x86.exe", - "hash": "5d887a491c58210abd3015099f80dc626c59bb832d36becebe619e729332daafa3aa030ca6af06ef7135805905c6ec79bc0fa2ab6d02d4ce066406a1441c7960" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-8.0.7-win-x86.zip", - "hash": "504f3738ba8c626477d22462d832e2f68f2ead4da66454a1c0dbe90af5c16411b01d8fc653d83879c20c837f2f44c406fb8a108ea88c24af7cdaa42710d6f176" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-arm.tar.gz", - "hash": "72f95a217994b8bcc0dc4a195cd8ebee8b532e6ab668fbb3621a36651e44ba1862fabf9c9374773be22a5d94ced81811b4c0c9fdb2543aa8220cefb182070b09" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-arm64.tar.gz", - "hash": "37a7380ea8466fafbf3e36f3ba3102ea9cd5add99ace485fe4b612f3e75481a3cb721dd0425380840ad641d559bd0fddfc73bb7ad4b452d4be50a4ff8c286935" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-musl-arm.tar.gz", - "hash": "ba4cd631dc1f88cd8bc7fd8e5c3924758a81585d5f8d1e3ed97bf2efc8bb25d740d0a5d38bfcb67a9454c642f7b6d2b5b2e4faa2d4447687973c2c3584a365a4" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-musl-arm64.tar.gz", - "hash": "d6da2d256622ac7733ee3b21573f59411854c7ce702a459e84ab1d830f172cf07250d7b9ee14b898bb18e414658f25e90ab9b1bfd21c02d5f0d1610e4d4dd9b8" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-musl-x64.tar.gz", - "hash": "c1e303f0ba0cf584157b2e830dfa237fad8a67c8e699737f6f4ba701fcf101afbe639dc15dc12cf69be6c9b4f947ca8b9043374247cededce891a1cf6987516f" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/aspnetcore-runtime-composite-8.0.7-linux-x64.tar.gz", - "hash": "206786d755c85ff253e2b9a08c9df0793301656d91e6539554dba8d119484e8684cf0c83a75773608a64a109d1e94c4f966bf5e4636fb4e438f01dde3f769814" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.7/dotnet-hosting-8.0.7-win.exe", - "hash": "53395e0042b1a2d473589cb8d4522d2fb2087831b26589d4269f4774b461bcfd753f70199459e8b6c3423b32e43672f3a76cb373a0fe63463a558f10c264c1fb", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.7", - "version-display": "8.0.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-arm64.exe", - "hash": "bfd5a8bdd87d9c010fc9cbd058f071e832b7d515c2550e0ca43b6da23dc5c108f9d8065ad89fa33bc5fab7c814eee7531e07cb58d09a4e69073a880137affe41" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-arm64.zip", - "hash": "2569af5ddd639dae21a132db89fab22e1346261f477d47980f6a4f876cd0cf8d0533f3c96b9b6b977bb0e85ce9ca50b3feda486d88ae4a333b562ab7f8ec8212" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-x64.exe", - "hash": "391ca05d7540c58f25047ae07b8c5656829f7fd32f6e88a4e34c5337525f574e5714657e1c4f4f4d48e006087f573f8c03f1fc8eab8c9b9dab4d5ca5c8ea1fd4" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-x64.zip", - "hash": "d26210d317cd108ec08d075fd646d0b6412aa666d53674fe76f988bfe669e1a7cfd6e3332948aa5d0dbd1edfce643713ddfc841bbdc76b3fed72e8393960cfce" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-x86.exe", - "hash": "5adf46498caa1f4ae10ea6327f5c89f424665e1fc471cc8ca18c43779058a37aa5441ce89f82d9b2a5a4b877ab7f448fb5c48193e628eb038956f82d71880942" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.7/windowsdesktop-runtime-8.0.7-win-x86.zip", - "hash": "14908d8e3b67ad7df164e4c2e68c31e02d982b345c025a32595d052dba6d1220becde6d4c8060a521603c9e8cca806bebf0e8e7dfe8cbf8a153597de12efc5e5" - } - ] - } - }, - { - "release-date": "2024-06-11", - "release-version": "8.0.6", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-20672", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-20672" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.6/8.0.6.md", - "runtime": { - "version": "8.0.6", - "version-display": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-arm.tar.gz", - "hash": "f50a3acef2d10282a2a236c4eed6f8a6e02b929123c297e3a2cd52deb442a7aa9571ea8529fdf6fdc5b140a076f0e69cfd8358cedaf399ec443441a9c6389817" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-arm64.tar.gz", - "hash": "428c5a81938273c5e63b04858dbf2f4e82c9bcfa3bd33f954081238be2fb52aadce99296698eabac72e4be55c61e6c1ff06d2d8d1fd5d6a2d0c7a2917cd50739" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-musl-arm.tar.gz", - "hash": "1ab5c0ced0444f557547266e80dc50ce2778ea24883fbbaead063f659c2fbbeb9e52f6c92257b1b00c77a743df76effef4d7efd34736acb0e44f5914e75f5d7d" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-musl-arm64.tar.gz", - "hash": "dc8383bf283e76a2fcf22bbc53eab10faa6dee72aa6ff542427e1a1fdf14c4071f1b3016d895984f15c751707e2e05791c1522f361f3389ba6068c235550e484" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-musl-x64.tar.gz", - "hash": "db25afb6603cfd1cafafb3856ea59205b350b263441928c7010372dc1ee813f03d9ba01186468c95402cc09c49367f129e84f8e30b9ebb4a27f5ed66bb573cc1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-linux-x64.tar.gz", - "hash": "c0c5e93d4e68e2075c4c63336dc74246efb704ac9663411351efdefc4cc7da5a7750f44b8a23aebe959bb4308575bead443a41b2524ae03b29ac41929d27e0e0" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-osx-arm64.pkg", - "hash": "93eab830c568e8aabcdee81a88b4199e9cbb6a286631ccc4e041d2b7703a6c8e9a80896f01714e2cc6ae499ef4dc467040dced680db5cfe0ecb6b8f63ec0c603" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-osx-arm64.tar.gz", - "hash": "21ae6420914e45be9fe17bfb0c89948eead27756dedb13fc2c6b9b08d78aee80daa2b8cda358268c819f00ba7ca33ed75e21bed387045b3a62160fea159eaa3c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-osx-x64.pkg", - "hash": "fb427c00f96458a6b6822974c72178639d82ab9f2111d0a8d1493a58353e8d95dce41b08cff7bb4b91b87a72c31b21f9801692838194de4e30feffaa97b3ab73" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-osx-x64.tar.gz", - "hash": "44c0ad9fc613975fa0c12b12b91ff8cd8ba0be5e8ed59510e7a5ab22e55267a468b321ce34515daf070ffc8d557c09d7ea3ed3c3407887f706553b5d378e3232" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-arm64.exe", - "hash": "c78c72a8024fb2d686bcaecea673f69b66834c81011be4505a2964e367b15310c5a96466b9baaa4adefe1766d8325b4686b3c1d3175b32e0ddeed4da12052dbd" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-arm64.zip", - "hash": "e712bdf4127ab573ad3c7610f61438ee3abc7a20a6a84d584ef2675c4a3762ea2fb6164852a19df9c86eef69246b8d80fa88477a9cec46218cdb826ec26e9388" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-x64.exe", - "hash": "b3456b1d2b8b9b4269234c0fcd9d154109ec4cae623149f6d3d104ae43d08ef247c1c6a7e0117c0c7dd3db8ae17c999c637edaa99156d99c270b1b41782b4273" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-x64.zip", - "hash": "2c0407df76878fe518105e132e5435f7f3ac42415fecf099e1a056ef4c068ed9d4e3bcfb5fe49b6c138cfe8b77db609bc6af28be5f11b5beca9eea7c1092ee51" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-x86.exe", - "hash": "ab9bad248e97dbe87581dd8ecb0db22b3972de60fbde596f36ce6ffc7d5270457f9b7f6b7328ade901fd7234482c6d5907f2450a30699fef2cfae8d9ccfe1a9e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.6/dotnet-runtime-8.0.6-win-x86.zip", - "hash": "4801ea1f67811ee368d78e03447cf972ba71e4d02818d5ed019ce99a241498eb4d242ceb520744141d6c3047bacb80c64be5b0f9a64f339087bce76e83a0b444" - } - ] - }, - "sdk": { - "version": "8.0.302", - "version-display": "8.0.302", - "runtime-version": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-arm.tar.gz", - "hash": "2758d4844986794b34bcb34f24a153cee47d73fb787702dc7b6727e8dbe1e8c1c9e6bb350bf990c974be46821bcbf85e116ff2007727e2c3dcfa010c6f4cd3e0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-arm64.tar.gz", - "hash": "a6432f93056d74a7dd666f0deda80c96e6dd6a5e6291f71a0128846df9dee5aa0016fc3bd39f34ce5a859bb82ea4e4302790a78ffc2d05216f07f9bf94440c40" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-arm.tar.gz", - "hash": "ad01cf664b42e85bfaa1f8cd13b159266b5b332e4b9c54b8f01e0d08da85c151437be30e142661b38e90b5896c17db30e086c78c47d1f3bb6b57c17e52c1483b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-arm64.tar.gz", - "hash": "bc504f76a5eb984373f96520c3ae0d439da9778bc4ba39455f89b809e203543ca164f3c27523b84245a5223ae7eed64931ea78a136041eecb1d1a226cd60471b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-x64.tar.gz", - "hash": "8b5c2f13162ab667c84b371c5a9826173872f2485f806826b9df252537ca77c354b32cc58532e497fdf619f666413b1627e84d18bad616165b5454a8e2d110d2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-x64.tar.gz", - "hash": "43d0ea1df12c15a0e47560d2a84857ab50eb04ac693ab41413c04c591719101c4c8165e052a42a66719c67bd07ac299ca47edbb4944a2901df765042e56b316f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-arm64.pkg", - "hash": "39019856e704be3acf9359f3f90aa925f6283aa13555b97fff43cea4553e5a7c7d04addd56d25f4d3e60c5b86b8f388c5b52b9dda4ca47b38583ccc48d34c34e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-arm64.tar.gz", - "hash": "e3589d4da75b9fa4b84c9e6e23cdc97796d59dc27efe3c25e5dffd1fa074f770876eda7087d26eb221369355dcce89c7d7724426ee24269295ca1d4e6353bd7f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-x64.pkg", - "hash": "c2ea26ea51797e00a809e44902437ede2231e5a84a3900994aecd3de3e014abd9b8054c766ffedf2c9fbff4991fcd63490a3c8527d7afc27fc7be0dd417c229d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-x64.tar.gz", - "hash": "028f784cffe5289bd324b1804e0b49694207a124e00309bc8f13568ebfd6ae9bbb7db52ddfaaf3a99886b568b9ce9668f74aa67792fe453f1ebeeea30ec1e984" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-arm64.exe", - "hash": "e366bac665617c305c2646d621d00fa3e11b902c5ffe98eb7b292c35e3bc9d740f5b171a1cad3617262add29981c6d97a39ab052074dd70475d5093a76d8964b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-arm64.zip", - "hash": "52afbfe900245431cf3461faac1343220066a010c8187a5276536f29774d87f6c3c529064ef56b1316f2f27c5e465a294ba042c3a44bfbcfce6cdc0ba6fc69e3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x64.exe", - "hash": "ade97369615e40e6704fa8af0d24fba1d784d5bffa2af27b0c9b29273a426b9fff33fae8b72172e95cb15fce4d2188f88486edc21d75b9f9e33e81b1eed3dba3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x64.zip", - "hash": "922b60ec1730d6a4fc37b9d769646d1782a1cf0293846cb4e1991a61cab4892f5c792a88df471e65b82df512d6f3c8341cce650d5260d0fb64e3c6b620efe5c4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x86.exe", - "hash": "5a6534f1906c963293e8e7ffbc7b906cb66adda402f44525f3e32aa7c4d64c6fd89c8fcfd37eb1da39500d0cf3890f338bd56314072530d82c8b55a863066657" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x86.zip", - "hash": "56d435d933d089fe993e5d40388ece8f139b4e19b3aefce939cfcdba39796452326b43a53241b6d9613d1561b87685669a5a965cf08d3bf647d6edaf90997494" - } - ] - }, - "sdks": [ - { - "version": "8.0.302", - "version-display": "8.0.302", - "runtime-version": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-arm.tar.gz", - "hash": "2758d4844986794b34bcb34f24a153cee47d73fb787702dc7b6727e8dbe1e8c1c9e6bb350bf990c974be46821bcbf85e116ff2007727e2c3dcfa010c6f4cd3e0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-arm64.tar.gz", - "hash": "a6432f93056d74a7dd666f0deda80c96e6dd6a5e6291f71a0128846df9dee5aa0016fc3bd39f34ce5a859bb82ea4e4302790a78ffc2d05216f07f9bf94440c40" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-arm.tar.gz", - "hash": "ad01cf664b42e85bfaa1f8cd13b159266b5b332e4b9c54b8f01e0d08da85c151437be30e142661b38e90b5896c17db30e086c78c47d1f3bb6b57c17e52c1483b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-arm64.tar.gz", - "hash": "bc504f76a5eb984373f96520c3ae0d439da9778bc4ba39455f89b809e203543ca164f3c27523b84245a5223ae7eed64931ea78a136041eecb1d1a226cd60471b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-musl-x64.tar.gz", - "hash": "8b5c2f13162ab667c84b371c5a9826173872f2485f806826b9df252537ca77c354b32cc58532e497fdf619f666413b1627e84d18bad616165b5454a8e2d110d2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-linux-x64.tar.gz", - "hash": "43d0ea1df12c15a0e47560d2a84857ab50eb04ac693ab41413c04c591719101c4c8165e052a42a66719c67bd07ac299ca47edbb4944a2901df765042e56b316f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-arm64.pkg", - "hash": "39019856e704be3acf9359f3f90aa925f6283aa13555b97fff43cea4553e5a7c7d04addd56d25f4d3e60c5b86b8f388c5b52b9dda4ca47b38583ccc48d34c34e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-arm64.tar.gz", - "hash": "e3589d4da75b9fa4b84c9e6e23cdc97796d59dc27efe3c25e5dffd1fa074f770876eda7087d26eb221369355dcce89c7d7724426ee24269295ca1d4e6353bd7f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-x64.pkg", - "hash": "c2ea26ea51797e00a809e44902437ede2231e5a84a3900994aecd3de3e014abd9b8054c766ffedf2c9fbff4991fcd63490a3c8527d7afc27fc7be0dd417c229d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-osx-x64.tar.gz", - "hash": "028f784cffe5289bd324b1804e0b49694207a124e00309bc8f13568ebfd6ae9bbb7db52ddfaaf3a99886b568b9ce9668f74aa67792fe453f1ebeeea30ec1e984" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-arm64.exe", - "hash": "e366bac665617c305c2646d621d00fa3e11b902c5ffe98eb7b292c35e3bc9d740f5b171a1cad3617262add29981c6d97a39ab052074dd70475d5093a76d8964b" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-arm64.zip", - "hash": "52afbfe900245431cf3461faac1343220066a010c8187a5276536f29774d87f6c3c529064ef56b1316f2f27c5e465a294ba042c3a44bfbcfce6cdc0ba6fc69e3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x64.exe", - "hash": "ade97369615e40e6704fa8af0d24fba1d784d5bffa2af27b0c9b29273a426b9fff33fae8b72172e95cb15fce4d2188f88486edc21d75b9f9e33e81b1eed3dba3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x64.zip", - "hash": "922b60ec1730d6a4fc37b9d769646d1782a1cf0293846cb4e1991a61cab4892f5c792a88df471e65b82df512d6f3c8341cce650d5260d0fb64e3c6b620efe5c4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x86.exe", - "hash": "5a6534f1906c963293e8e7ffbc7b906cb66adda402f44525f3e32aa7c4d64c6fd89c8fcfd37eb1da39500d0cf3890f338bd56314072530d82c8b55a863066657" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.302/dotnet-sdk-8.0.302-win-x86.zip", - "hash": "56d435d933d089fe993e5d40388ece8f139b4e19b3aefce939cfcdba39796452326b43a53241b6d9613d1561b87685669a5a965cf08d3bf647d6edaf90997494" - } - ] - }, - { - "version": "8.0.301", - "version-display": "8.0.301", - "runtime-version": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-arm.tar.gz", - "hash": "9a44abe4ab6c6a8b8b8c599b140722098e4c710fb86d3ff387402ce98fc5bdf2e8271558b2de0822b5ef73c8781d5fae219d69411697b3cd59ccfc0283286a69" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-arm64.tar.gz", - "hash": "cb904a625d5e4ef4db995225d6705b84201dc7d7d09a0b1669baccc86e05419472719025036dd78983b21850f7663d159ae41926364d1d3ca0eab62862f75d29" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-musl-arm.tar.gz", - "hash": "19c32bf5cc14452cd0eaa40eceb0f5d63730c80ee9045cd9ee9057bb78b3add430b7337c2e2ddc05902777ba6517f879c10572c32da0ce21877ce1d9523a753b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-musl-arm64.tar.gz", - "hash": "646716f924ab20826a3520a2f75fa0e188f2306b8b8a1695f15834a14688dfd9c871909401810aaa387abb2eb9397414b21ac3b6b0ce1f3458dc96fb84c951bb" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-musl-x64.tar.gz", - "hash": "25e11e1b658e89121650ac5ec2b21d0cda42442d807dc3fd32b79f2d818ace9ed505f0e95994ed6edac7392c62dc094a056ea43d8c054a190cb3fe395fe802cd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-linux-x64.tar.gz", - "hash": "6e2e1ad5fe3f00e6974ad3eac9c5b74cd09521f19e06eb9aff45a44d6c55e4a2c1cd489364735215d2ea53cec2a7d45892a5ede344a8421be9ad15872c3496a2" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-osx-arm64.pkg", - "hash": "40f5f59f166627f01d2359a6502f101f77e8ccfeee2aa69912d0e70860873d746af38b77759a8d256c5fc6fb247ea93bbc56c0c4a9a006201848966f8cdcbb0f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-osx-arm64.tar.gz", - "hash": "8d56980b6a6ffd78618a6e9833126d7e67052ca6041bd5f167a32e277aac7094a5cd37b9e7e145d5c9b74da95561535189a077d074ddb0fe710a76c2a2c9b1eb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-osx-x64.pkg", - "hash": "b699f9e1a3f7da86fc99b46e4a0a66e7ec8c65b522435204cf08e941512b8d81f08aafd6d6afea39af0be01454df836d54aa804cb721231c7795838eb1668e81" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-osx-x64.tar.gz", - "hash": "5d91fbc584f32f4d48dee303c7eb16b38b2e2fab9549bd54293bac28508a6d53f93782ff102266010f8cd8c15c6436a807a7e6efede2e1051fe206957ba73071" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-arm64.exe", - "hash": "1fc51f6f7058ae4af975b4d6236157a28b3e376687b8e42f1ee489258ce5266f53f93e1a0fe84fdef73a3700f76db460649109e9a373dbda55ebc6ab5f89b80e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-arm64.zip", - "hash": "bdfdbb6304c7a768293612f74c880555e281a0631d0b0a3aa5f27709694a5f8319415aad960c821c74919607a7341cb96fcb05b97902d99c66a4651ebd570a15" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-x64.exe", - "hash": "4f6fbed3d79e8f8e782198c92d5a3454e817efd03c656b9cb2e1a11d67627070bd14eb78d7618efed29f5c958649d4e93ea6b6469c2e06f07110882fb63f39c3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-x64.zip", - "hash": "cf00d4746cb063994e1a7a490d1ca29bb78e9c78505a733a4693353febc14e0cfb26775cab57baa7612b74be08ef91224b0d06cfa4eef0b9bf15b2843266a948" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-x86.exe", - "hash": "90941838a7e98b088ba3be19b953e028480ccf417c463a1c3912a77ba814dd67aecebf2c9f9616298f46c50955d75b0645bc0017e7bcfc10a62bedffbb3aec3a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.301/dotnet-sdk-8.0.301-win-x86.zip", - "hash": "43545b42d4daee141e1ffb6895b796c744b5b47e790b7b6e5b303cfc6e484227dc6dbaa2c452f111d1dbb883c5c1ca77020b804dfabd3167ba7e2b6eef7a639f" - } - ] - }, - { - "version": "8.0.206", - "version-display": "8.0.206", - "runtime-version": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-arm.tar.gz", - "hash": "97b8c1fc04d6d9e71777def4ac9e1989b5e03d481df31c924a1101e914ae2bfc38b7e47e14b4647ed384758a76854786b0acadcc35b9feddeafa6f55e7534e03" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-arm64.tar.gz", - "hash": "eb0489785dc5bf824bc3fc1014815ebd371fbc73eb02b63e5a1650bcadb158cab7e909904889f6e198a180a1742976351208a57796ef38a4205c52fb945b7d09" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-musl-arm.tar.gz", - "hash": "14ffc6566dc4da278bb0d5a25dd676c88b1c9bfb6d728d9739237b41d80e85b2797d713482c7db2b061296e7634ff7146a3b9b031cd7858d2f995cde710f20e4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-musl-arm64.tar.gz", - "hash": "1de4f0ee791fe433b1e230c6621c8773921328fdc8fcdbe154e804fcc938374a950ed2c6f60e5cf4ffb26e03b346810d6b661bc544ac33ae2e249a98dacd421f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-musl-x64.tar.gz", - "hash": "9213697221d4ce977a80099f1df68a0e785729910ed3f2a2e44fda0e69ca9c9e08e70642b9975732695fbc5745f3dc862f4ba7cd79088858982e8ec0301189b8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-linux-x64.tar.gz", - "hash": "d03cbb5ea44a6f4957d7c1fa0f7c19e3df2efcbf569b071082e37ac86776af0729540c3bbddc44668ae2eedcfcb4b098883bb560d26418f1583a558d60c99ef5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-osx-arm64.pkg", - "hash": "bc088f424e604b3a2b21a1d279ed79aeb22c8dc1bf3161c0c7abbe324684001fc47703b7a94953fb87295875b73927d921376ba51b6d02dfba9934f4c8e007e6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-osx-arm64.tar.gz", - "hash": "c4a17c17b02d9559e0029328179d22617321e439e9360175f25385d60789f91582a4024ce41690439d85852e4c85f0d0ae20fe818c0f4acf0d7d48ffac2d2b5c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-osx-x64.pkg", - "hash": "cd1fc1e745d4b51725d71f1e451409931cbc750effc425a5b7ee7156b4f5930a5673fec1153f8b8177e177ecd6fc17375e49d64dd2debcc5f5922e76147f86c2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-osx-x64.tar.gz", - "hash": "d7742a0b00c4df835639eeb18f2ae4888ac33d7d7c25d097a8868c5172c878d7df8c5bbd54de9b34f877f07a2dc6c748ea510f783e1842058e8cfd0ad2cda83f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-arm64.exe", - "hash": "7b7663ac4970a987b56187fb7ae0cb8ed1d2e1c35b06bb0bd1e6fa2e57a2926e3e0ab4b01bffb9bd6fc3ae2baafa8d0aef9b54f9fc8a901cef695b683597708d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-arm64.zip", - "hash": "570b597c4d232b6c605f7cd89729d3b0a75071a867b8bb31406830b37dccb95f8e15284c4acbecf3a288484136af5844f16c7aaccd7a158b27502695e3231cc1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-x64.exe", - "hash": "4a28b10b6c73b02e36ed3805009aee54f14d55da7e0485e906ce8291397635066a6ef087491dcf898df1715a439cd3cbd2116ed6210d3b50dd9a5ae0a7f2cd08" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-x64.zip", - "hash": "6d194e3e897074198557fd3f917b60953c82d192497eb0ceb7fd1fad37357c30aee84d1a798f896355c33871c8fbcc621b5a95192dcf701139a9f5f58b0f1b0b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-x86.exe", - "hash": "4a23345a1694c8a9e90873bf5f6357c745fc667d0be5dc20692cb2213a17c8d5fafd0dda6a1662bb66efcff5b13af83da1e83068bb008debefcee152de8b3d88" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.206/dotnet-sdk-8.0.206-win-x86.zip", - "hash": "de9e053901f97b310422875a2c5d03685718a74b7ebe7fb199809cb5993b68dae6272510d806844d8ffc388401241fc9f628653a300e6c87d25666c8b5002fc6" - } - ] - }, - { - "version": "8.0.106", - "version-display": "8.0.106", - "runtime-version": "8.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-arm.tar.gz", - "hash": "ebedfc205f9301890c78c4176d1a6f910890cf224e7ac34fd69f798d663550e36c3a2a057111304aaeecea31bfd496007ebbae4a51f33cd674588f42d8b3df9a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-arm64.tar.gz", - "hash": "e8f735d20d79b20d24ce5b2f7c25c60604cb6b694b6572488c654cbf14a4d99c269f64f4ca23ab78aefaedf14f35a0ae1f33adf6afac5556e2ebd22ec73e04eb" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-musl-arm.tar.gz", - "hash": "0d149ee7d5e3557d631ff96fff06e7bbf01cc80041d9a378cd8633f5304ba8351b3d25f7b889d68ae245329fd9cd86d9475cac5ca3a157e5fd98c18420857edf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-musl-arm64.tar.gz", - "hash": "605fd1210a69fe1e933b64cb0377bda7e7fcfab17854069e252d444431260292d1470dbe645acc68e7ebec52985893497bfde9ba25a03794dbff9987437b2b45" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-musl-x64.tar.gz", - "hash": "ac5cbd009cb29624f6a686fe476ed9a6ad290aa22d9a613f2e14f35076f251e3e3ec6b7b1d1760daf5efff5e2d673654770bb9ab0761326a71dc7e190deb63ab" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-linux-x64.tar.gz", - "hash": "06eecc146b16eef0654fb4fd17faec06c6dc1b7236acc7e4a33e4b13cbea1d725faeb9eda41a0c12e65ec4c89d6624971429ca223638387c66f1d3e4dcd1407b" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-osx-arm64.pkg", - "hash": "78b02895c2ef1151613cf002fb8d91afb17352ca2afb67386ad4c15499bf81ce3160103673458bc5b5ad0de3c80dd6c37e850a93fc613642c4931211b6f9ce23" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-osx-arm64.tar.gz", - "hash": "490c20abc3cf52f76fecf422a6fcc66c98b7500a56986f84e617860a2758f43ddc4b235647837fae69e4c46a9d1ab9177d4bbfe134258797599b69178f6b91f8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-osx-x64.pkg", - "hash": "77902c9beb889fb1c1795ed13e4e3c33ad58b7f62c7bb0d27ab9c8ecea96b1cefd9d79aa2c71c2b46dc234c89dc677a46dbd44234d39f8d188a03566bb4518f8" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-osx-x64.tar.gz", - "hash": "4e6d45b7b1618bdb528a865d1c89e7ec7750f8a73ae7e805675dd9d7d3974f0b19785e743298f0c468144cd7fe9e20e521f65e9fc081b89d8bd9e187b5783c2c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-arm64.exe", - "hash": "9baa1ba45bddd77a17d78a227acb57c4d6cbac2b049d259bd546dcf8a32257a60f529d2fc6524904320be000d2ab1c3af2a63cecbe6f08ef7069cdcef5937080" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-arm64.zip", - "hash": "f7eb2414fda36ff08c62412d31a38fc3c8ecdbf7fcc1bc46400e2cb2c3858f257a1618f356f2e8e66e1b718b5d5142600677c00283d8b8ee657792b3de52750b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-x64.exe", - "hash": "efd894eaa180f73a9192f250d339ca686853ee5fa39c7ad9b05500740d86414f6d7c7cd44cb051f504f608cc7061b2ea20cf7d142d7a23c022bf087ab5548983" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-x64.zip", - "hash": "3232294d0af733659ca8636e48e494a2f52bf6a3fb307cf088ab0cca11c0e59dff1318c11208a700d6a491930b3ec8c373ce8f57516c46dc86e476e1a9cb17f5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-x86.exe", - "hash": "f17bcc8c1cbe167bce1f61481fd7264496ce81d7f8e997ad62e4f541d6a8e12b430781ee002847ffe7cced1d276633d317cddb4700d8ef6583972a5e5c037ee0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.106/dotnet-sdk-8.0.106-win-x86.zip", - "hash": "d27c0e46c165d611c2765b7ecfa9977cc1395c3ae954cf95b16c2741f152df76b5e9f68b3ca86f2a89d21877308e2ce4986305f829c491c848ddb84942536088" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.6", - "version-display": "8.0.6", - "version-aspnetcoremodule": ["18.0.24141.6"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-arm.tar.gz", - "hash": "bc1ee3f85799038e14dc2b28a57ea367b0d837a778add03a23804595156ae333714fa54a13503b173412c082043e6212035fe6238d0914372491e09efb09de62" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-arm64.tar.gz", - "hash": "9ed12847e404a0a4fdd8fca33a9a787c5ac2e6745d23821c7890f731f2f8f5682e7f9166b2764b13b612b08e091c71e13359b68acc11bcf990afdef1d42f6473" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-musl-arm.tar.gz", - "hash": "7b0e39b2f517539f261e4b193e02b991149ab5e520c350fad2463481afde461891b287aeefe642ee6df5fef33df4a639c9f94feceed84ede5980ff3f297dcded" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-musl-arm64.tar.gz", - "hash": "80141d73f84c902c645b906fee34bf27d2bfae4d1905f259b0d89ac00887663301dc6774357b86736bb65f068161358a7db677a30a49fa613c5328b65fa48a3e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-musl-x64.tar.gz", - "hash": "bd5fea6fa65dce16cc3e9879cccb4a684253d40fe6c00e610dd513da2bd3a9f89eed4442fc2a660bf1749fe22fea03a0519291f01a10068376507070105a1d0c" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-linux-x64.tar.gz", - "hash": "16cd54c431d80710a06037f8ea593e04764a80cbaad75e1db4225fbe3e7fce4c4d279f40757b9811e1c092436d2a1ca3be64c74cb190ebf78418a9865992ad12" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-osx-arm64.tar.gz", - "hash": "85d82e90182375ca21326e3d57be0dc5a39d7e64f1a4005950fe21c720f1d1e1615f64030c950fa7a49f6a104f029b9845648cebeb98d48d892aad3309c583c8" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-osx-x64.tar.gz", - "hash": "61786ecd784b83eacfe4dd901bdd55474e52d9da85806b3d52184e8e35a3065b476e574c939f3af491a925bf7f04fdf376c53a25c103a187a7939f4736158297" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-arm64.exe", - "hash": "894e98cfdd9cc7f6beb1f68c756eb474f8004a3e4020de9033d93d7d804c1273f0af77008ace9e972d133c461eabaa7a0502ed545f785a80c590c07ec243bb46" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-arm64.zip", - "hash": "4ee96bbba7308e672a6087e9f37da462c9fa30ff7288ff5e2c852d0af56a5592d3c947ac4072bb48f35064b63e265f4e3e377117b69b72c8345714ff640c1970" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-x64.exe", - "hash": "7bdd420d03e92d8e05a8467649f5a0e64910341e945f3ae6f0ce26dc513b121ce00d4bd8889b043fddd4c6eadffd52a69cd12edb62a661b2b23a886174e4dfc1" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-x64.zip", - "hash": "64eb92e0fa015de55df849d93b8a0afbfa0573cf5b7d5ebb81499aeb586eb2a82d86eee34c7b5bd555a8f819f92e6e1366d7bf98c2aba26d3d6fe8daf875cd67" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-x86.exe", - "hash": "b311bd4ae0a87fbce391005edb1c6b55d4e630e59fa15a7ed510947aaa6bf3ffc2970e833d3a9f9063f5f8af3ffa4cdd5c2da3e0d808990977c0ce6e262f15fa" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-8.0.6-win-x86.zip", - "hash": "9e5ae375d1e7e6d58f62419285a8b087053ccbd997a670538fe11122febcc80a318814cec459044964fae78de95af21e188338ddebc5fb1e35addfcf788b5f2a" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-arm.tar.gz", - "hash": "f7fccfe2b4bde2317efc4954884d780bb9486a5e55bdbb50dadd65eea59681abbe9fdb9565a5ff13935b21fddeda2b2efb380811dbe0974cb39335e04f94d494" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-arm64.tar.gz", - "hash": "2ac853990b44bc1ebfa7ed31c599150f5c7f43b4a84ab7b7a96312ced78222dda93728d42b94b3be4acf763e6d95702b7d27186b51b56db25d39bb8bc745aeec" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-musl-arm.tar.gz", - "hash": "bb91187b837739a7317a946e459bd2fcbe61f0763a196f867c3cb6b9d967cdf6ef30953b43a9bdcc298545dbc88c7a565d0006113f425e08f8d9fbe296de07e8" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-musl-arm64.tar.gz", - "hash": "1ac399561d4c5056ecf9dd8b36ef64704c7de9e8bf92f3c45c54c2cf1fe794421edf18e663d39643746e4abe3fe9a5376578a2887198b166f49155c0d0ced6b6" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-musl-x64.tar.gz", - "hash": "8a8336c331327fdb480a27a45825a1d798733d766bf090b0f9af9ba611d91d73a54ca754c5a5654f860eaaccb8cd8708007576f1da35c32f00bca6a9ed7b308f" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/aspnetcore-runtime-composite-8.0.6-linux-x64.tar.gz", - "hash": "bffc08fb0ec63251d06cf69c95844d19924b139f0417d1a79f729c856fda89610e03b3ed49844f7dd15401c447137f6daf5b26550269a2c0eb0bff253ab234ec" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.6/dotnet-hosting-8.0.6-win.exe", - "hash": "01c4d06e0bb10e69581b67fba6618f003fdbdd6043bab4c58c47b7f8ac25e52ab7bd3e39404f733821fe6083e2462dbca20b2ff948a7abe8fbb4fd2f26956584", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.6", - "version-display": "8.0.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-arm64.exe", - "hash": "26752fac8a17d9c78968fed741faaf364b17815bad2d74d2ba0cd29444fe2f86ed0f85d8e40744b82155a7763c43ab5f399fad426cd7f17a0a6775b5e8a6ec36" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-arm64.zip", - "hash": "e24e53c2bf2fff89f66c66211b4da8718d3ba72eee9f361d47ce79e953c95a5f1edb0939b2bddc1ebc3794a7fff4ff0f1673797e75798742aece9f23b63ecc16" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-x64.exe", - "hash": "91bec94f32609fd194ac47a893cea1466e6ad25a16bbaf39cd6989fa9f09e865ba87669aabfe26cd3c8f2a57296170cc021dc762e238a6c5cb5e843d3df3169f" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-x64.zip", - "hash": "ff7dbe5c53a99b755fb702f24f9a63f7c6fb6d3451cac3f8984632bcd4012072b4a0198535084560ab829271623d31834b7c7e64e051726b1778d9fb6e3070fe" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-x86.exe", - "hash": "8cd87203979b7ca6c191bb5f46f71ade8f00439a564fbe73caa48c8bc0d33701893fff51d0e1c58fcb9cd83cdc420748fb30f4daa221e7417012d136bbd2310f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.6/windowsdesktop-runtime-8.0.6-win-x86.zip", - "hash": "6628d2a82bb69adc698afa52214c5b456b3b4e8ae6a5d45d6f3bd6e67224349b86531fb9d055180608d47f591c331c13c7586dc5ac41571b834bc37335a9ea51" - } - ] - } - }, - { - "release-date": "2024-05-14", - "release-version": "8.0.5", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-30045", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-30045" - }, - { - "cve-id": "CVE-2024-30046", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-30046" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.5/8.0.5.md", - "runtime": { - "version": "8.0.5", - "version-display": "8.0.5", - "vs-version": "17.8.10, 17.9.7", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-arm.tar.gz", - "hash": "84d135e0c18da840f8e5555cf6e8b7d57776ceaccb0aaabeb5c75c54b6b78b3844e09cd9f1ee495caddab52e4b80455423200e23c17cb9ce83bc5df7bd99729e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-arm64.tar.gz", - "hash": "cd6c0ac051c3a8b6f3452a5a93600e664e30b9ba14c33948fbbfc21482fe55a8b16268035dd0725c85189d18c83860ea7a7bc96c87d6a4ee6a6083130c5586c3" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-musl-arm.tar.gz", - "hash": "e0b38b3280a9ed109140776d14be3c8a66b38f66ea266987ab31ef969a0ce79aa2215c83298c24d31bdb2b77016653ec95d3089d81af4a83abb396aa069ab5f8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-musl-arm64.tar.gz", - "hash": "629a3f018c949454e8b0361bf287b7646887844853819e7af0579730a0ea18b9f293dc687ef19ed085c57f758ed0a61083e9de4cd5741d0dd16dfc905ea5f0dc" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-musl-x64.tar.gz", - "hash": "b6c1bc44f068558c26d7a0114147c989f48feb5c43a4dbaf7035825477918e2e20a89b2934b47bfa9518e243147436ce58e6dec666e563c6637c582e00085dd0" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-linux-x64.tar.gz", - "hash": "3efff49feb2e11cb5ec08dcee4e1e8ad92a4d2516b721a98b55ef2ada231cad0c91fd20b71ab5e340047fc837bd02d143449dd32f4f95288f6f659fa6c790eaa" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-osx-arm64.pkg", - "hash": "baefd0f3f7ada4fbd5595d12716bd8cd0c8891e662cabf7106004769fd7dc1af29c9309cea73937b4238e54967d445a46fe78fbdfcd125a69557e10f78aeb319" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-osx-arm64.tar.gz", - "hash": "5401135b8871d85ca6f774958e6a644ef2bf85a88d2358f15c3bdc928b21a700be428efede677d83640085461d000e55a28bfbacdc9f01af0334a6e8b257efbd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-osx-x64.pkg", - "hash": "9ad36d9c9fa33648a9a07dde66173de59dfb1022d8c1a55ed8dbfc1a0187674f9e01189366f495cb217f06d8d130b3d3b60b79c4b7b93e2204d89bcbe08ec615" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-osx-x64.tar.gz", - "hash": "29a8be6dd738d634cc33857dc1f1f6cc2c263177d78eb1c4585c96b5bf568f8f2689f1a30eec728ccb96a2d005049936abbfd44daca1962caf4f6d53325ba42f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-arm64.exe", - "hash": "1f37a83a1e9814da1563dd25b0de6943945c0575936c65d4ad64292dd458558f12e58c38eb29644b9e325f80446c25e5f15e60453edeb67f78e22e88871a9bd3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-arm64.zip", - "hash": "cfad855d8b3abc734d0f38a211b2eaea1ebca529915a15143055d682869b3e3ab5ff60e80f0630a10a5ceb5f865898f1186ab4bbcd689a170d044004a76817d8" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-x64.exe", - "hash": "7bc6e21e4e07fb1b679f38538c28b4c5783570b00ac5f47e162c26abe2fb51193551acbc4f0c44de91359368931a04b7b18c4522a822ed0d3bcfca8b6ae376bb" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-x64.zip", - "hash": "5eee093b005e9120dfe32261436bbc626b53e535276da9314929f1c5248a72a9d5af3b639ff5545d9265b28a6136f535a0e46758c8717297ae3edb2ee67c88ab" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-x86.exe", - "hash": "ff727bdb5e8eeb97ff2c20c6b45cfc297b4938937fdca5d0ce783f07e4a389000de86601d7faae1a1443cfdfd3754444c684fb804b526ea8bf6a5a2468224c3f" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.5/dotnet-runtime-8.0.5-win-x86.zip", - "hash": "a055e4699dcbb17d91afb6ed3c1c9de898a85d6687e19488f13d42c52784138adcc6f2bb18e12dbb6ebc9858ca54a96e7c99d9472c4449e7a42592488935a4ac" - } - ] - }, - "sdk": { - "version": "8.0.300", - "version-display": "8.0.300", - "runtime-version": "8.0.5", - "vs-version": "17.10.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-arm.tar.gz", - "hash": "13fd4818d3cb64dcdbf23748d0e8afcdfb981c1d6f0a8721d41c3794c363dae615612838e0db1050fd8b218ccf8e27a2c97e5a0da61da0d384c008b08c1f066b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-arm64.tar.gz", - "hash": "b38d34afe6d92f63a0e5b6fc37c88fbb5a1c73fba7d8df41d25432b64b2fbc31017198a02209b3d4343d384bc352834b9ee68306307a3f0fe486591dd2f70efd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-arm.tar.gz", - "hash": "768bc41911895272ed8b8629d3ae36ccedb74c9982b94c8bee6575870cdce6bd9ffab26751f48cedd4b3c7921b3fb6d3416364bc4102f61983dd0b18e9aca104" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-arm64.tar.gz", - "hash": "fde1657c8e6be40dd7b140d8253dfb0323826797cdc3ae2217b689598262ac51bee409388f2b21cb499daf0db713ed27034baac92f43c0b529a68c2f8d8ad26d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-x64.tar.gz", - "hash": "87250809f75cbe408ccac9901a213afc54805526a613fbf88fd02a165c56cab5f770730de03d98f6e798e9013e6b98e8b8e31279e251a3c31c2976b89e643fd1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-x64.tar.gz", - "hash": "6ba966801ad3869275469b0f7ee7af0b88b659d018a37b241962335bd95ef6e55cb6741ab77d96a93c68174d30d0c270b48b3cda21b493270b0d6038ee3fe79e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-arm64.pkg", - "hash": "b0e997cdeb9ac320e4ddd57537c4212c89084053544c04db9b18c0aa724260ad6c351b4c4eb3f610667746b6977ac03669df437541bc7c0192a1a2b65781fbfd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-arm64.tar.gz", - "hash": "98a9b56b2795bf6faa848062ed34d917b187eda220db50c8e73de1bfa37244dd68d8c3cbc598b5fc5be4620a2b92724f95d7c13299f8b873fdefe880890a1bbb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-x64.pkg", - "hash": "c82c24dd16c3b87d88dcb2cdb5a63acbf44273902691b29c997798fdc06e281062d91b4b90b1430e35c88c5fc050cf91d29f69a4f40da43f5993f3b47267119b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-x64.tar.gz", - "hash": "12ed6044dad31c65d6894d7e1cf861a6c330c23761fed90ca2fe0c7d2700433fb8b8541c35bb235b044762f5fd33496cd6e92dbd70deeeb7b9e59423d9d49f5e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-arm64.exe", - "hash": "fa4ea87500305183866d27d096c4fa6aa117502f06eae57f963473464887198cb5e5a630f1e0cc55382c48ebc7df93b7d5c94e6180683ef66dfc683174d827ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-arm64.zip", - "hash": "46a3909a070203a499e924c790fc42cbc6c4faf1b83e327ae746306478fb3b2d9eaae5c6492344803ca55c1858677cb7b16b1c6347847e4f680d0ef18b0b4e16" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x64.exe", - "hash": "8f0c9a65095750bd5356871d7fbb123a439e92eb10f4bdb1af894d1e7c3ad087d1bf7706def0bd39cda55f8251f45d245122dd2b19c28fb39e260e9ded735a6c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x64.zip", - "hash": "c287cbd4084d381f715029be2878c2d9a326b47140d3636b1356c01ce28d887550d9629ca4bdb4029d2985955c48a22334bba8e628218e13ec0ae7d0a2c3407b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x86.exe", - "hash": "55bb2077df64c71f06e60512c55a001c2013e05b92d7d93624b888988045638a33639a8b0708a1ae87ed9f17895ccbb87f3fe7bd719c3089f463683c459a3786" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x86.zip", - "hash": "d9956693e6d583b63fa5bd3f2bd570140c993c1c2ad8475c8e6cd43726fe291fbdb96e0177a7d88f511e4a3b75ca35bc2f531c562755f4b36bb06fc1b6579e68" - } - ] - }, - "sdks": [ - { - "version": "8.0.300", - "version-display": "8.0.300", - "runtime-version": "8.0.5", - "vs-version": "17.10.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-arm.tar.gz", - "hash": "13fd4818d3cb64dcdbf23748d0e8afcdfb981c1d6f0a8721d41c3794c363dae615612838e0db1050fd8b218ccf8e27a2c97e5a0da61da0d384c008b08c1f066b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-arm64.tar.gz", - "hash": "b38d34afe6d92f63a0e5b6fc37c88fbb5a1c73fba7d8df41d25432b64b2fbc31017198a02209b3d4343d384bc352834b9ee68306307a3f0fe486591dd2f70efd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-arm.tar.gz", - "hash": "768bc41911895272ed8b8629d3ae36ccedb74c9982b94c8bee6575870cdce6bd9ffab26751f48cedd4b3c7921b3fb6d3416364bc4102f61983dd0b18e9aca104" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-arm64.tar.gz", - "hash": "fde1657c8e6be40dd7b140d8253dfb0323826797cdc3ae2217b689598262ac51bee409388f2b21cb499daf0db713ed27034baac92f43c0b529a68c2f8d8ad26d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-musl-x64.tar.gz", - "hash": "87250809f75cbe408ccac9901a213afc54805526a613fbf88fd02a165c56cab5f770730de03d98f6e798e9013e6b98e8b8e31279e251a3c31c2976b89e643fd1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-linux-x64.tar.gz", - "hash": "6ba966801ad3869275469b0f7ee7af0b88b659d018a37b241962335bd95ef6e55cb6741ab77d96a93c68174d30d0c270b48b3cda21b493270b0d6038ee3fe79e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-arm64.pkg", - "hash": "b0e997cdeb9ac320e4ddd57537c4212c89084053544c04db9b18c0aa724260ad6c351b4c4eb3f610667746b6977ac03669df437541bc7c0192a1a2b65781fbfd" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-arm64.tar.gz", - "hash": "98a9b56b2795bf6faa848062ed34d917b187eda220db50c8e73de1bfa37244dd68d8c3cbc598b5fc5be4620a2b92724f95d7c13299f8b873fdefe880890a1bbb" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-x64.pkg", - "hash": "c82c24dd16c3b87d88dcb2cdb5a63acbf44273902691b29c997798fdc06e281062d91b4b90b1430e35c88c5fc050cf91d29f69a4f40da43f5993f3b47267119b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-osx-x64.tar.gz", - "hash": "12ed6044dad31c65d6894d7e1cf861a6c330c23761fed90ca2fe0c7d2700433fb8b8541c35bb235b044762f5fd33496cd6e92dbd70deeeb7b9e59423d9d49f5e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-arm64.exe", - "hash": "fa4ea87500305183866d27d096c4fa6aa117502f06eae57f963473464887198cb5e5a630f1e0cc55382c48ebc7df93b7d5c94e6180683ef66dfc683174d827ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-arm64.zip", - "hash": "46a3909a070203a499e924c790fc42cbc6c4faf1b83e327ae746306478fb3b2d9eaae5c6492344803ca55c1858677cb7b16b1c6347847e4f680d0ef18b0b4e16" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x64.exe", - "hash": "8f0c9a65095750bd5356871d7fbb123a439e92eb10f4bdb1af894d1e7c3ad087d1bf7706def0bd39cda55f8251f45d245122dd2b19c28fb39e260e9ded735a6c" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x64.zip", - "hash": "c287cbd4084d381f715029be2878c2d9a326b47140d3636b1356c01ce28d887550d9629ca4bdb4029d2985955c48a22334bba8e628218e13ec0ae7d0a2c3407b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x86.exe", - "hash": "55bb2077df64c71f06e60512c55a001c2013e05b92d7d93624b888988045638a33639a8b0708a1ae87ed9f17895ccbb87f3fe7bd719c3089f463683c459a3786" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.300/dotnet-sdk-8.0.300-win-x86.zip", - "hash": "d9956693e6d583b63fa5bd3f2bd570140c993c1c2ad8475c8e6cd43726fe291fbdb96e0177a7d88f511e4a3b75ca35bc2f531c562755f4b36bb06fc1b6579e68" - } - ] - }, - { - "version": "8.0.205", - "version-display": "8.0.205", - "runtime-version": "8.0.5", - "vs-version": "17.9.7", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.9)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-arm.tar.gz", - "hash": "6021c246d4b57adfd27b6b56548e27b59af64e35f585612cffc3298ba4a054ef09c6f78c7906bf541c48d2f7d5699025af6c2e77900acccb46fc86833f0704b0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-arm64.tar.gz", - "hash": "092ce55cc45ab5109c9d991382e7ed7f40bc0281e94766738dbf179d618f03dbf8ba38e43c418a3d5cac0377afc5e5b82a969e36832e386b851f3679a2e988e3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-musl-arm.tar.gz", - "hash": "75e7ac7aa045f9eac46a969ff1afd2304d043cd7e0f8917118153807e0461dd0989b03bbc5a3d47f92eebce5961b8a8ffa10db8726ae3d40c17996d4338d54e0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-musl-arm64.tar.gz", - "hash": "f4c33fc97e14204c54661b64b3339f085fa788b4c65233c5cce1315994b2ade4cde244d3e9968f6d15c27bcda766d1484a691d0303d512e5ad151ac5ea41c0dd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-musl-x64.tar.gz", - "hash": "77cdef96aa55ba41a4e254a932f7dc6cf4abff271ae54b2d9b4fcb0ed9e53196380e02b065c0a5ccc5d8e9eccfdc0d208d661e823590130075fbb3785bef7bae" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-linux-x64.tar.gz", - "hash": "2ec774350ca3192e1c68c9c8ee62d0c089f9bd03fe1aaebb118fbe7625f2e0960f5dbd800ea3f974cc7ac7fba32830f41faec9ee1bae736497ba05d9c7addb59" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-osx-arm64.pkg", - "hash": "b1bd559fcb39458c921a703961d4f4976ddd28eba5329423590379fdf35d1d54fb354231b8fc704b9febb800288501e615c17f024d7e0aa8b5e6dc92e6641530" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-osx-arm64.tar.gz", - "hash": "2792e9b0cd4fd69373022c5e4c17bd128dd8e31db773f51b39c8696f37e72af8c4b67d0c017ee068587c0f664efa8bbd9a0bc4472b072a7897d2ff4ef8fafa58" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-osx-x64.pkg", - "hash": "09bc19b2a418cb523aa368329ee2656e4c717f106b92fb866d214c054b9c7f29ecb120e25029d826f481e35c560ad0c04f90f88e7273c1eb073eb7480b7bc4be" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-osx-x64.tar.gz", - "hash": "15f410ae81027f4537a03a00114873fe9bacf799d5ddc24663fefc3b1d977d237269fef48c80334bcaf7230495f304bb123f310692f880fea8cb8e0072abb4a3" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-arm64.exe", - "hash": "7b20ad0671ad7b3368450f8e3732c2d776a88f8e0034a5c7f41d2ee8bcce956eb5479367f785b3ff092bafd30351581c2c14b6619ef1beef3c29a67201fcd0df" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-arm64.zip", - "hash": "6ffd918887328ffd8784fc0500b9ef4c0cd0ed99a277b3fc2e35de32bff375e1468e5b33d8499faa2a7819ae495dac4dd4f31639a165aee987d5bc42f6d020af" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-x64.exe", - "hash": "52e5efe5e461d655e98d0d0de84df8bb7cc483972155425c86a4441f625dca482cca1ff0a50d4654bd9039cfd4a32733278ee3a62c9bf641c899addb0aa2dee1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-x64.zip", - "hash": "ef286574b5006ddbf96593fbb907854a3e11d8a899c9852507411be277eaca4ad1cc161b02494f4fbcd2fa67572c89fe5b5d2ac80ca854051c61685a15c32740" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-x86.exe", - "hash": "ed8b099760c8862adc45a6b3292a0b59f2e71c2287203732f1c49bac7d5348815c10c1c4612575ce6c08e283ed4c07b1e2dea01687775bb30fbd84182caebbf6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.205/dotnet-sdk-8.0.205-win-x86.zip", - "hash": "65df88641c7731184f3a60bcfcb7c32fd2abec961c099374353fcd6486e6f9852436972c1c88ad21387d28ec690a0161d327b1b3a2f33793b426cc3763c19ad5" - } - ] - }, - { - "version": "8.0.105", - "version-display": "8.0.105", - "runtime-version": "8.0.5", - "vs-version": "17.8.10", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-arm.tar.gz", - "hash": "6aa5adc487b2f5e887a7c91ea9a6d1f948ea5ca6520e93826610c5ea58827f37421bd0ef09ebc0d9e2d3108dcb41aedb51188630df5e1da199e0ab2ee0d6acf8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-arm64.tar.gz", - "hash": "8f04afa385676d2ec879ad22734a4c869d931ba4bc7507d0aa5889561d0230e382598057bdf75792048b28bd9a1c8eb187e80691f603309a46d6c50d71373381" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-musl-arm.tar.gz", - "hash": "b898fadd8b4a4e6a6ec2c3d936d20729dd03f912123fe7b8a40bbee609839ad019a6501a21712ad4e9b6c93d6a1ce5f8c9227f0fb5387edb08a0a8bea44d3c31" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-musl-arm64.tar.gz", - "hash": "ea1cbb3fe35447418f552d51a359a4f133754240aeca91fea8e5ed97dcdd9b01a4cbfeb6354ec1a3f71c7fcdf82000c7f9492c42b66fc69caafd023927e6f658" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-musl-x64.tar.gz", - "hash": "d8a8b2ea25b70139a4ac1356c210221243add6956a946fbc24c7195850624a4f25569e22024188dd718b1ff0fadbf775a6df97f8aa5ec2244159adfd81bb14dc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-linux-x64.tar.gz", - "hash": "60ff271ee7851ff9ab851f9dc3e3d0abc87ac9b982959abfc8f0a3b58301fb6a0ff7b9f07f8df18668e1e8182c688d0d661bb9cb1771a2d40a0015d02009fce8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-osx-arm64.pkg", - "hash": "04b86271a5bb8c949d553a4e76746cb30f4f62969cbedcf77328ceed48eb8df8b74dfa488562ec101dd0d49331b501e925e71eeedcf307966f9df053b6f54608" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-osx-arm64.tar.gz", - "hash": "f910adb274065fef581728e7d043bc3f0c105a939f659865753c11a0dd0b550bdc4c0bc01e2ce6f710efcdebb3966ef138986113f595af4d6a9be8b15008abc6" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-osx-x64.pkg", - "hash": "0e3ab717ad1a9296a8cd3b06dd1de5e619d075ab31e600e2a4366b23cc6fdcda7bcd2244932c8caca106a8f1a74ca698cea62d8f2542df9407c7637bdea38d3d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-osx-x64.tar.gz", - "hash": "052fd0783bd0901876a29b57a0f15e9f9cf859373bf4f3867a8f3e00b4edac5f3814b066be81c76d6bc74a20bd696e4ec65db48dc19703bbb4ee56d60aedd96d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-arm64.exe", - "hash": "5ee260ed89df931d2b427fe92ed69188b2e484965a66fc4896f6e58837f3e49335cdc9791f689b5233bfa3541643feb101d00892484f0dd0a7ce6e27a35a759e" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-arm64.zip", - "hash": "b30705d21c474c762d8c6abe3aa12f3af47a21a3531167e8bf2383645c1ef670240f1a7ea145af4732958386995c09476de4390ed604834d402a6af636ab3f9a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-x64.exe", - "hash": "30d4a88650c0c970587cdd91d117e3ab92d51a1a05801789b6746c936f3cb395c398b6954f66d21b8c388b8a692e1ac8b72b585d17d54404e26d53a6724fa793" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-x64.zip", - "hash": "0530a4d3e4eb67252f8bd193a88bf92c9ec2b07ae22574b98d2ef7a51065d411a930a769a66e04a3d3d75421c1d89e78c6a7a825fbd04381b89e3a62e35f2292" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-x86.exe", - "hash": "7a920048ca5d87a22ae6c6d70349e1997aa1f2809295976f59f186a7bb09b4bfc38ff6f6feda3f184a5ff9df88cd8d6257a22367d5acb6988e17ae7b986808d4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.105/dotnet-sdk-8.0.105-win-x86.zip", - "hash": "315886da57ae01d43a3e4ff4d3f1b5890f1dfe83f537d77753c108d398ee0c663736226b1d93cfa952f4aebe7b6f90bbf41f0a57d7b974dee19e1b21c28d1a4c" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.5", - "version-display": "8.0.5", - "version-aspnetcoremodule": ["18.0.24115.5"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-arm.tar.gz", - "hash": "f648c58794f217ac6faaaf67c17370658445655827d720335e38762541fec808d79aee0f87d0e27a6d3bb525c5a9ebcd3d94243190e7a5c126489f1840cd5373" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-arm64.tar.gz", - "hash": "54ad859a3307a4ccce6aa794df20dab3fc38cb4a8fc9f1c2cb41636d6d19fed1e82f88a0099bdc9f30e08c919ae5653da828ae54b0299291dafcc755575f02db" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-musl-arm.tar.gz", - "hash": "534d395e8d9a82995a190e63ebf971654d7b411285cff823396f598df5eee393d50db5f990b7022f50e53b105807d06df3ce3b4918f843dd105a7fc2ef8cb226" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-musl-arm64.tar.gz", - "hash": "1f3e24565c2b6d0541bb3f919451f4d554ed028e2bfedf8c15bc063f852398ce88f167130438720b82998bfaf7c78f80dae3a8c3e8a87499fc9e18ac606c4eb8" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-musl-x64.tar.gz", - "hash": "46db57d8c204a216027c3737d96e91e421cc39db7f346911d7784c54df57907506af8815a5e0ad4164a7533d000ebf57a27da7fc820c8e0b6c95847c308eb338" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-linux-x64.tar.gz", - "hash": "ffe6a534ed7dffe031e7d687b153f09a743792fad6ddcdf70fcbdbe4564462d5db71a8c9eb52036b817192386ef6a8fc574d995e0cdf572226302e797a6581c4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-osx-arm64.tar.gz", - "hash": "b1a47d2ae3b528f5c32b57e3a03b46d12a14126b9768f9dd5dd979d49dc6543c6aafe55684eae3890ffe6b867aa664805b920ae1514f67cc841b882d5da7c091" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-osx-x64.tar.gz", - "hash": "d214a8b6a60547acb1a7f879e7a82348585b699f714b73b168918ebc60ee580ca5ff973f64e7738063f79dd04f0807bef0d73e90ce42c3b4464b87b768ccd789" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-win-arm64.zip", - "hash": "5eaaf55397bbef263464d81a86b0641a2c69c351c1e1d40452ddd16d711e83d646aacca72ce0cfe9e2da687a83355e832bc18d155a45dd95f2f9c2125a1112ad" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-win-x64.exe", - "hash": "2c1f3088463bf3da70edb6e18412da7cd45baddcaa54f8fc8e1c7ef94cb414b3308b097531a61d68622c977b3db79402ebbf84ae9f45a04412d9056cb0f67027" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-win-x64.zip", - "hash": "c79342e7d56b81e747b97e65f2c1323e70df83ab226152b5c451e48de1b27d1c5f057fd4a013053ea1c52cbb08f94db83f594ded06337e9c9cf4250a2b20d3c3" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-win-x86.exe", - "hash": "171dcf56091ce0cddc31a74e1aaeacd06f7ec3c4ad63293afaf2f9c0af6e41b8e31ea51a69c0be1a910ad32fc19796f2c368a75c6a078e362897477815c48f7e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-8.0.5-win-x86.zip", - "hash": "6191811b8e0b031a882fc3460ce36a380cee9969794ba9a3bd5fc63297691bc7629b61744b0a34958d3882d361b68f74790c396c7dbc7c0faaba0dc418533bef" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-arm.tar.gz", - "hash": "ab616bd512235c9a90aab83bd2c7eac7cea24f40894c7549ff3f39a60cbfe35bbb0f9522d004b0e7f875f6e5ee4ba2d344b141ad6aa18165ef23a7af95bb8eff" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-arm64.tar.gz", - "hash": "e5ea9700bf8b82ec11f9d8a6d6057534375e902b462c417ef7f2072b9865d9d561cc6c6d90859e3196de9862d17970cb47ae6abc1a96ec39e4345792d9551ada" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-musl-arm.tar.gz", - "hash": "d97bdf5c4cd7fc0d168a3abf1ee377515a28002111dec2e1f745da0bdc351edeb00af3d784a1c65738c4a3df346ae039d037e00ae30b21144ef543e71688a96c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-musl-arm64.tar.gz", - "hash": "3d982d42b6f3c46d111d253121d919841d8af747ac0c0ee645a2297998cd9d60415662748b315fe5a3be22bfe44cbb6161bfe14b9777aa03ebbed0dacffbea4f" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-musl-x64.tar.gz", - "hash": "9d1dbb50684ec431fd6c979a57834295bc5aeb561e50aeac9f325b0aea9fa1c35927c458ec783c93863cc42debd87a9771405baff6b99c7faa2b43ab2e6815c5" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/aspnetcore-runtime-composite-8.0.5-linux-x64.tar.gz", - "hash": "5c22f047cce57cea17e189af3305e6b0f8b1aeaff59b471907f99a8e936b9442755edfae015b2b3ca635ee160a8a33cb71cea7e71391a26d04866dbf64339bb6" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.5/dotnet-hosting-8.0.5-win.exe", - "hash": "cf3d170c977acd119cf3a261e88ac51de86f165fde01d4545951a145fbbecd62d9d6a6e2af3630065d982a14b264e10f5980c2de72ef3c6e49097dd4c18e03d0", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.5", - "version-display": "8.0.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-arm64.exe", - "hash": "c57b27abb9cff269ba2aa4ad768be22755ba87f32a7cd14c5919b1839fbcfa0394656c2207e16117e51711f21533b20b115f9fa228d98febe89654419de13b25" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-arm64.zip", - "hash": "a3cc06daa9c96831f9a29b7f4cdb578d9982f51657830571051f04f0fd4b7594ec611e6691c17545e1fd3548254a1284aab312d8690163ef3d358983c084f9a8" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-x64.exe", - "hash": "669610963dfa67d1da4ad84eed34df362455389347c0196bcef003f2fba69a69a71e011f6ed3dfd1b4b196338708f4a95e766520b69cfee2e08a3c435b97d276" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-x64.zip", - "hash": "7be9f81d3d8795bd6eed2b2b78fcf05e364a64063e2dc425bb505df4127105ee1104fc42293947f7835188fb15dd132cbd302e1e1c954a60cf4d0a6c4a432e59" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-x86.exe", - "hash": "609783925795183be3281f5d2963cf52caa8eca9e129f9184a7886a7472020e179d2d269aadc5532cb760091fc4e936a2f05536bb1a46024dabaa25d789528ee" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.5/windowsdesktop-runtime-8.0.5-win-x86.zip", - "hash": "9cdcb60599d9757d20719f9b12f457d0bd3130e1c05c13842509d601044b735ab5516c6c062bb0bca6f6a38de3ae29020719f21daa91a62c9079656af0273e1c" - } - ] - } - }, - { - "release-date": "2024-04-09", - "release-version": "8.0.4", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21409", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21409" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.4/8.0.4.md", - "runtime": { - "version": "8.0.4", - "version-display": "8.0.4", - "vs-version": "17.8.9, 17.9.6", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-arm.tar.gz", - "hash": "4194840a6f1235808d1f1f4ff42046b6f11584c64fca65eb54b65c4dd924400679ae9e1f20efe582dda958f1838c5c125eb72da1d2fdcdd8628dcc20c35c6b88" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-arm64.tar.gz", - "hash": "d11ce8867dc91d9e9b333753cc7b9677204898485d044dfbbfabe5c5eee43091580a11c3029fca4138cfa9576f84e23fc11bcffa44fcaf5c3d8e617a3cd18802" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-musl-arm.tar.gz", - "hash": "bec8b40e30e57a2f761b61d0c1e20202d17b54b1530a592ba0ed6039637aaa1a52e0cca85b0e107d9102cbcbe381b9350f7ad8ec5ad69f194b24eecbeac472ce" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-musl-arm64.tar.gz", - "hash": "335eb00e0b7aaace00bccc199a4bc5b632a9d2b5d8ed5f3db20343e85d897ae06b3302082c05d1f55cfb9688c2a626774fd7bc90527e757e35f7cb455fec31bf" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-musl-x64.tar.gz", - "hash": "a2a4b3baf7f6477f44b88af6b83aa44bbfa2ab9c5b333826153ee956e95b4fd07cff3f95cd0eebf03cffec042576a2a554597753beb0ce0f99d06227a755abaf" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-linux-x64.tar.gz", - "hash": "5c23889d3e6effa85d46c0e1969ce876c686723ae47bddf2cf9c0b1d99affde3f60c04063c2467027aa4163e9a981ef601250a7e8d14ddc6b365c89b24029c80" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-osx-arm64.pkg", - "hash": "6bf136185186a90b6a578ce077b5be3985b177e6af93da901d4e0f5f15d7b648e3d4da5a6559b3149fd96057550475e7651357e714c55b7f1b28665c06c9b591" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-osx-arm64.tar.gz", - "hash": "7aa4ea587348984ca959945a9e52bade7cb9cbcb8c5a32dbcdf0836d2da4148ca68fcf9815b0b274964b5164c9266b1891afc9406c1c7337642f09300efd7649" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-osx-x64.pkg", - "hash": "095c013f513e2c8423fe330e62d29e8a1eba690cb66fd27299159c7298fcc683cf551c332bc0d7bcbb7170095512fccf04c16c9d4a900733066ecdf1123d9ed5" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-osx-x64.tar.gz", - "hash": "bb303991154582e1aee0b4850bec2ed92b5c4253bed08d76da0c9687c90c46c9ddddd7ffb9050fb7a4d8db6be6e8cd552156589679a3a169341a167952d76407" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-arm64.exe", - "hash": "8235b142422f14cbef7cd2da28ffa7aa34df6810475e529e1a0697a927febca62a3087e9ac7f7a8a46bc2264e9c08b4554918adcb4dffd439b06f3b05b70f472" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-arm64.zip", - "hash": "dea648e8bf546c45dbb905d0b873c6fbb4fec4f4ffe45be8285e7da4a95474ca13d6f02e448e5fcf38b780453862785835471cb4e21b210d3fb57fd7908b4f30" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-x64.exe", - "hash": "726435a95141b6c0b96461f6dddee5980677be359027bf9fae87fe4671d33edb528b08e25440573af3ba3591535ef19fc55ca12321bd03ec2f1ba7e824d5190d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-x64.zip", - "hash": "1eec71f0a3f1e48c6393498c914b9b12d89fbf6916a0611e82c9a43cf897957fc19cd4671361bd9d2c771645908e84f47aba2e831e9673e7bdd5a39e09f37c9e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-x86.exe", - "hash": "befd27f851d6008ed4ea694d8a12c74f693ff434d34c29fe6b57a69f0af6ef6c95c134aca3d956ba77fb83f0c69c5ff140c4ca4bba43927d837513c4a26b8a5e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.4/dotnet-runtime-8.0.4-win-x86.zip", - "hash": "e6767785bbabb7a58a002afd78d6d3356f65124fdc0122672062e92c106379d7560dd21b93e836018b52862b8dde4b85d2c84cccafdd32fd71da5252b1cd87c8" - } - ] - }, - "sdk": { - "version": "8.0.204", - "version-display": "8.0.204", - "runtime-version": "8.0.4", - "vs-version": "17.9.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.9)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-arm.tar.gz", - "hash": "45230c8f180209c3b8315a3d9825eaa55d1b1dd2c9b427d038890b17987f9ccf4288f4661263862c4a19231a7657562ee09595d7e09799e38d22138f03c49047" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-arm64.tar.gz", - "hash": "7000b559efe502e9a799e9fccb6bccc2e39eb21331d6cb2be54f389e357436b84f5ccbcc73245df647749ee32d27f7fb8b7737d449312f0db7dd3409f8e12443" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-arm.tar.gz", - "hash": "49ec1d93764da0e726e691365b22545e935b96633175e5cbcc64d57f26c5ac13afdb8b668b7b481e85d31d841c8fc0850266f78589674d7a1d288001a57beaab" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-arm64.tar.gz", - "hash": "07655fcb66f4d2c636efdc6605b20b44f64fec6682fae1a4a83ce9cfc1e3c81a7443a715ff0f46aaac25a0b61d12fc4da3d1fe46d6f74c0e93260f649dccf05e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-x64.tar.gz", - "hash": "fc2f10626e5496aace5363af5d722ee71ae33d1856d76b90b0f4adf4f8898d53aa92cfc6efc765e52b2a0d092eb8e4c2ff15c691f82d7f449bec1fbd407e22a0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-x64.tar.gz", - "hash": "b45d3e3bc039d50764bfbe393b26cc929d93b22d69da74af6d35d4038ebcbc2f8410b047cdd0425c954d245e2594755c9f293c09f1ded3c97d33aebfaf878b5f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-arm64.pkg", - "hash": "edcc44bba3e816b53122128bf73480017381edffc6d510fddc9ce98612c915e8b12b9977d7efd8affc0ea023a1caed0506d9dec0313428180a673325401cd60e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-arm64.tar.gz", - "hash": "db06baa1d076549e393a9a402c03e81834e15641d2b5fdbd5beb7c4a55b5ed979f5e58ac6baa2048bc55a3a7b3aabe0e3c518310c66a17ecd107b7bf0aaaf2b0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-x64.pkg", - "hash": "c3c14809db4836bcc3c649bae78d8e9c94d6d9412c5b280cfdbcf3b6bd5c7f4d97a743e3af7d2f328aefd8ccc3bca2f0bd62f770aa7f0825f4f9482de26f2e32" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-x64.tar.gz", - "hash": "a49c3dc8f364dcf2f88353b80267062b557ef4afff333fa4494e84d01234d38c57619aaf7a3e2cacfb16d066ab1523b6e5953cf864e5e8f411dd38855408bb5d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-arm64.exe", - "hash": "7c5acad71138a17462ed0941f09612d5d55d8ebbdaae41f73a390b59581305c8605cb6eee7819961c80ff311d90d714b4df79fd37e8fbd0fd8408a712514739f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-arm64.zip", - "hash": "cc6afd273a05954906109fba32d3a00804d788d7b7f21d1ce22784699001c434204ab44cf74b6dcd20f5bc9d20f39ad5087123c7af6bdf4a71fd5786807cf7b9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x64.exe", - "hash": "9c3bf9c027131a3ad9f66667c609b19e8846af795fa5a88558b49c6d6011d571aa1faea76f7b6a2dc5f5eb30d9ab5db7a4a9bea2348642b23c9968a4b73f3c11" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x64.zip", - "hash": "17ee61b1addbf9d66455f95f1dc0988c34047928c072d02005eed283db8e64fc6a4e9f04ff1474e152af866c62fd8d51093abe587a6e2d177556d513a6bf4ce3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x86.exe", - "hash": "642cd8f5b171882cae3a019b4c3b25dbe9530ebabc7a673c55c2d989e27db480d76774aa2661b766fe2dec1298a0acc5ca7fa7d73c7d17131183cbac05ac08cd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x86.zip", - "hash": "e90502a3b383375735bd14741d626a94c92f798378cc7d0c38fa7c19ecfe6c4d487e7d6292b8f55ed2d91b62624ae2556cbecdd0ca7a176cd7509ff9ba426006" - } - ] - }, - "sdks": [ - { - "version": "8.0.204", - "version-display": "8.0.204", - "runtime-version": "8.0.4", - "vs-version": "17.9.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.9)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-arm.tar.gz", - "hash": "45230c8f180209c3b8315a3d9825eaa55d1b1dd2c9b427d038890b17987f9ccf4288f4661263862c4a19231a7657562ee09595d7e09799e38d22138f03c49047" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-arm64.tar.gz", - "hash": "7000b559efe502e9a799e9fccb6bccc2e39eb21331d6cb2be54f389e357436b84f5ccbcc73245df647749ee32d27f7fb8b7737d449312f0db7dd3409f8e12443" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-arm.tar.gz", - "hash": "49ec1d93764da0e726e691365b22545e935b96633175e5cbcc64d57f26c5ac13afdb8b668b7b481e85d31d841c8fc0850266f78589674d7a1d288001a57beaab" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-arm64.tar.gz", - "hash": "07655fcb66f4d2c636efdc6605b20b44f64fec6682fae1a4a83ce9cfc1e3c81a7443a715ff0f46aaac25a0b61d12fc4da3d1fe46d6f74c0e93260f649dccf05e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-musl-x64.tar.gz", - "hash": "fc2f10626e5496aace5363af5d722ee71ae33d1856d76b90b0f4adf4f8898d53aa92cfc6efc765e52b2a0d092eb8e4c2ff15c691f82d7f449bec1fbd407e22a0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-linux-x64.tar.gz", - "hash": "b45d3e3bc039d50764bfbe393b26cc929d93b22d69da74af6d35d4038ebcbc2f8410b047cdd0425c954d245e2594755c9f293c09f1ded3c97d33aebfaf878b5f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-arm64.pkg", - "hash": "edcc44bba3e816b53122128bf73480017381edffc6d510fddc9ce98612c915e8b12b9977d7efd8affc0ea023a1caed0506d9dec0313428180a673325401cd60e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-arm64.tar.gz", - "hash": "db06baa1d076549e393a9a402c03e81834e15641d2b5fdbd5beb7c4a55b5ed979f5e58ac6baa2048bc55a3a7b3aabe0e3c518310c66a17ecd107b7bf0aaaf2b0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-x64.pkg", - "hash": "c3c14809db4836bcc3c649bae78d8e9c94d6d9412c5b280cfdbcf3b6bd5c7f4d97a743e3af7d2f328aefd8ccc3bca2f0bd62f770aa7f0825f4f9482de26f2e32" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-osx-x64.tar.gz", - "hash": "a49c3dc8f364dcf2f88353b80267062b557ef4afff333fa4494e84d01234d38c57619aaf7a3e2cacfb16d066ab1523b6e5953cf864e5e8f411dd38855408bb5d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-arm64.exe", - "hash": "7c5acad71138a17462ed0941f09612d5d55d8ebbdaae41f73a390b59581305c8605cb6eee7819961c80ff311d90d714b4df79fd37e8fbd0fd8408a712514739f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-arm64.zip", - "hash": "cc6afd273a05954906109fba32d3a00804d788d7b7f21d1ce22784699001c434204ab44cf74b6dcd20f5bc9d20f39ad5087123c7af6bdf4a71fd5786807cf7b9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x64.exe", - "hash": "9c3bf9c027131a3ad9f66667c609b19e8846af795fa5a88558b49c6d6011d571aa1faea76f7b6a2dc5f5eb30d9ab5db7a4a9bea2348642b23c9968a4b73f3c11" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x64.zip", - "hash": "17ee61b1addbf9d66455f95f1dc0988c34047928c072d02005eed283db8e64fc6a4e9f04ff1474e152af866c62fd8d51093abe587a6e2d177556d513a6bf4ce3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x86.exe", - "hash": "642cd8f5b171882cae3a019b4c3b25dbe9530ebabc7a673c55c2d989e27db480d76774aa2661b766fe2dec1298a0acc5ca7fa7d73c7d17131183cbac05ac08cd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.204/dotnet-sdk-8.0.204-win-x86.zip", - "hash": "e90502a3b383375735bd14741d626a94c92f798378cc7d0c38fa7c19ecfe6c4d487e7d6292b8f55ed2d91b62624ae2556cbecdd0ca7a176cd7509ff9ba426006" - } - ] - }, - { - "version": "8.0.104", - "version-display": "8.0.104", - "runtime-version": "8.0.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-arm.tar.gz", - "hash": "da01189ad5db3af839034cfb245ef4d68e37e45a1e87288b314fc3a4bbcaaa569d463298a527dab20fd4b15afd5c35bab8ffae1f97e021d4b5e939af628e0d7c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-arm64.tar.gz", - "hash": "71f5fb65c88bfd14ebc13c5eec04d08b4f7461d1b9f3f5f08c31351a377e08cd002072a4487bfc2496ac7b4d5ba83c97eb979a5732de394c1a02a4528877002f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-musl-arm.tar.gz", - "hash": "6ad3749e824180fa3232a3e89cbf82ee622a3099872210e5ed029ae4a9c9207b515fd62aa4f6ddd8190df7cb63933f45afac2d0f1b913599c4b158846078c3c7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-musl-arm64.tar.gz", - "hash": "ec9cb0c1c5e6637c5eddfbcc54974022a00a4ce16553199200f6ff708594b3803753602297d29788222e15a3460deb57ab8a9fe9572524591943aef9b399f996" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-musl-x64.tar.gz", - "hash": "8be015e2f18f96838729cd98aa14fd220b8433f23654eaa50cfafd3fb6402137f0586cded12abee8a2d8b1da017c366ab4a2711e5a4d2a6056b272df3aecc0b9" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-linux-x64.tar.gz", - "hash": "cb7b5e509c16a7e27ccfc03b3a217460b9eac151ca973f262f82d4b4a494f7bdff3229e9aee91df1c110582ee8dd3d310dad39528c3bd292c5d9b7746ba3b6fd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-osx-arm64.pkg", - "hash": "08d944e429afa7c58d1a79220eb21adede96abc6f8d93212826ce1b7b5481ba92bf8cc3fff514623ec2c1fc2d3c42e130a1443df3f5429df45c6bd7cd9317a1a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-osx-arm64.tar.gz", - "hash": "376fda994997e3ebbf15cafbc910ff25a71debd2d31d088cf7947f813ff013568f3f47514ec53d2c02a3e3f8432a5ca9344dab3ee07cc0df650761a3dbc6be68" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-osx-x64.pkg", - "hash": "63bb40e9ad2e7f2ebf292ebab7248bc3649a28e30423ebb853db08aafc550573e9374049cfc1691da359e426d3c85f757a98d977a386fe3a5bd25cfb56095279" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-osx-x64.tar.gz", - "hash": "b451731c7fe151316df57d1e6a23129732ebc0dc3dd53479421b881652bd042d5fb9890c2c8e229fc578b3b05542a8e08986955154e590d8c1e274c5821a5666" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-arm64.exe", - "hash": "8eae336c6bd731882f0828a6e916a042494740d710de400be230d3b57516eedc747ea17dd7ed8d785f5fd34207b9df2bca92c78e859bcb23d0fac038dfd2e61f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-arm64.zip", - "hash": "e5f6c1d1224824ce9ff5acc128f4025154ab982021ef15dd2db9868314290d183fb1ab67c2b0431bc54465cfac3a3cc0fb65932905fe52414abfa941f44fd199" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-x64.exe", - "hash": "4486ab02c5d4236fe0646e6b912a5dd53b4a0f05006826e534239c2c84f774c5dad1d08b70b88151dfb06a26bd5991bd68214debde061a6a68a68e0ed90a55f0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-x64.zip", - "hash": "c49378267586d1982682fa89d89afaf9253a674e5dfd58e76b40fc98fe5a3c43570dfa60f8415f587d0b8ba69e3533239ea59a771fe8e81617c6b8229679c0ff" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-x86.exe", - "hash": "1df0685b3472498cd0b5401c100214cac2a928ce19e995a4eec03dd3fd8d85e36c6c550e5ffa490cce319817d89cc43a2fccba1873f63521d21bd573a0f0ddd9" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.104/dotnet-sdk-8.0.104-win-x86.zip", - "hash": "8114344b79fd1887da1e9ec39da0c52ce968293989aa3c1264f0445525a55fcebed53126b8624f8a73115590eadf35ebe443a858b227c84cef59d3b0a9d7d074" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.4", - "version-display": "8.0.4", - "version-aspnetcoremodule": ["18.0.24080.4"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-arm.tar.gz", - "hash": "f9fb78800e47e72498472decb7dc32bf3a22ed4b8b4706e381c86f17d70492d80e2946c4c28e6138aff3b9e9eaeffb6d78a0a856723580d0497abc0e2b4f7e28" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-arm64.tar.gz", - "hash": "0b0b3dffe678211afcaeca5d7e381f2218f156421c79dd06e083b1abd92ceb2b5c04c8a159b7d67b866393b8169de826ede70240226e0164451b329b7d46b570" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-musl-arm.tar.gz", - "hash": "1da42d9a05a5580efd7f4bf32c9b5aa8095131100531dce577074c919099963f14175c921a35131ef8f197fb5fed7970566cc7b9931f1e355bab8e2ccf3d24ee" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-musl-arm64.tar.gz", - "hash": "841e42b4779cba9ebb1d480adb4b18a80f136866979dd3f7afeb6a4e1e1f739caa48dbff661c33417902cf87aec49abb4988fb18f64dde0802d53362feb6ab1d" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-musl-x64.tar.gz", - "hash": "5aed6acd57b212806a24467dc6a432c664d675fbba97433bd4e49cdc836eb7b97be3663308ba24222cca51a59da0fd4771fedb5aee109720386201b60138711d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-linux-x64.tar.gz", - "hash": "8ab281977116bf59a672afe5463bce4433378cc8a67d332c564a012939b7dbdd8756df82a115a5ab93f8186c22700a6dc0272b99a0f484db837da96820c78e79" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-osx-arm64.tar.gz", - "hash": "15e8a7535e0b4d2deeccec32e6373cc2d79fe1156c2490ec263790723c5f660c03a61978826d825a427ebbad02cd0eef12a14e11cb8fcd9744c5ce2ef7176011" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-osx-x64.tar.gz", - "hash": "544257738cd7265a6c3c99e83f331c20c631ee8064e47bd925e37191627223e2f39f19a025360de1f95915bde1a26eede757bea4ffbd115309d186d81d7d6b61" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-win-arm64.zip", - "hash": "fa5b9a34ae3696b36ef68428b2347c18036f02972b94a5f888a57a99599eca0078e4ddc0f4b59356bf609620e47506c035d8c49d87c7b799594aacb31cf2bfa2" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-win-x64.exe", - "hash": "03759701074daa8815fda2a4893a29a9a8fe3532e7500b5351d6eea29ab89b2f50f31dc9b1c2de858cb117c69c8aab152a8568b73c63d074364391f2545712eb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-win-x64.zip", - "hash": "a15fb7c1c7bb1247bb49f4477dfea7e53a168ed624b5a770616165bb22b11727fdad2bbb9448fe6418eddc427da4c56669aea9798bd9e1c6ff95d084010aa44d" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-win-x86.exe", - "hash": "b911dad38fd3437f0d639ee3b06f47c393b9a8f7c7dfb6592a11d32343a5157742892365b5bcc09d2c5c6c5b49551b411aa61108555b83a37ff2cd0a0db42404" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-8.0.4-win-x86.zip", - "hash": "f3625d6f61bf644337ae9006238c753bcdd90fefdc537830d5da0d7f39109beca70273ed78b22312942428ef8c13fcc9458ae970e9071fb45d1e07f985f2cbb4" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-arm.tar.gz", - "hash": "ae75bbea80db5252ee7d469dad58c76cc4890a0ad159b0231cf5666fc30334479d4418483a7699971cc461ce0d0db5df171e5c53f291305057874a6f0f59eb09" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-arm64.tar.gz", - "hash": "3e890c440579db198815cfc4a517f2084417147861c081e5d42670d1f61f83e8aad8b5488e2c84a11cbc67ed9c80582a2371befd53fa3b9b8c3d785bda08c33c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-musl-arm.tar.gz", - "hash": "5da3c453d7da72ea6482e0b9fe01037c293f3b3dc67ed2289856aded9b653795911ef47ea4fee8ab152e42326049e6cc5313e31cf3349b9e5f6f3b09c4ac2dcb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-musl-arm64.tar.gz", - "hash": "fe67e2f4b045df2651deb4ec4984c140d20f12bbc3dea3760e74f45b96bc613a866daaa0784017196339112c6332f1c7dbed472eeab586d78c4b1311b6269c05" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-musl-x64.tar.gz", - "hash": "d7c33772ac805e42ec0f9c90c0f5bbaf26942be1a318fec9ec5532fb73c98f13bfc42b63f9db5d1bbff8fdb0cd802170629709aeb8499856d40e4adebb8f712f" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/aspnetcore-runtime-composite-8.0.4-linux-x64.tar.gz", - "hash": "f77d90648c115f95760c0432611dde62c8cfe32241b82d21a030a57466ef1d89808be9ae7bb8f045278a7a05ada26c596b15980fd3a5f3aef17b4334705f7c5a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.4/dotnet-hosting-8.0.4-win.exe", - "hash": "2ae357f0d8e43c316874455ca56adee4d88081bf828721038527760d860beb3b510eca748aa18ebfc9509cd289b51e84156da388853d644cff308b539b04355c", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.4", - "version-display": "8.0.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-arm64.exe", - "hash": "88a4cc58dbef71a767d6cd0acb8e418f5a49cbcda43b16743db5621de4494dea3cd7bada712c12acdfe555dde7cbe8bec9928db30e6d09f44843c884a275eeb7" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-arm64.zip", - "hash": "0cb2fd99ed33e94a570fa0987fd6547b46148bb4db6cc5f12f2a94713f0540f384cffb122bd960d693d9901a3c2000f5bc51354f190967bc14b480c779fa282e" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x64.exe", - "hash": "8a0b1ab3a774c33f46cd042783cf785c33f2d9e0bdeee4ff8bf96cfa90a2101a5711231840ef93eab101409e7f3f3770d86e1a55bd52709af08d1a6c908cc194" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x64.zip", - "hash": "53edc5cbabab50340fc915b112afe7c25739fcb19b333cdd48339d38f4814cbd2b86dc996e2cce8fc9ab917cb9f8019e5e81f752a435cdccdc45a512332bb1e0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x86.exe", - "hash": "edeee99d70e776e21f84af1e6c63690f43fa5c89d4ac2e3de4e376eede0c8b2aedea8b7c890e1b8e1136d44c8f4a103be68c972b3d6a771b88d4f3adda75e1b5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.4/windowsdesktop-runtime-8.0.4-win-x86.zip", - "hash": "921b24897cffea3ed1c2a828f32efd957117c555fd893c10f697743166bceeb71544acb71839a02e0df41bdbf8edcd891670602f970422aca604cccdc4409d52" - } - ] - } - }, - { - "release-date": "2024-03-12", - "release-version": "8.0.3", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-26190", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-26190" - }, - { - "cve-id": "CVE-2024-21392", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21392" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.3/8.0.3.md", - "runtime": { - "version": "8.0.3", - "version-display": "8.0.3", - "vs-version": "17.8.8, 17.9.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-arm.tar.gz", - "hash": "ff57e94bfeca1c44beef4f960caa9e3600ddab4a75c4df09611a667d95d8aad56f7c8b4b89dd8919a9dacb5a79b90a516e6420d6ce39047f89b9d313d45acc62" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-arm64.tar.gz", - "hash": "a78f51500fe180936152f561b3c2385939053aaeb1c2eba5e1353c6427a57fc1c6de8ffcc398afa0d2051ec696813b7c635917f6f0554028b725c58fda981871" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-musl-arm.tar.gz", - "hash": "2e047f0840ae83a86942452d1b5aa96685d1ec64259d7cfd51b944d05865eb4c32d80fca48ab0b70e651a7b6f9b2d43bf150f0e6ff841e719be28342bc26fcc5" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-musl-arm64.tar.gz", - "hash": "3d464b41b9ba8c1f318295f0628c80c9e3d6c9ff017e24bcf4dcaad740c22d0593d5b47a158aa5b2dc956e14fb6e08d2720695e2416611fef291236ef913cbc6" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-musl-x64.tar.gz", - "hash": "bbed0cf924d103e15d07e069522fc89d921e8d91adccbd4e161345b52fc8bdb26837a18c83d06ccd092d14d3df0e6acbe3b8d348e0825822807a1cbc1c8f549f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-linux-x64.tar.gz", - "hash": "08ad7065abf73d09bd718963bd1277c4736f9d51c7c51849255732db03b59f2321d321235be8be35ca5ef2bbd4f331a0fecaefb48d3e1075659e075bcd1f0169" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-osx-arm64.pkg", - "hash": "4436beb94b2d7b52c0a03e282ea06328d85fe2012fe6bc16d24813e8e7249ba629dcf8f635a467c03e00bb63699730cd93dfdf32d4f9a5335f4333d573bc4029" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-osx-arm64.tar.gz", - "hash": "c70ec1c2f258adc07b585896d5cee6246d8ee5a2f7228c9a52c958c0cad2e6bd8dd6803bfb0c5243635e89dc5a5fac6e32274f1b574b79dc4fd31d69e1aba2cd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-osx-x64.pkg", - "hash": "70b84e73989b4497f971aceb8e4797242b88436b334b9f91ab510d99e7043eee1bda38bf5a8a2c6fedf3b92b0b8c74f2fcff91e894eddb053fdd7d8cf7d23568" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-osx-x64.tar.gz", - "hash": "5ea3f5cbbd9855cb0f305b8b3252e10af03bb0e116ce04f8c764cf5512bbcf7803378ed48cd9fc394e5282761f4137d061a1e2447d2d5cfdf3a2226a2e14a9e8" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-arm64.exe", - "hash": "7e2ac73884a5c11f76c4690ff0b31bcca9b9ddfe9e5dcd91673e38addb2dd6780ac9d11bd3b2d38be63efff4b321ee347c9007c2c3a646e16b884b412a58453f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-arm64.zip", - "hash": "164daedf2d691c41b4e99c98dc3f6631f4490d724c206d1f3cbd6aaefc81bb2355a49fe8a52c4a01fa9a278b910f7249262baaff688a84ff07122e6970472694" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-x64.exe", - "hash": "7aa39c24f01d6ea13f2623a742ed6799ef29a01fbc79f9294aebfc1ed9bf13777da023594456642b278b2a92c67f392264daddfbda60e121104cdbb50ed6cc89" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-x64.zip", - "hash": "b1408b34fa96c0ff197154651910c16ce76bcc3fa042aac2243f46758fb48593a24726e3fc4ccbff608970038b3ab6635a0881ffe083149c1d1ffbb1a2470699" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-x86.exe", - "hash": "fb9100cdb4d3c697a0ed3d77ad23fc28e0ced3a0fd541148c0ca9caeee504ecbb97bc440da237097d48cc03699ce4a29cb89fec3951f826b3013037a0f17dbc1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.3/dotnet-runtime-8.0.3-win-x86.zip", - "hash": "cecf20386c9c3e3ebd00fddaa3421d52fa71eb7081ae4f61be8f881b453839fa89015f0d7ca403225236dc45a17af36c0f74ff1e29a88d09ab91c74b44081e4f" - } - ] - }, - "sdk": { - "version": "8.0.203", - "version-display": "8.0.203", - "runtime-version": "8.0.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-arm.tar.gz", - "hash": "ebebd4f3be6e9772f23d313b991950d6997716fc0f9c079414a72a0f998c55a32ea19f145ea1b1724fea527ca12a7cbea7afefa60a520679a20b99f68f184e15" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-arm64.tar.gz", - "hash": "cda16b2141c1115ec42303d82f2720ddf5368b7242207e21d3fdd81fa89df2676f0d394ca7293c76c35ed2448b289174739771ec447404ad9c84c72459cc0d81" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-arm.tar.gz", - "hash": "4ae716cac29a5381dc6341b2e5214f57c7b82928a0a756a2b3cef7d8063d52a29a66cea10e3ae03e379ec220a833e479f944dc762b3cc44c255a02bb715b84a5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-arm64.tar.gz", - "hash": "33cf09807d9280d3f4a860ea7650f73732c7d86d462a06b6e40e7945d0fc8c6e9c5e799059de86939cd0de88d35afb67d1829150b9fc2e5ccdce0d55d9e771f7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-x64.tar.gz", - "hash": "d2b6d8b411470c1a856d546dea087285dad7adb3b3fc5335b024d6f9054ac869073742c283158294c7b866dbd58dda4d9fa2a2c245fb4618c44ca5a61ddec7da" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-x64.tar.gz", - "hash": "78b1913b54a1a4c9f13cc2864a11540b5fd3bdf4ebb49837483e19c0906a1890f2dfcf173635a1c89714bf735cbcaa01db0f7ae90add5295da69a0638ed5e60e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-arm64.pkg", - "hash": "5f0d6a1b5647edeeb7b61622d7412367f67d2f4664956d2d1266e69c74998098c4d7b8559494580df0bc6556538b04db5fa71f825d16124db8893287b7ba4fa2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-arm64.tar.gz", - "hash": "39fdb91136516f070b5f398b46a7503115493f1cc89d9bee7ea7ee4541ec9d69a4d673d87498e578ebb2cc81df8b062d05c4f7c8be80bc2b113cc61df1157c0d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-x64.pkg", - "hash": "a5d51a665f767869ea020067e150b690e755fae427fea45d548f67282e5fa4e9dc84028c94170b75d67258b7eb1394fcc9d7f6d4b662bbaa1b5c4a203501f019" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-x64.tar.gz", - "hash": "28588e173bcd185a2acaf26f029dc63e238e29027cab0659717549de15ea88c6075fd384b276265b39c4a91f0005dc81417fede62b6f2f81c1a9c5a4a9b0153c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-arm64.exe", - "hash": "d80553c6edc49c7cb1aef9ec88edadcbc7a5eea3195868e611851135d302d1a7657999b0a0808dc2ad0d99d630f974b781c836add27b54de9accce06611adfb4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-arm64.zip", - "hash": "1fd966b968ca2ed4882480a2e6fa09cfe89b706cfd4570e845786801f2889e40d3c1463d4753b59fa565074b673b09ea3c9e06d402713b33f4c6fa220f6eb7fa" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x64.exe", - "hash": "f6f5609134d4006a16b96c2ca3be32acf7492bb7db233690204141a95952077018dc5f1503fd4dedf7ec44253a3427373fa21dab778a3b3d3d3d37df90c11228" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x64.zip", - "hash": "d0f19867f73433b9b30b9dd678ed719163a61defe44db52487e321a3819a55c467073ab98c989fe867f03816411834dc77ba2e939c5ba40f8140b665acf1ce35" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x86.exe", - "hash": "e923d367c83a48aef4334d03cf4de46f41f8f44aa9636a7509793d38e2968138b03d9f23c4218923580b7870a5f56598709a5ddf1546af2ebc911b0c341fafd8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x86.zip", - "hash": "fac438db0bfc77a41ee03b1c4cccfa6d6a31830276a0942b209e2d2f55c98f6f12c55f3ff4b295309a65d0bb8abea8256c40fe6cef13de43fbfe2327b7c3c457" - } - ] - }, - "sdks": [ - { - "version": "8.0.203", - "version-display": "8.0.203", - "runtime-version": "8.0.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-arm.tar.gz", - "hash": "ebebd4f3be6e9772f23d313b991950d6997716fc0f9c079414a72a0f998c55a32ea19f145ea1b1724fea527ca12a7cbea7afefa60a520679a20b99f68f184e15" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-arm64.tar.gz", - "hash": "cda16b2141c1115ec42303d82f2720ddf5368b7242207e21d3fdd81fa89df2676f0d394ca7293c76c35ed2448b289174739771ec447404ad9c84c72459cc0d81" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-arm.tar.gz", - "hash": "4ae716cac29a5381dc6341b2e5214f57c7b82928a0a756a2b3cef7d8063d52a29a66cea10e3ae03e379ec220a833e479f944dc762b3cc44c255a02bb715b84a5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-arm64.tar.gz", - "hash": "33cf09807d9280d3f4a860ea7650f73732c7d86d462a06b6e40e7945d0fc8c6e9c5e799059de86939cd0de88d35afb67d1829150b9fc2e5ccdce0d55d9e771f7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-musl-x64.tar.gz", - "hash": "d2b6d8b411470c1a856d546dea087285dad7adb3b3fc5335b024d6f9054ac869073742c283158294c7b866dbd58dda4d9fa2a2c245fb4618c44ca5a61ddec7da" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-linux-x64.tar.gz", - "hash": "78b1913b54a1a4c9f13cc2864a11540b5fd3bdf4ebb49837483e19c0906a1890f2dfcf173635a1c89714bf735cbcaa01db0f7ae90add5295da69a0638ed5e60e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-arm64.pkg", - "hash": "5f0d6a1b5647edeeb7b61622d7412367f67d2f4664956d2d1266e69c74998098c4d7b8559494580df0bc6556538b04db5fa71f825d16124db8893287b7ba4fa2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-arm64.tar.gz", - "hash": "39fdb91136516f070b5f398b46a7503115493f1cc89d9bee7ea7ee4541ec9d69a4d673d87498e578ebb2cc81df8b062d05c4f7c8be80bc2b113cc61df1157c0d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-x64.pkg", - "hash": "a5d51a665f767869ea020067e150b690e755fae427fea45d548f67282e5fa4e9dc84028c94170b75d67258b7eb1394fcc9d7f6d4b662bbaa1b5c4a203501f019" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-osx-x64.tar.gz", - "hash": "28588e173bcd185a2acaf26f029dc63e238e29027cab0659717549de15ea88c6075fd384b276265b39c4a91f0005dc81417fede62b6f2f81c1a9c5a4a9b0153c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-arm64.exe", - "hash": "d80553c6edc49c7cb1aef9ec88edadcbc7a5eea3195868e611851135d302d1a7657999b0a0808dc2ad0d99d630f974b781c836add27b54de9accce06611adfb4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-arm64.zip", - "hash": "1fd966b968ca2ed4882480a2e6fa09cfe89b706cfd4570e845786801f2889e40d3c1463d4753b59fa565074b673b09ea3c9e06d402713b33f4c6fa220f6eb7fa" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x64.exe", - "hash": "f6f5609134d4006a16b96c2ca3be32acf7492bb7db233690204141a95952077018dc5f1503fd4dedf7ec44253a3427373fa21dab778a3b3d3d3d37df90c11228" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x64.zip", - "hash": "d0f19867f73433b9b30b9dd678ed719163a61defe44db52487e321a3819a55c467073ab98c989fe867f03816411834dc77ba2e939c5ba40f8140b665acf1ce35" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x86.exe", - "hash": "e923d367c83a48aef4334d03cf4de46f41f8f44aa9636a7509793d38e2968138b03d9f23c4218923580b7870a5f56598709a5ddf1546af2ebc911b0c341fafd8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.203/dotnet-sdk-8.0.203-win-x86.zip", - "hash": "fac438db0bfc77a41ee03b1c4cccfa6d6a31830276a0942b209e2d2f55c98f6f12c55f3ff4b295309a65d0bb8abea8256c40fe6cef13de43fbfe2327b7c3c457" - } - ] - }, - { - "version": "8.0.202", - "version-display": "8.0.202", - "runtime-version": "8.0.3", - "vs-version": "17.9.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.9)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-arm.tar.gz", - "hash": "8cc8be3cad5c3e12ea8293e7b2e2d66647ff01fcf1d390791350a55e13f4c5e74a673dac85918e878b25f61eda690da5c7af7c2d289d6f4d0277476b43366961" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-arm64.tar.gz", - "hash": "83ba9a467487de49bb38d388010c3f0d51336e6167cf3e116e56cd18b0ffd3d52099f8567bc434ce02430beef38dee20ff1e4ceb71a6d7967fc0e1c2da12ebae" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-musl-arm.tar.gz", - "hash": "7c96bad8f5cef25b499ace592536b85b264d66e5da15850b314035995ac6a157507e2744ff8207ea9db99cede9ea9773994a1319d488e8ec26a0f9edf7ea10a4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-musl-arm64.tar.gz", - "hash": "f5d1f025d18062247e7c392903c012b5e7f625609cff19d9eac81755065fc468a1d66b0396492258257bf42a88a07e40a040d0cb296bed620d326f58e2cd69cd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-musl-x64.tar.gz", - "hash": "809d8e488723e7be053cf572222b0d81ea7dd10a5034617f044bd0c752f6eaa14034c2d13f093a06d64af6b5b5cc65efb5d9fbb9de8edd00d215cc8e9f26a587" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-linux-x64.tar.gz", - "hash": "e0e790c7cc6f8129913317d326c599ff8e8ed4927d4e0adccbe55c50be5c353fe3d83043e529973ced2b302b8432c2ab31533b94ffe9c363eaa9964a7160643a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-osx-arm64.pkg", - "hash": "a350e88e410acb63ec6d963389db430a476ce4eb6636354d22760aec58a945876494eaed525726963c6695b105c85955a185fc52e1d95aba67273601aa3b1014" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-osx-arm64.tar.gz", - "hash": "cb140f98fee85802db2540b0a97bf5ffd3bdc871f4d88bd36d7c66491c9961da43bc08162dc43bfb8ef942f0d19dc70f1c92b22b55d1bead2fc757faab6d423d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-osx-x64.pkg", - "hash": "91f9b2476d8633a29469f44c1862419760f5bf0679ad391a89dc14a6308826ba0cb404bff9c1df2a4e34f1d6a825b5a43589249a50282cae697d247224e7ef4c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-osx-x64.tar.gz", - "hash": "0682ef3fa7f31f49c85e8e31313e957cd51b5175e7857f25462a7ab5efbd53debda21963aab17fbcd100addc9deaedb0b43d7ff62ad157370ddf1307cb82346b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-arm64.exe", - "hash": "a4657930d06a1b02bec7b50544ba1de557d8c29cd5093648487ae7cf0c207b534f5d3a66d487084ed40975f60b630365e49174e5017d72185ca3c981e7e454d4" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-arm64.zip", - "hash": "ffd8f797352abee1239dd788186ef5dcead73238aa4f6830a85e685d48b418840c12f5c018e4f1b42ab4fb93fbff9d511604d20933e88a57e292e09210b8c339" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-x64.exe", - "hash": "2a9fdc8b7559757eb5eccc1d0e3fe3832f744071aa6d49508c8b62c7ac79bdecba7d3c4ebffbfbbe08ab262183516e8bcfa4236d77a3aff56f210dc223a43326" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-x64.zip", - "hash": "826db1c5c0d70cc53f12421af3e0fbe2ee682629f979c9db5ddeef3b53e945e013b20919e4abf791c096a2426c90717647f761bdd82e00505eedb6d94e0b75c3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-x86.exe", - "hash": "934fcfb4b4f01222bf126085db1bccaa1aee956bb3d745f72703a90787845d91d6f8a20a50b3326a5d342eb407d83b3abf183b0fe3e79870264c9474584589c0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.202/dotnet-sdk-8.0.202-win-x86.zip", - "hash": "440e7868dbbaf9f61c70389b33a95a4bbc9583afc1ea48bfde7baa3d08cdc885282800819ab50562528a78812cf89efad2fa3baa0a7e327741ac6f6349b41249" - } - ] - }, - { - "version": "8.0.103", - "version-display": "8.0.103", - "runtime-version": "8.0.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-arm.tar.gz", - "hash": "67c45000d1a044266787cb144bd5b0afe92ce20348dfe1f72ab277cebc4fe5b44d107872904f0d11b3c622b6d0969a1c4f23ab8223fa2431cb9cb284bddc0af6" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-arm64.tar.gz", - "hash": "486c6dfd0c37771422fddaec155950663e79bf2afca085ffde68e2af20e42bcac1bcbf0d95dcc0df9469e643a7f81813ab828afa114d5f715057d2a3895e531b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-musl-arm.tar.gz", - "hash": "83cef7d126034034331baca68d96b5fe892940ac80f9dc4451252cc74f3d281c67d1422f8d767759a566e1ff386c2cecc86f4e32b62c5928ec603d1919b7e058" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-musl-arm64.tar.gz", - "hash": "3c83259178a053d1b12dfd296dac8981fce30f773e7dc59062bfc0491e76d2537d85419a890ba3658bfd70554e0591270bc920995de2959397e6446e801c4956" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-musl-x64.tar.gz", - "hash": "4792107d445e8b9c8480f3771f0c4697a119586c55d05a8814e4ee97459bad8042f649a1719a37c7772f6707bae70e33477112d7b7ebb035c04866b6635e1dd8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-linux-x64.tar.gz", - "hash": "5894942d53ff9acaacde589e6a761bd170f06b696cac465b2dc62b741bf9d9a635721ef4e7fe9477c52ff22feabc928bd8cbcd167a9ea92a6bf6a362c8b63daf" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-osx-arm64.pkg", - "hash": "12ab8409b74038d5a79118343dcea926e428ee687d556693d8adfba9b684a1f39ac286c2bc822d66c5b78ec3a76ebd98f7ee255c1e3bb7517a6f0e03566584d0" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-osx-arm64.tar.gz", - "hash": "cdfe17109e0b55777e2ed95e9a538bed67ca532edb0e56eb1c52cbb53eec73959141a9f744c1c1a6c5f9e2863d2f845296b65afa94c726c1a7b3274bda869a65" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-osx-x64.pkg", - "hash": "852b7fad83d68a5abf2f8aeed1ad04092ac628a326810b44e7f2f6ee6b78da99e945d206499858e19f0abdadb91d7b78277be4bf709ddd0a77a3c3abcf1de006" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-osx-x64.tar.gz", - "hash": "86174aee177e039751a5dbd019ed95e4cb56389c9725902c513e5f50fbf2d89cdcb113173a8f9de9bab844c70e1986b3bc3acf8f22402e09473af413df657a3c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-arm64.exe", - "hash": "b5ccc5ad27f315721610c2c554a889cc7b08d0b4949d2d1f9e9495c286e82301d33a894de0b202f626a22f43bdcc7f2f3dd4e1a8cfa051539f6dd2abe795e775" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-arm64.zip", - "hash": "82f2041c1dabdd738eefbb013111548b5d91d883d447095d9cc5e64a8822b1da2dfd6e329eeb69b4710c085ca66cbeba5e89de7760b17b13dbef76f5e3a43a7c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-x64.exe", - "hash": "471a8193a83a507aae3df439039ce6d126906e077cc1c57a265f47c6b8439544e1c4b7e9515f0fad0eb2bba96a909d03f41976ad4cbf98dcbfea311d553a7ead" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-x64.zip", - "hash": "02a344f1bb73a46a9f1f1c8579c1e3de005f0890920d6425edc59b8e250f1612b089584307af0a16beb660be7c252e05ab1cfdf773959574e0e2094dbde277fd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-x86.exe", - "hash": "489aed32490f869127b71fa157ddb39639f353bb53d082629247e57bfdc351c9b6060a4d0f6ac30eb0ad332e278fb34e03c35b2e9fc075eb6fce6e4eb9e62997" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.103/dotnet-sdk-8.0.103-win-x86.zip", - "hash": "403b9cc516656ff736a897772a39b9606b90f54eead64ad7542aa31d90ba44a1f6da7a4ad5a189740353469fc7e71dfa107168c6ffc0a544c654333ba10e8908" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.3", - "version-display": "8.0.3", - "version-aspnetcoremodule": ["18.0.24047.3"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-arm.tar.gz", - "hash": "a7853f77615d37151fd59dfd4916fc7794bc4d83b0cbced85b857f501dcd883ec681b303e8d2fac438e06a9e90f4cee9f68aede64d59b033d2f08144839a04af" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-arm64.tar.gz", - "hash": "2ddf440be273febae8049df9b2837fe9b9d95d43a31898b915dbf39aedaf15a291ff28711e983fe099ab22a291ad244813256d57ebb6ef1fb94f04d712a96435" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-musl-arm.tar.gz", - "hash": "f3e55caaec7edd9afdea587a8e6f00fbb62d3491cee23fae415d4bb3e7c4aa4b8257ec24f56baca8a1319a9a2072880aaba0fcce6125a1645058eb3ea9aafc38" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-musl-arm64.tar.gz", - "hash": "6a658818999428ab40616cec032bb58d0fd04567d255d84bef6b1d57fde4186b0e2e0633c45ad229cb9a2c2e7cc30b6980fd9eaaf464cdd73ccc38d35247a469" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-musl-x64.tar.gz", - "hash": "438ed9f5fef9cc63bae18f52af4209a80d8265ef6f9c7b92661e5276538b76163a79e6c59f5fe3d40133e8cdbed7ba50135ce365194358f4abe9df9231a124a5" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-linux-x64.tar.gz", - "hash": "73a16e08402989f25ca780acc981c2ae3a41ef39b4bb6b6b4962053144b6eda7c175fdd5ee3c25bcd0c86a27d1a83d4f8b9b2f69f37d4e3972f5901a9e0600b6" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-osx-arm64.tar.gz", - "hash": "06fddde704006f92eb3be4bfc95efb9971d54c24038dd739a78ebc2af2e71ca97202350211b53f82f23a4e3ca37ae89d23fb56bf64b5d58d404e7a153c17ded1" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-osx-x64.tar.gz", - "hash": "b9c4ecddbaa20aa707e7fd817895823d42211fc34b44146a2a994cbee1837ea0a2d3d5d5a84318039de0a0ed51af3249d11b2b31904e54b86114bceb05b31f0b" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-win-arm64.zip", - "hash": "b247ea3eda27fd3f8d0b4b10507dc415d4aa30de8f370cb57e1fd66d2dd8c456c145339baef57e81716e32580e073952d4fb34426780fa3bb642e98db8d31654" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-win-x64.exe", - "hash": "ced75c39c5a2147525eebfd0977f6e7d774b7ea31d377937a6237dcf8b3f75c1b12b9b5137afcb1d1705bcafd9432ac0a60cb2f65fc1753d52d6eac080d0869e" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-win-x64.zip", - "hash": "b5ca9e2c03a57f52ff6de957eb5e933da8d2eb946039d81ed439211c803fcc451b8e9822c3305e3d5caa05bcd77885c538768be0d0b1625291115856a3a100b3" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-win-x86.exe", - "hash": "16f0226043d4ce4a47538f495cd77363273c7286b1be518b6b32ad0e2ca3cbe268b4cfb3fb43ed4a9d3a9176b1986a399fbaed7f6c432149f2d16c67105449d4" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-8.0.3-win-x86.zip", - "hash": "a85e76f85acd6c7cfe3007eb30042b1eeffecef947f9627c29ba78dbfe9466ca4151047b57e0ce718a62f03785c74fbffb46b245dbc40fabe17b6ca695e4dc64" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-arm.tar.gz", - "hash": "b71d040c9e7ab63df4e7b3c6d2396ea270a3cc3698676cee9c60cb869a355c013ec96830d2cd1315668d97fdc565d63015e024e1a377052f6fe12d5c9fb8c13e" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-arm64.tar.gz", - "hash": "e2903e3da3164d4e3d4e2f5d8202d537d79e852f382d07cd3c69cb478bdc9fcde70a482ad25002b2fba2645a2eeaa6317ca4facaacf6f49c9a0e25af41e2f740" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-musl-arm.tar.gz", - "hash": "ccb308ec8f68ef4935f9141589f59047065802bdbcec2ca8d92b0a87c8c5138639200b71d0eac15c1edb6ee99fea408b84c1d9e61798184bff5d832f5bb4f9f2" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-musl-arm64.tar.gz", - "hash": "5e59fc334b82502153f24a82d03bd424d370f9a4362b745716ccd5a4741d853b284448f33730bdc55f7f04acd9942372a4781540b95316a90ce67c51ddb63449" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-musl-x64.tar.gz", - "hash": "0b581d81d16b9ca9064bf784515ce392403a8eb9b092e488686f33eeaae17be9d1dc5ffd543cb1fdf566a123fef1f71dfa8e8c67eb8ee144a25aa4a75f6813a2" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/aspnetcore-runtime-composite-8.0.3-linux-x64.tar.gz", - "hash": "d80104dc94afd909d424718702bdabf6d575cd24c4b6f68b83d55f6727c1c06ce5ca40a22bd7f3e7172dbea4ecaf501e44823db25cd8bc55e86768a854bd7b1a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.3/dotnet-hosting-8.0.3-win.exe", - "hash": "3fcc362d95527207f249716bc459ae4dc1ac169cc43e1cadc35ced56df1b90c755f27988861b9a2a079e435b02cb316653ea8eb54a666d34b96c54f4fac028eb", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.3", - "version-display": "8.0.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-arm64.exe", - "hash": "97e5ad8ae1e6418476a8f972f5c1365aeda826e2cf883ee145a5c3a9090a747e6e53a1388d1962aeafbe35f779b3e970b1be02e625b4445d1b41af4b4400cc62" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-arm64.zip", - "hash": "5c0c483d941cad946683c2a901bd03f91802f7fb176876aa626dd5a14666e9a28c81946908fdf843105c632b4589fb98d04ec54fb6c03fba8570ac8b01d50eed" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x64.exe", - "hash": "f4cf0300eb4e1750b75a9d973db2d100cd8fb244ef0c7bc5ab448dcc72091055c516d7fe6ea41215bdccec13fc08c5b3c444400c74b214af7f996e5780275f08" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x64.zip", - "hash": "6ae793f57dc5c250399daa20c944e67d58b2348e3818f2f2ed2d78d665f6771b81d10aaf069d28867c1c8d14ac73df6d42ea884c981286458f0be29bbe384fc7" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x86.exe", - "hash": "b9b14552661f35b173c1539ffb422f31b13926dcd0d7aeba5283a467288f4db288f6afeede2fe3e57ed7d3ef3847dba7bd2725b8791396a0633dd14d957b1d34" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.3/windowsdesktop-runtime-8.0.3-win-x86.zip", - "hash": "186c83e41ea4859a612ff86bc2dc995722cdcbe04cd48343a7fe4b39927ad4f7852bfdcd468161f34da92943f20cba80ffccf9884aa7a14b7bfbdba26801bcf5" - } - ] - } - }, - { - "release-date": "2024-02-13", - "release-version": "8.0.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-21386", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21386" - }, - { - "cve-id": "CVE-2024-21404", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21404" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.2/8.0.2.md", - "runtime": { - "version": "8.0.2", - "version-display": "8.0.2", - "vs-version": "17.8.7, 17.9.0", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-arm.tar.gz", - "hash": "ee03411c04ab240b6356a6fcbe66948d688a90afdade6dc2b0229d9ab3b2df851a66211a2bfb3a5c142e7256fcc04412b64bec8794c1e9117dc2f9babd01adf5" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-arm64.tar.gz", - "hash": "12c5f49b7bd63d73cae57949e1520eaebc47732f559f68199ecd3bcca597f2da702352313a20aa100c667ede1d701dc6822f7a4eee9063d1c73d1f451ed832ac" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-musl-arm.tar.gz", - "hash": "73244d5b97695060eab975d620deb9d438b8e299348483f29e9f1964b611886b5d4fc46900fba941ac5e952d8ef948645e6550ad74e3c802a4ac38213824fd6e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-musl-arm64.tar.gz", - "hash": "0b91b9bb9c8932a86ce4d84c6ecce623192ccf20b5243ce8aaaa837f92c6352b112e183efc9877fd883d072696be8b6ccb106430d88fdf044ae555d481d45319" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-musl-x64.tar.gz", - "hash": "a585682ccc94de1eece4fd61f01eac99bb735ebc59faee6358022a9fe383124c68ea3ea166eee26edf21349ddc289ed81ffa46f815a7731a6c5c0ba9f37b9aff" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-linux-x64.tar.gz", - "hash": "f30f72f55b9e97e36107f920e932477183867726a963ea0d4d151f291981877ba253a7175614c60b386b6a37f9192d97d7402dafdad2529369f512698cb9d1dd" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-osx-arm64.pkg", - "hash": "51925aca346e566ccb09ad581579e7a6c53ebed0bf572252275e0cd363836fbea0df89e75283e6afe2c335b61ec2bc21d86a093b5f6308750750741fe9436622" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-osx-arm64.tar.gz", - "hash": "c410f56283f0d51484d26755349a7b62364e2c54650c87dcee6fea0a370fa84b14b4ebc8c5e121e2b3ea4f0ac2880ebe40a43bcb02aa30ce360fd0dbc12fbfbb" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-osx-x64.pkg", - "hash": "59a673c4de17f658d91c61a55ad0fb7ddd8014fdbda646930d874b1e4f1eeaf76025342a7084ba5058bc581d066af6468d3eabf8f87612a1d8b391888dd58a4a" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-osx-x64.tar.gz", - "hash": "e8945057f5fdf55994675caeff07ff53ba96324edbfe148ea60f58c883548be59cd1d891552b55ed5a594c1cfa549bd783ce9e25b5467ae48ab3f97590f36003" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-arm64.exe", - "hash": "63a8456c1ba1296eceb9b2209ff9591a70e2f86f3a7f118f15a37f7cd211019c19bb3fe4d2be7fdef964185d40a87070326e2c7ad0c6933a5010a0ca73f572b7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-arm64.zip", - "hash": "5c1945bd6675afbfee837dff510d195676df579724014a6381911761cef8a1e4e6b190e7a96edb73b166b175b3d56f92ab412ea0cb544de7d1193bc564171987" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-x64.exe", - "hash": "69e15dbbc9a85eab07e25960a6dfc35f88224d9a501ab4f1e5e2ff9f41fc825863160a52e01d30aff3ba8a196f8f5ab7f5e9c975f2ff27f38ef85fad02b4d97e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-x64.zip", - "hash": "d2a927dafece90f200957eeb1dd00f86799bbe06dff01feda9bb5e63a12ebe8bc4c2a1861506f83a37179ce5d96aa59367f0425c4b68acc4112dccdda908b393" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-x86.exe", - "hash": "18d2e81e0ce1770a72dd8c8106811050792cfe2bec1480af7c710d1920857d2c1281ba08632da668fbe4829d24454595f994520307aa0b460a583bfde2eeef2c" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.2/dotnet-runtime-8.0.2-win-x86.zip", - "hash": "60a0e8ded65593ad481da65c8cdff421838b60b7f007ccff4d00395684a2cb458b9ef0db55cb1486269c4545a633e51421691bf23db8877986570fe2de0cda90" - } - ] - }, - "sdk": { - "version": "8.0.201", - "version-display": "8.0.201", - "runtime-version": "8.0.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-arm.tar.gz", - "hash": "92760c4a4f3bf559daa41b8b87d7f10995aa5ae11783af053d854e8b9e8b042cf6e984bda40490aff051e4463f7cc8ed25d905090e5cee029c81afdb7f8b32c2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-arm64.tar.gz", - "hash": "37e230970cfeffdc3873e42595b79ecdf6bfe266a01ace6953725e69a2b64313ce144bf4d4f861130f61f680ead9b4d8a819dd5543c5470c37bbc13d88a78c80" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-arm.tar.gz", - "hash": "687e3ad0ba66825f3dd5b83ca6decd8a09b16eafb5a8c58fdcb7118b306b699f870393a0cd3d163c98deaad2f38f2d7df4c96678537b1e49b73b421073e14aed" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-arm64.tar.gz", - "hash": "4a7c7dec45239a3ecbbb88dd4dc43b2ea66b016a974ebbbbe8960885d6118a0310679c2ced8f27ba5963311fedcce29ad31b0e43a20a01225778d8b6a1fe6e8c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-x64.tar.gz", - "hash": "06483d787d1cc0633ed94175747a90fded1bbbb4744f82db003f691b291da112d47e27350e5051cb7f413b913a44611f21dfaa5556c798a95f64b5026e9b4923" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-x64.tar.gz", - "hash": "310cf54f595698435b533931b12f86d49f89d27243cf7c87a5b926e0c676b80e869aa58aaff17b5095536c432f377c67d92bf0ca8941b9d891d4b3879637d488" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-arm64.pkg", - "hash": "0d70bca738988ea688104eb5eeb9417c6dcb607077a21220a1360bc54465f225c6c440b329d4932227c5c2b08796a305e18f97585377d36669fdd226c98ad18a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-arm64.tar.gz", - "hash": "7457d5413dfee375d9e418707ebd726ff8ca9dbb7c34476e9fe33fd77962fbed5827bcbcc6d7978e918faf58a4e2470456b7383df6c0e47ed3b49d00b563611e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-x64.pkg", - "hash": "e7c2e9c1a6ad7d9ebb4c6f994dab7684ab17d72e3faeac08e62bd90faa85a47d51e1bde73750c1f17fbf7e810b43a2b693ddb2a65c288e2f1d3b1a01a261d7da" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-x64.tar.gz", - "hash": "254e578bae6150f194ec9e7d5cfe8a8cbaf048dedafd78afdb421cb0cae22364d21742eb2d11619a8330974739256d45a5d477483a1f82129acc3d12c6805767" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-arm64.exe", - "hash": "216e1485e95cc50cca23585169cd35df0fff55f54288c0b7f88c686f9cedfa3b16e9db0e9ae9c30ab725c676f38f4c1528182263545866312e5f431260e854f0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-arm64.zip", - "hash": "28f29033f2dec660846aab3684d9c20339cd63bd98f550786b24c3cd8515112042982e50bbc31192c8636859a9a2412f00cfe6d81c60b7d00a8a736c2d16bc06" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x64.exe", - "hash": "788228ffc0e97105f12d32cc96645ae3f7111865e16b01a34f9bd7a574a7a7fca4d9b29eb44fb85074f467b8b01e75455a51ce24f2b73055e95dc55bae00247a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x64.zip", - "hash": "73f27fc52d41ce652908d2b4133cb22a9e77691576fb16ebe5e283bee5fd7acbf5b70f54328a61da358cb04981aaef0d9ebb715285fbcee8666dd1151d7912a2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x86.exe", - "hash": "5cb0afbd33ddce5ac6042348b59ee006897011c22349e887167fd8be20a84da817ee7c73c1efc94fcbd4528823793107e87fdedd07c7a8eed05a4b6a056c094a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x86.zip", - "hash": "6f40d27ddae36b313f0a750052b2b8ac9de276a24eff7f136f261e14e5ccffa1b0c863aaea4ff79966e6114a4a2b79b32ce4efdcb24fd9e02b7d4566e239debe" - } - ] - }, - "sdks": [ - { - "version": "8.0.201", - "version-display": "8.0.201", - "runtime-version": "8.0.2", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-arm.tar.gz", - "hash": "92760c4a4f3bf559daa41b8b87d7f10995aa5ae11783af053d854e8b9e8b042cf6e984bda40490aff051e4463f7cc8ed25d905090e5cee029c81afdb7f8b32c2" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-arm64.tar.gz", - "hash": "37e230970cfeffdc3873e42595b79ecdf6bfe266a01ace6953725e69a2b64313ce144bf4d4f861130f61f680ead9b4d8a819dd5543c5470c37bbc13d88a78c80" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-arm.tar.gz", - "hash": "687e3ad0ba66825f3dd5b83ca6decd8a09b16eafb5a8c58fdcb7118b306b699f870393a0cd3d163c98deaad2f38f2d7df4c96678537b1e49b73b421073e14aed" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-arm64.tar.gz", - "hash": "4a7c7dec45239a3ecbbb88dd4dc43b2ea66b016a974ebbbbe8960885d6118a0310679c2ced8f27ba5963311fedcce29ad31b0e43a20a01225778d8b6a1fe6e8c" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-musl-x64.tar.gz", - "hash": "06483d787d1cc0633ed94175747a90fded1bbbb4744f82db003f691b291da112d47e27350e5051cb7f413b913a44611f21dfaa5556c798a95f64b5026e9b4923" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-linux-x64.tar.gz", - "hash": "310cf54f595698435b533931b12f86d49f89d27243cf7c87a5b926e0c676b80e869aa58aaff17b5095536c432f377c67d92bf0ca8941b9d891d4b3879637d488" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-arm64.pkg", - "hash": "0d70bca738988ea688104eb5eeb9417c6dcb607077a21220a1360bc54465f225c6c440b329d4932227c5c2b08796a305e18f97585377d36669fdd226c98ad18a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-arm64.tar.gz", - "hash": "7457d5413dfee375d9e418707ebd726ff8ca9dbb7c34476e9fe33fd77962fbed5827bcbcc6d7978e918faf58a4e2470456b7383df6c0e47ed3b49d00b563611e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-x64.pkg", - "hash": "e7c2e9c1a6ad7d9ebb4c6f994dab7684ab17d72e3faeac08e62bd90faa85a47d51e1bde73750c1f17fbf7e810b43a2b693ddb2a65c288e2f1d3b1a01a261d7da" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-osx-x64.tar.gz", - "hash": "254e578bae6150f194ec9e7d5cfe8a8cbaf048dedafd78afdb421cb0cae22364d21742eb2d11619a8330974739256d45a5d477483a1f82129acc3d12c6805767" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-arm64.exe", - "hash": "216e1485e95cc50cca23585169cd35df0fff55f54288c0b7f88c686f9cedfa3b16e9db0e9ae9c30ab725c676f38f4c1528182263545866312e5f431260e854f0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-arm64.zip", - "hash": "28f29033f2dec660846aab3684d9c20339cd63bd98f550786b24c3cd8515112042982e50bbc31192c8636859a9a2412f00cfe6d81c60b7d00a8a736c2d16bc06" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x64.exe", - "hash": "788228ffc0e97105f12d32cc96645ae3f7111865e16b01a34f9bd7a574a7a7fca4d9b29eb44fb85074f467b8b01e75455a51ce24f2b73055e95dc55bae00247a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x64.zip", - "hash": "73f27fc52d41ce652908d2b4133cb22a9e77691576fb16ebe5e283bee5fd7acbf5b70f54328a61da358cb04981aaef0d9ebb715285fbcee8666dd1151d7912a2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x86.exe", - "hash": "5cb0afbd33ddce5ac6042348b59ee006897011c22349e887167fd8be20a84da817ee7c73c1efc94fcbd4528823793107e87fdedd07c7a8eed05a4b6a056c094a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.201/dotnet-sdk-8.0.201-win-x86.zip", - "hash": "6f40d27ddae36b313f0a750052b2b8ac9de276a24eff7f136f261e14e5ccffa1b0c863aaea4ff79966e6114a4a2b79b32ce4efdcb24fd9e02b7d4566e239debe" - } - ] - }, - { - "version": "8.0.200", - "version-display": "8.0.200", - "runtime-version": "8.0.2", - "vs-version": "17.9.0", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-arm.tar.gz", - "hash": "a7359c6b714bea6a0e56a89465866e78e241a3587b916fbd8ce4c9ea89c3bf987ab95d8b12d64308257ae0213c724ebafb34e0ff244058172b58719cef0184d5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-arm64.tar.gz", - "hash": "ebb11b2dba2843175f55b6a78a29f6a22860eb1198e4562f206f5fd3c0cd1711bb5c8919967396ac6a0e354c43bd6d012e47fdbd85ad951c7ff0e3e87b0a0b19" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-musl-arm.tar.gz", - "hash": "2995e624ddc1dfb81b37a2865e1cef9227c473c50cf48b4e6d47032dd3763b57a2421aee1bb221c7307b18d8c2cec1a0531dda61b0ea33dd2d7b8c3b33055943" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-musl-arm64.tar.gz", - "hash": "a65149b1b6eca4ebca30bf0f537e0759bc84ae6bb6ab528dcbbc357a0ebeaac21dbaab320ee97a9cb107d6b43b2f042837d669cf6c45df7f5756cfb3e7beab21" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-musl-x64.tar.gz", - "hash": "c13d33ae2ec4ffbc8269ab89bced97fa659eaf173b0ca146f06174d51990b74bcbfb13333c9162973754ef5c328e41a52643f61fc33474c5335b6bacb9bb5fda" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-linux-x64.tar.gz", - "hash": "58417468b72c89a66ad0bf54a0e4af13f8a3a37f2aae6e28ef762b9cdd783af0c13ad62ce185446d920b2709ec73c980d888fd73a413a8dce154ac15cb0056a3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-osx-arm64.pkg", - "hash": "f12f5c5e109ea597a9ed056b9acddfd2c42654970285d4f7aa800376ee7569b87be4bf842b962232ce1bf3b44cbc244d6e71b36639c9f1a03edfe79528e3eaab" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-osx-arm64.tar.gz", - "hash": "9d62beadd090f940d7dbada4120aa01f0e1cde14c4ccef570a3fbd6a44dc347ffa27baa44efdae46bba7307e647700329aea15f8b79f3e96df906a267b98b13e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-osx-x64.pkg", - "hash": "dccf82709f6cede1e87116b9caaee637eb65365e761c5fe78bb4f49d4f1abe883ca6fd6827556329488f23948d07ccad16dfeff83a39d96c4bf76d9d5ef78add" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-osx-x64.tar.gz", - "hash": "6d8d6ce6ff9c8c08451d9e7f1faf6ec934b8c9d6fea43a8b547873094c03ac8483cd6418429f89b64016d2c9fb3eeab2080b2f639f41d438c341ac0e0804a4bb" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-arm64.exe", - "hash": "f684f9e27c71ce5b02666ec94956de2d774f9e6bc6f83611943316377931aed05f22ab54e4cb711a9a118def462795909017b8109488c2ed5ea47ea3912d3663" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-arm64.zip", - "hash": "bd43f6d3272ae9ffafcdc856f33bc10c9c0981e6de19fcfa32c3a674154cee8be68506fe08b3d8de97b83ab918b22981f7e370ff0fac7c227716972644ccf459" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-x64.exe", - "hash": "696d9b5b931114be12eab8cc81fd7403a5143ada38d8b0f2423e148d85309dc66602c86dfed6dce40f4ce1e0d141d01c774b3d34750f3d294673ca5b7c67649d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-x64.zip", - "hash": "b4129eaeccabc2f66d92827c4bd67535cbf42208648d99b9b7235d6ba67252b948bf9ad5e5fa8d34bc6907cdc7fe9bcbd60dcedbc75b81dd1b674c3af8cdaafe" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-x86.exe", - "hash": "7feb39c58058f79392634059ca3aa381bd14522cd6013d8980a1651479899f8726c2069bc9b5596336133c27eb2672faa2d3d986254f96846430dcc1a388b56f" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.200/dotnet-sdk-8.0.200-win-x86.zip", - "hash": "6dae83edd111736e8e4b930cbd260f7b4ac57f7379e35afba310af9a2c6630bf7aadee933209fed345434af3afee49bffa63cd81e8a0504ded759c679918f5ea" - } - ] - }, - { - "version": "8.0.102", - "version-display": "8.0.102", - "runtime-version": "8.0.2", - "vs-version": "17.8.7", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-arm.tar.gz", - "hash": "7bfa9cca1d2c8321036ea33c96327005e4bceb9bc8dabc0a35e28b24dbea5cd5cf78c6a8fea3b419c7da47e6ef953ed8b93d0b293da58b86ae737792900b51f9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-arm64.tar.gz", - "hash": "5e0b5762ab2f038de50859a2e18a3964ea6b754faa01d72f9824100546a271148908e84d666bb63d25e5d9a92038bc8a2f944d0342bbf8834cb5d5e936878c76" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-musl-arm.tar.gz", - "hash": "1d336d717b0c127ebdfba422619f5bdcbf328826c6f8eb427fb9b80df3b5615028378d5fdd75bc216770de83c7ef34b1059ee4cbc2f4ab39cc504c5b0fa12236" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-musl-arm64.tar.gz", - "hash": "3e7581ed3fcfe601593ea8b75d45c4f4f3f0e1b02f6fdfad484612383c1fdc66d904be75d06e5e3b36085dd4eb85ed5ccd8ceb55129e019d74a3255858f05cdd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-musl-x64.tar.gz", - "hash": "ea8862773e8eaf32ffc43646fe273266fffc7e0c56fa59541e6218ccf459b27cb93f4cb33bf895fff54723717cc64c4faf2527a307f46da587ee3e970908c8fa" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-linux-x64.tar.gz", - "hash": "f5928f5b947441065f2f34b25ae8de1fbf7dbae2c0ba918bfb4224d2d08849c79cbdc1825c0d42a5822f12757f78efa58e295a8ee0f0e6fce39cc7c6ed977b8f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-osx-arm64.pkg", - "hash": "b7219a5cb1de7d16c4408aef20650bb2390fb08266cf342695aad440e8b283b3880528abc5f1d1cfbbe0a0808bad1f7405ca1efaf974e831ab92cf43a536230a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-osx-arm64.tar.gz", - "hash": "69d702b561ae7ddf4c47fe228c16472fd8d7065de1a4a206fc07c6906db49e7da25b21c06f0ef080f41658aeddc0f3c0a23ce1de7e65b830c308bfe13cf95fe8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-osx-x64.pkg", - "hash": "1b930dbab28ff363a20e255f0ec3c270f2fb680288b96f0cf6f59604d66b72e87af67218a561e1193b9ea197741c6c98735060cb030a096f3cfe86a8d6f46b9a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-osx-x64.tar.gz", - "hash": "963432c5c7d7d0b204a92248c61d1be227369c6bc1d47f977c913c416c61584451fd05d0e95a6fbe51f0e1958e1c1a71f2530f478dd036ed2b0e123944b3ce00" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-arm64.exe", - "hash": "b5eda65c8deb139fdcf8401c96fec2d0ddf361801672f2f64b6bf9ae142f52c6ca97e140b2475c8ebd0775739d70a8bc4ca5064821a863bf7b0a8cccb15f8274" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-arm64.zip", - "hash": "a865bfbe246acc024da5322f7602229d4621ea48aaf7ed499c346b3cc6ab78ff2fa3dd0a7c038f5bf900510d846c9e00f9c6ca2f3faeb750e61fec7689955ed1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-x64.exe", - "hash": "c627c09208a37d600fbf809f21fa9ec15905ef98c3aa3ee6e5163c45405dbeaf38988d8803308ae948d86aaf18b2f23e6be6734dfb3a18b682acd9eec7d8a7f3" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-x64.zip", - "hash": "6feb4737d60f9e085140ccab2669f0f24199e36ab60c671ad47392bbd206abae4485c18abade08da487b74c997abde1016825e630e0df3c691dba24554b46627" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-x86.exe", - "hash": "2c6bf400ca0eb88fbbe71efcc3bb1e378cc1f523d45ef44560c8a42c09e056121f3502b053dcd9bd4ebc3d91a2c4e2f29eb27458bae874888cc13a0524acd837" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.102/dotnet-sdk-8.0.102-win-x86.zip", - "hash": "4b5f55d3bc8a57901f327a4fb6f724a22d79a9898e00159feb2652c9fe019039f4439336607d07ffec8465ec4bf1380a7256a0cbb50e990a74920412d263a21b" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.2", - "version-display": "8.0.2", - "version-aspnetcoremodule": ["18.0.24018.2"], - "vs-version": "17.8.7", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-arm.tar.gz", - "hash": "427e60fb1ed636ed6c8b8be22b125019f0cf8cad3ab07bfc362d56a05f12206eaf245c8003b5a1c1b342c65d703f3f401982aaab92f86de5d73650f742a2fdba" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-arm64.tar.gz", - "hash": "9e5733a0d40705df17a1c96025783fd2544ad344ac98525f9d11947ea6ef632a23b0d2bf536314e4aeda8ae9c0f65b8f8feee184e1a1aabfda30059f59b1b9a6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-musl-arm.tar.gz", - "hash": "78af2bf6c79cd06449808e54ce66f9b67976773aefe826eb69834c66280cd3a612ef2c41594e90ff12d6223194a0935a2dd5b1342415b767175f7b23ddf4788d" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-musl-arm64.tar.gz", - "hash": "1e92f8b880a30c71b1620dbd9600dd77e7bf44f175dc8d7d3579f814b419305d0a242c130d82528804ac0ca4b486df0959d7fde6bd6fc322a2bf63d6f815828d" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-musl-x64.tar.gz", - "hash": "cf9eccbadaee5cbb7787acb30c2826ef2ace343a443034b2695ab362d867657d0c10218ec3d13706c85d03921599a463105b2ea58d684c911de6a97df3c93933" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-linux-x64.tar.gz", - "hash": "c8d4f9ad45cc97570ac607c0d14064da6c1215ef864afd73688ec7470af774f80504a937cbb5aadbb0083250122aae361770d2bca68f30ac7b62b4717bee6fca" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-osx-arm64.tar.gz", - "hash": "9e79556cf58f9d0b0f302a50ef9724122a9b18daba70e715b7334f9ed97a4983be0386e4132f5273d120f00d18f8af8a8ad7ea1ef0a82c610e268a33e76a30e4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-osx-x64.tar.gz", - "hash": "a7edf091509305d27275d5d7911c3c61a2546e0d3b5b0fe9fcb9e704daf3c550ea0a5ae659272a29b5e218d02f28b7d331ab0905e9459711624692f1589d7285" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-win-arm64.zip", - "hash": "f8d25d220eaa06e9e7a85aa347da9090684e8cb9dc286428bb7f44d19d8e028c93de89c3fc8677e2e1a6a0182248d79e013fd5fc53f7f44c4a7cb224bbbedb74" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-win-x64.exe", - "hash": "64f0a3f63ef5e80e7e61725639723c91368add464d08273444eb84d4e3c45ad841be24849553272b34e246180a1f497a61964da53cc42badc910ab48a6c2d1bb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-win-x64.zip", - "hash": "ec88ab44fdc3116c19fcfcc08a24d9bb5c52d0f1825fd976c51a6f58fe6af9a79f1101eb3b0ea507e8b72b326dba6005c7ab10a8399993f801ea5a85acd09765" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-win-x86.exe", - "hash": "2b530d4afad2e7ab6bb4008c81fe07ab0b241e68cfb0c52db78e1e323b8d6a118adad55864f3b7768d27bc30190333e6559f3b9f86a37c7914bbc5acdb486d6e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-8.0.2-win-x86.zip", - "hash": "b04ece77d49a9261554ef17af4668472df2d756e831d42480091aa1710971793dfa24fc3a798f888b827a6f23abe717589ef918c1693eb70b4ee680aee6bbb77" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-arm.tar.gz", - "hash": "8c9204cb9094b5e8f4f7aaae87b6786d57d4c79fd24d550f6c74a6682c4df2adb4e948288498b276f2cf39d7c23b2d0099f8a3694f0357dcde05688ff4eb4329" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-arm64.tar.gz", - "hash": "aece5cff73dd05d7e51fcc29e429572b7f55f9ce6a213b8ce26a8f4cc236a2d36cfd39af5dd59c6abcfa8b62f510a99f2351098c72782fe33feb332119ae0461" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-musl-arm.tar.gz", - "hash": "6cc71a0c8a3e74c26fe3540e0f7c057bbff9ae98888d8239f057fd1dfdd8dd430ad2a3120d399e825187735487f89174687067bb237fd21f4cd03bb598884d08" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-musl-arm64.tar.gz", - "hash": "0da9ab1fa9f08633d9277c1c49a792bb9cda481c31773f824342fbdea1d905926d09a190f37f455e66c44ecf9063cf1c9fefe6829886a5e526fe789457690803" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-musl-x64.tar.gz", - "hash": "833a646b8569436623b6e2761051916585d659792254ce7da0db2b665e1682a15b765761584f369027987944657445fc6cd7eba727d24ff020842c1a0b562605" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/aspnetcore-runtime-composite-8.0.2-linux-x64.tar.gz", - "hash": "91a8173771b21e602c2365ff39db71e18a77d8251dedb70eb1ac84c180d26cfcb017a3e2f866a6f9c1dcaca0f8efae60c19f9a23b17794a3c34d2b8f5863f4e3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.2/dotnet-hosting-8.0.2-win.exe", - "hash": "7edb966eb7c2cedb592feeb28d95e94de82c3a9cef4906a00d1d2efef73372839251d5b1ea39917ca37d48e22849bf78dbb5910830e8263ae9f818e08f9c1565", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.2", - "version-display": "8.0.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-arm64.exe", - "hash": "ded156143841a9256cf077527973ebd131e54d3413be5ab0286638e73f88e504fb553ca7dddb390ab917be652938d8be28caf82f8a454d78093791c02c8b9002" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-arm64.zip", - "hash": "dad3741d6af5314d731f7d3837754ed555c97e812a4daa55925b3491e9038ddbf1ef8c75e0179f4d554159b034380dd9a2f8ef011fb9847227aee889536e4232" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-x64.exe", - "hash": "62cd6be9ea5c397b607c75a3a9da332476b456482e20a3e786e964eae352965678c979792f3e0577d76205761b9c53da86c3aea6ae122934e4be7cf38648e950" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-x64.zip", - "hash": "0256add3c5bd08ccd1e0e56d69ad63ae3a3a93fd869420f9f251f2e7a77e63c7aa00f0381453f0b6bacff4f120687a4f135b738b338662f1816225e9952ae3b0" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-x86.exe", - "hash": "3700642786b3f9a67218b6a834a8472c31d8e5ae6c2436c752e2ade37d9cb0ff808e35bb9fc3207ecbdb6e4e934c1dc77796d47ed0b2d228755f9876d4e0af0a" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.2/windowsdesktop-runtime-8.0.2-win-x86.zip", - "hash": "4c5c2b7ec412e6fe021ec7b40cb09e66ac930ff6399e94f495efba6b052c7b7000d3185d3661afea689efc493cfff18c3024e3a6d242fcc77356ce32f1d0a78a" - } - ] - } - }, - { - "release-date": "2024-01-09", - "release-version": "8.0.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-0056", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0056" - }, - { - "cve-id": "CVE-2024-0057", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-0057" - }, - { - "cve-id": "CVE-2024-21319", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21319" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.1/8.0.1.md", - "runtime": { - "version": "8.0.1", - "version-display": "8.0.1", - "vs-version": "17.8.3", - "vs-mac-version": "17.6", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-arm.tar.gz", - "hash": "40cd226ee1b25a24eba395a6037d59ae6ead9c0ca625abf3e257564c9308f5e7fccfceab0058f3aa348698ee8be6d10031f23854d1876384476ed171772af299" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-arm64.tar.gz", - "hash": "29707882d4fce61eb4b20763473d548570f89f9d028bafb76b646911a5e7bf793dc75e33a6903622d7ba46e9eea0eac000d931cd2f45da118ef05fede6d4079b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-musl-arm.tar.gz", - "hash": "fd4b339c66ae1e2193c6ac09fb00f3d1ec1d70ce63767d88e26efd381f235b7153c7a4064998116cdfabaf47e8be13b5c2dacb39229d19a66e17eeeac9515d49" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-musl-arm64.tar.gz", - "hash": "3f54f8203af3851332d7c706a76af3faaf6b853f17941c4bc5d95f0589d28f115dc45a05dac9736c50e8ad1b5318e64d8262a187dfbe8cfdc610f6a1d8d64b7d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-musl-x64.tar.gz", - "hash": "a935d7b6c95e9852ba485faf5712214704eebfd5b8e1ab7b993d054f957ae0a551f57dc39a38de7064a1ab89bc1fe0bcaf908163daf9625174ec27aefd23c016" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-linux-x64.tar.gz", - "hash": "cbd03325280ff93cd0edab71c5564a50bb2423980f63d04602914db917c9c811a0068d848cab07d82e3260bff6684ad7cffacc2f449c06fc0b0aa8f845c399b6" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-osx-arm64.pkg", - "hash": "ae9c838db2971ca014edf54e48677865a8f0ef14040243d651209aeee2714a9d74d1745479744aae91af2cf86dcaae2ef2d6014ecf77873c803cde8f9235e2bf" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-osx-arm64.tar.gz", - "hash": "9d716e324c041ecd210ae65bcdd9bbf8c884d8fb92cda72d5bd13429581d47d7837d51f63c2994dfe17c5cda77de1c727308b590367d3181c91fa1f173c66b04" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-osx-x64.pkg", - "hash": "c8fb970e14f87179bfb4d0a865fda631b43f9b767a82909f0490fe94d922207c3e4bed0ee9264f2d66154ac89ff8569338fc5f040cf2ae6f31238d2787f61ebc" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-osx-x64.tar.gz", - "hash": "8c88db692cd889d8f4d6a1f0a82a3eb0b3f49a4771318127c294822f20ee83a87668c6a54012ad87242936d4412b3f8adc0448b8d5ff623f0a6faa3cfc544309" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-arm64.exe", - "hash": "2477fea2f36c380943eda8174999f2b897322c0db607b17ee4df8e486536f8cbdfccd72cfcebb346b2320a58085558f28560431750b3b2786ecea2f601159b5a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-arm64.zip", - "hash": "1ac512be0760d22ef9a6a4d21ae3a07b8709cd265386cd8d04f714959975688e8961792a5f82f8dd5426218712c275a57eb70cdccaeab04cb222385ad9b14c18" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-x64.exe", - "hash": "46f2561197aa33f6fd33d40943f2c76d1b8d5c7ace39ba5555d9eda6cc4ac3f8cbae10b353cce9c7a7b4fdb30f2b6d1897461811880271e07555982100270347" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-x64.zip", - "hash": "21608914ccb6d872ce8a9a66ab37af1fed4e52e01f0b2a1f7fbea077f8d8cfc287d2d7a761049727d948c25dfc5bfbfa0aace8541d553a67ef8bd06fc215b803" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-x86.exe", - "hash": "cbcab96d341a3d49da8cdce87aa7c23ee2186c36408cf90b61636ab0417720b203a83e1699ccda34b2c4097019384e9add62b621d623528688896e441b04306a" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.1/dotnet-runtime-8.0.1-win-x86.zip", - "hash": "8784ce84e0c51687bbbb839bd03c20f4526c6c29fbb7e52e465fcff4b31257bf2833e77ca529251f311406328d7b05433b9b9994a39bff74efe468bc4cd4d000" - } - ] - }, - "sdk": { - "version": "8.0.101", - "version-display": "8.0.101", - "runtime-version": "8.0.1", - "vs-version": "17.8.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-arm.tar.gz", - "hash": "59e0902fa190dee8da1644135e0477ced70fa02ecc12f79c8947743a77a160861ed5e44f8a4228815f853141856d4e3a1db1bd057759d3bff980a79b7d849689" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-arm64.tar.gz", - "hash": "56beedb8181b63efd319b028190a8a98842efd96da27c5e48e18c4d15ba1a5805610e8838f1904a19263abd51ff68df369973ed59dab879edc52f6e7f93517c6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-arm.tar.gz", - "hash": "764edb8803a68f074391714029800ef2309d212618790ba00506bba201a9655ea46e47d6017c89d78c9b1ef57e8e47352a63e8116a8b1f9fb169844745170172" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-arm64.tar.gz", - "hash": "796d9fa4fda9d7d0f014820e20a8bad63052ba5e15dcb4fcb44ce33438a1aa4cd5e2ea0ad4a538b07946302b9649638762e3bfaa22a70318f0f17bc50c105193" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-x64.tar.gz", - "hash": "95751235b774ed1050b721528495c1ba561c0bce99989a5fd6c0d0510b8b7d07a34ef186f347d16194b07d5ec4966ae8cb47aa7c1a65eebcea8a68fd90fb22e5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-x64.tar.gz", - "hash": "26df0151a3a59c4403b52ba0f0df61eaa904110d897be604f19dcaa27d50860c82296733329cb4a3cf20a2c2e518e8f5d5f36dfb7931bf714a45e46b11487c9a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-arm64.pkg", - "hash": "7fc9c51a0b98654a82d088ebcaca925e3bebadc7d7548957791a644895cdfee191f8e59061d346c464cb16fe3721a499ccad3896a7265c78a92b70271af5b46e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-arm64.tar.gz", - "hash": "a6048ca248aef3c430c8bdb65b534d5f58463a9d3c314fd70f5c7c4a9ac7eaabfba7786c40c76c73e5abc1a95ba957a682e73fb228e15bc9808adb47b4a1b291" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-x64.pkg", - "hash": "e40b9fd4a5c814e1d44fb58a7a78284244f77797c0dd5a60a5dd478b4f3eddf8cf6b51b4b63aa3d4a24435bedaa5e6df944da19728732ae23ff645ed5caef2b5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-x64.tar.gz", - "hash": "5c18dd1c0bb8199660dea5793eb2a568c63adbde492ca5080a8130e723a6260c6b9c6a055c299a3b8ba2497d6875959f86da8b9c9bf85e093bca2e08724d46a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-arm64.exe", - "hash": "59c76d112728c318291fc48411dd489848839f3c3b67354458d3f80f4262cfee16e22b6fc17e774dd1d259eb411a1d95490909c9a8bbe79ed054d424eda3e371" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-arm64.zip", - "hash": "68c2333f74434138846f49301ae0ff94302c55aa278e2fad09a0e03fc28f3f3dfb90a68a5e2633bd5e119957044118fd92d1cd715d9a76c8b1843e050cd02894" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x64.exe", - "hash": "5de43de4f468dbaeb1b0bca6cf4774daf2c4ef8594451f1674a9a4a65149335ee956abaad4492be636161ed3d3eb5072099aafd344f94b0b55e04acba255d246" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x64.zip", - "hash": "e05953b32429ddaa60dc27fb5f5077d7523fc9f9706d30f42cd1855e2469eb003d5250587468062df4e331817059f2f46a44d5ed10ce2eb599710897e6659d83" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x86.exe", - "hash": "3313919a647dbfa16afaec8a0a0292212fa7e7e612a895d5c0cd2df6a5bf09b2a47a213cdf3c6053637d5aa0e9d12d927dc28d20602768977a417edcef9bda05" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x86.zip", - "hash": "df5248a25d351d866ac2d1ca6cdebf7b20ce5cc65aedc1a988166491d022829435daf67e07993ba71bfcb99f79fc19b8ef047e1d4a48ae9b6e8e31f3ea9a4107" - } - ] - }, - "sdks": [ - { - "version": "8.0.101", - "version-display": "8.0.101", - "runtime-version": "8.0.1", - "vs-version": "17.8.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-arm.tar.gz", - "hash": "59e0902fa190dee8da1644135e0477ced70fa02ecc12f79c8947743a77a160861ed5e44f8a4228815f853141856d4e3a1db1bd057759d3bff980a79b7d849689" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-arm64.tar.gz", - "hash": "56beedb8181b63efd319b028190a8a98842efd96da27c5e48e18c4d15ba1a5805610e8838f1904a19263abd51ff68df369973ed59dab879edc52f6e7f93517c6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-arm.tar.gz", - "hash": "764edb8803a68f074391714029800ef2309d212618790ba00506bba201a9655ea46e47d6017c89d78c9b1ef57e8e47352a63e8116a8b1f9fb169844745170172" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-arm64.tar.gz", - "hash": "796d9fa4fda9d7d0f014820e20a8bad63052ba5e15dcb4fcb44ce33438a1aa4cd5e2ea0ad4a538b07946302b9649638762e3bfaa22a70318f0f17bc50c105193" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-musl-x64.tar.gz", - "hash": "95751235b774ed1050b721528495c1ba561c0bce99989a5fd6c0d0510b8b7d07a34ef186f347d16194b07d5ec4966ae8cb47aa7c1a65eebcea8a68fd90fb22e5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-linux-x64.tar.gz", - "hash": "26df0151a3a59c4403b52ba0f0df61eaa904110d897be604f19dcaa27d50860c82296733329cb4a3cf20a2c2e518e8f5d5f36dfb7931bf714a45e46b11487c9a" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-arm64.pkg", - "hash": "7fc9c51a0b98654a82d088ebcaca925e3bebadc7d7548957791a644895cdfee191f8e59061d346c464cb16fe3721a499ccad3896a7265c78a92b70271af5b46e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-arm64.tar.gz", - "hash": "a6048ca248aef3c430c8bdb65b534d5f58463a9d3c314fd70f5c7c4a9ac7eaabfba7786c40c76c73e5abc1a95ba957a682e73fb228e15bc9808adb47b4a1b291" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-x64.pkg", - "hash": "e40b9fd4a5c814e1d44fb58a7a78284244f77797c0dd5a60a5dd478b4f3eddf8cf6b51b4b63aa3d4a24435bedaa5e6df944da19728732ae23ff645ed5caef2b5" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-osx-x64.tar.gz", - "hash": "5c18dd1c0bb8199660dea5793eb2a568c63adbde492ca5080a8130e723a6260c6b9c6a055c299a3b8ba2497d6875959f86da8b9c9bf85e093bca2e08724d46a1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-arm64.exe", - "hash": "59c76d112728c318291fc48411dd489848839f3c3b67354458d3f80f4262cfee16e22b6fc17e774dd1d259eb411a1d95490909c9a8bbe79ed054d424eda3e371" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-arm64.zip", - "hash": "68c2333f74434138846f49301ae0ff94302c55aa278e2fad09a0e03fc28f3f3dfb90a68a5e2633bd5e119957044118fd92d1cd715d9a76c8b1843e050cd02894" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x64.exe", - "hash": "5de43de4f468dbaeb1b0bca6cf4774daf2c4ef8594451f1674a9a4a65149335ee956abaad4492be636161ed3d3eb5072099aafd344f94b0b55e04acba255d246" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x64.zip", - "hash": "e05953b32429ddaa60dc27fb5f5077d7523fc9f9706d30f42cd1855e2469eb003d5250587468062df4e331817059f2f46a44d5ed10ce2eb599710897e6659d83" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x86.exe", - "hash": "3313919a647dbfa16afaec8a0a0292212fa7e7e612a895d5c0cd2df6a5bf09b2a47a213cdf3c6053637d5aa0e9d12d927dc28d20602768977a417edcef9bda05" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.101/dotnet-sdk-8.0.101-win-x86.zip", - "hash": "df5248a25d351d866ac2d1ca6cdebf7b20ce5cc65aedc1a988166491d022829435daf67e07993ba71bfcb99f79fc19b8ef047e1d4a48ae9b6e8e31f3ea9a4107" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.1", - "version-display": "8.0.1", - "version-aspnetcoremodule": ["18.0.23334.1"], - "vs-version": "17.8.3", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-arm.tar.gz", - "hash": "1865185af78ee742588187f4a3e98aa30e1bc5da0180512e5fb6e40274c68a45052bc06d357f8541b6fa2bc6d4855efe4b45f706a48230da8a4b4078ca2a21c1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-arm64.tar.gz", - "hash": "7d34b6986363e54dca53828ca7a4d658aae1b24f8f33c6a82f811e12ce6d56698462db746d9f19e4ad245cc8d130a19930be28e0a0c2da2c96fd74b1cb2d8192" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-musl-arm.tar.gz", - "hash": "3ad47bf2c6d6c24f641c1ef52552ab4a3dc093bd83ae430258f9285b108680813f894977745441b0d67662f5eba80f7b28e24b98f56306ec20a523ce74d93d49" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-musl-arm64.tar.gz", - "hash": "5e48a721b7e4c5b2046b4c64abc29bfe0a931fa1887dc00ce1e75a7eede6ccad339370029c061774a123526def6b4ade934334bf7178d57bcb87717fe8d228c7" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-musl-x64.tar.gz", - "hash": "b749398f5ad059c9d51e3153c9f41ac23145aea38e83a736259c4206fdb920c245685a60a6d4bcf74ce41c70f751fd133219fb66b263018ae53025e129535063" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-linux-x64.tar.gz", - "hash": "64eecc0fc50f8c68205123355c43eae5ee29b7f6061a260315818960153fdf25f2bb25a51dd3f051e2362e228c032f2d0b9e7b6b476ac52141c17cfd8de0bfd2" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-osx-arm64.tar.gz", - "hash": "ac12b846bd8c65035087b9a77cc44edbbbdcc5f8b8b1b9cf47bc282b3505d3f8670188e1dbffebdc26233f7a5c35ae6b2c1dc61b26d7ffc3233117436399e46d" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-osx-x64.tar.gz", - "hash": "1a573a57d7eae9162976f915b065fcba8f4069e42f8aff4bb93b131fff16d9f54ce17d7a9392aeea27fd693c5d5932a94db8a8220ca34f481429824639a4819f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-win-arm64.zip", - "hash": "7dd3b5560944e333a2faad71692b55b0411746ce2a1c667db689e8d2dface32095da739ee37cc09037472ae52f5558e19ca909e252f2fcbb7b170f0be7557c01" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-win-x64.exe", - "hash": "32e436e24a9b6090070ece3d325131672dea9f0e95d7c570e83de2983c06523c40ebb26edecfaabc3d54e4c1ad5ec56111d322343b9ed1c4139c6e807795ac0c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-win-x64.zip", - "hash": "3e1556f5e6e681bd02f7409cdabf9ddafe9913c9e9341d5abca4e9a3250a7bd46f1de7f29cf26fae8ee2d60d5f86038aa7143748e80005d0356a57cf74308228" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-win-x86.exe", - "hash": "c05dda744d9718d3bd32f17426a2c9ce958c677fb585dcbd6749a45ae242f9e2f50d4bfaa50326925726cd554540f531f94e05ef985893f9a4dd4eff3bc10ee2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-8.0.1-win-x86.zip", - "hash": "d4279a810381a4b9fb6b54223955ef21caaabd2506ffddc5dc349e4af8af73dd47c3a2595d6af98fbe3761525c577ed81ad1050bb11f7db1a2d7ef785cceb366" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-arm.tar.gz", - "hash": "489d96231983b4c786133723d626659d907ae49a45765b7080aa40c522113a26cd48696bbddd09202074fd5547814c3bcef7b0bc3d88fb8c137ab7ad44851826" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-arm64.tar.gz", - "hash": "7dc3087c154dc0b3cf000c2a525d71d4b344b1bf5444c87d0eafe04ffec352dc0b57fcab4f1a36722a4b438ba9c68027de79fb83e13f417b779ca5d66ff9611c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-musl-arm.tar.gz", - "hash": "030a5cb3b80dc6422ad102e66cfd473eb96d07e6bf577849b4e15fb362f086516d08dc53335be9514ad712e6f46d204d437dff2196a1228796d096e9e67c180b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-musl-arm64.tar.gz", - "hash": "99fd7999641ca8574afe28e056d2235694b8f82aaa4e6306bfebc0000dd9f1f207991c72b482b5d02cb6691ecbba88ff0a63849acfd30482480a7a4b02296974" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-musl-x64.tar.gz", - "hash": "c1d3f658dd3bc07dee5c5ce474c01f344c7a2aff2ee0ca9e5c28c89edc5e07bee82a7646a6b87aa999df8ffa06ce0a2fe7192c3dc2c0c72364c976419b6bcdc0" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/aspnetcore-runtime-composite-8.0.1-linux-x64.tar.gz", - "hash": "8a09b2f0d5e3e04934e794127269a84b49cdeb9c5ef14b8c3b68abae6048a5beeb36acec617501dd00b83e1166e18ac59b99eda24f3c18210cb1bc228c74140f" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.1/dotnet-hosting-8.0.1-win.exe", - "hash": "ba6a820e6644f7bd6dc66e78777105698dd5470c1039ffcb35522a904c820a268e54334f2763bbc44283c52ae6b3c8ba030a016f725453c9db3a49adf79570df", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.1", - "version-display": "8.0.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-arm64.exe", - "hash": "5f9c1ee5ee2c4dfe80fd2d3a686dc33142f17a9bd37e6f60d63f95e7bbff15d65c1f2f30f4fb1f18f24ffcc3d7feb6d95953d7e7314945a8989df8b86d069c7d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-arm64.zip", - "hash": "adf3dbb60e151fb399d20a8ee9179505eae51a1cf50bc38c1e934f3c3ddb96d139235d8b2c72269e08816beb43a065e905bead7fd713c995a967dde12db97511" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-x64.exe", - "hash": "233d98b280eb4353fff7e45fa45e0de510403853e881c0bdcd3eb2466df4930795a62fec14cb30d05e00bff37f17b4d6c9b95511ca71475b739d6d9be9d2ebab" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-x64.zip", - "hash": "f0922bcd8d91448a765eba9928b4a34bfbe7de441f9b76d90e97119b69065892e6f4d7d31342f20bbb4cacca84e7b03b1c0dbb721339c6ae5d23085aae226170" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-x86.exe", - "hash": "1d2cdb417ff9d72e4766255a1d7568bc16348120c72db58a020f35917b47a0f39dd74e185371668419a9f8a4fc2e9aad4073b5dcb273d010fbf9b16a718d018d" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.1/windowsdesktop-runtime-8.0.1-win-x86.zip", - "hash": "3b579856c14ecdbea256f044dd9158461e0042aec15260d5bc10328179555e4e98dae0139cf5922a7970f36fda516c2d980715c087429d1de00e0265b9e9941e" - } - ] - } - }, - { - "release-date": "2023-11-14", - "release-version": "8.0.0", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36049", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36049" - }, - { - "cve-id": "CVE-2023-36558", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36558" - }, - { - "cve-id": "CVE-2023-36038", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36038" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/8.0.0/8.0.0.md", - "runtime": { - "version": "8.0.0", - "version-display": "8.0.0", - "vs-version": "17.8", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-arm.tar.gz", - "hash": "2dd820ae2341b00844430bdfa3d45631b080d69aa2e55c89ab034a46e8712c542428267e10a5077bca607aa0c58e1efd42422cba4d76c2eaabf2ead87874ce24" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-arm64.tar.gz", - "hash": "bb39fed4cff3a1a0a4e5084a517feeacb571700b8114b83b0b040f63f279d32eb9195d9b94cd60f8aa969b84adaad51694a2e26255177a30f40f50f634d29c21" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-musl-arm.tar.gz", - "hash": "3947064cdcf0c3417e9809f7595707bdc537c6280de82e0df170b15abc6be6705cb180b243c23dc373a76698e9e9f434a89975ae1734abad7f39607ef83e772c" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-musl-arm64.tar.gz", - "hash": "a8bb01b3e3dce7cd5a5ddcb8af13f3bc9b3be1cd3d60ee728b845c88cb12005e5e8c5d54a51391fc27de4023080ce9b231c1c48e858b3f1b551a9e1936d59f27" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-musl-x64.tar.gz", - "hash": "bc9278786a728bcc404dd014f7823334312c0db6d949df104bb31e775f53b5684bba00611abb58873b8894d20489d5145fb351903b68dece92a7dbad14c3b9f2" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-linux-x64.tar.gz", - "hash": "16a93af328bcf61775875f4007c23081e2cb7aa8e2fba724aea6a61bc7ecf7466cc368121b08b58ac3b72f68cb67801c68c6505591eb35f18461db856bb08b37" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-osx-arm64.pkg", - "hash": "1703343cab87195e77161620bed0c9a595944809eadbd16cca48cc369957437510d7a62638fe541cbe13d0e8eadc026b13e9b1b0e148e098e841e078abd84a34" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-osx-arm64.tar.gz", - "hash": "5464e6ca9afa89680b71042e200e99c43855a216cfef64ed2cc0b44efe547f7f69e57559ecdc47404e2a8c1c2b0f7d00ebcfc8b949750f0af168eb575e7dc092" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-osx-x64.pkg", - "hash": "d3a33632906428975cc155a8be4029c365d695a61f8eee3633ba231d1d91be4538fc77a5604a0a21c6bb641b6f2ee271fe8b60e5f27620e7102138676287a451" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-osx-x64.tar.gz", - "hash": "a469d4fcbd756861045a2f639f42e7f7296fea3c5cb5bfbe75a9deefae2c5fa1fd658b35fe378e2a4afefcc37d8d874908833728481cc4b18fbd9f6f204d684d" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-arm64.exe", - "hash": "0db66495e3d84ee3e731de88c5e725cc421fc199022d0909ce88b1763f334db3eb4f593e1c0c16be41651ea7879c79f982b3e3cce6018a4c5f367e384668f7b5" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-arm64.zip", - "hash": "ec731685410b6c66fc7d493f74607ca0eb51444299934b9e21eefef43b5b46263a6cf05f7b9c499451202134e9f2ccbee6d5b54d2b884b3ea9b8fa31c8b816af" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-x64.exe", - "hash": "3a88fd2da5d2aee4a28e6ae8269560768c5ec53d77657e64ca95ebe2bdae4b2ad55cfd61e1ff17cbcebc6a6bdce95db3197655d69d66a45c207cf9c674244ced" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-x64.zip", - "hash": "b786869739c87ea286ee494fbf72cc92cf0cd91c1f22ede0133a523aa150740dd89cdca6a1530bd1f39d24db4f34939e17e2b0dce3d7efd06e4eced30b530643" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-x86.exe", - "hash": "9b75af3897299c712da59dff0b6bee80399362513e81cc509e9e2fe708a348786f7d56112878e1ebf4cca52d2ba152a484f4697a76b1e525512abce2e1c5278e" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0/dotnet-runtime-8.0.0-win-x86.zip", - "hash": "d32872db44dad127341e6adefb3e24ff879d0e598168c010cb6341bd5daef49f60aecfe4d50371be9cb40978cc54a75b1924dbd6ff3879810877908964c31e65" - } - ] - }, - "sdk": { - "version": "8.0.100", - "version-display": "8.0.100", - "runtime-version": "8.0.0", - "vs-version": "17.8.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-arm.tar.gz", - "hash": "bcc741518c7ee442e74ee4160f02f35c06e65b6d53265b2b0cfb6502d07e08fc397b7c3f4aecfc59dd173b875f7ceb6dc105fd3d1715c31216fabee068162d5e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-arm64.tar.gz", - "hash": "3296d2bc15cc433a0ca13c3da83b93a4e1ba00d4f9f626f5addc60e7e398a7acefa7d3df65273f3d0825df9786e029c89457aea1485507b98a4df2a1193cd765" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-arm.tar.gz", - "hash": "a8c08c4eaaa1ade3a1521750c62af92ab8fe91bfdd0f4767f8c0469ebfef091f3a68a443d4566bbfe53c49866d72a104c7aea309cabb36148f9aef9cb950ea64" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-arm64.tar.gz", - "hash": "1d8e54ab8d2b7b83972c1ecd7a23073bf83d39c258e993e54ab91a383ad2aa44276dfc28938f7b162cf79010187005e42a665933dff021ffa5e5d9cfadb5e2b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-x64.tar.gz", - "hash": "a904491cf1fe27603cfc21aa234b2f4da7517929fa9dad0eaa2233d010ef1e890339ca4b8e3c4c0d463f3015d7020a0c37ece97319b061cd92a5fc51cd8a7f4c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-x64.tar.gz", - "hash": "13905ea20191e70baeba50b0e9bbe5f752a7c34587878ee104744f9fb453bfe439994d38969722bdae7f60ee047d75dda8636f3ab62659450e9cd4024f38b2a5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-arm64.pkg", - "hash": "e19c4e309e62d267d68cbd1de4135e9a3664e6b9c2851943250de68b5fa6142c9a7e154b274de781b570dace97052e0015e91cb0104ede65ad62090fcaf92425" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-arm64.tar.gz", - "hash": "11a307ec17fa11fd8f133d697cd414c12b1d613ef9ec05db813630b10a00cb2ee0f703580688bc59b60c911e97a27eef8ae0d89fc2298c535e0bb15b5b997bc5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-x64.pkg", - "hash": "5b63eb59e1a90777fcf80a6c0963d0fc82586138a2fcb902cc5129517e6f6a94f9cf4ed68bb247d05f5fa92f5c143505f6547665ebd26f084860d672dc6dd1ce" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-x64.tar.gz", - "hash": "8ab6a1408e630a7f689414ad062191558c363f8fb8a98b6571ed99d386c07951655c6a499f8b8a4b128d4f566b7a67b6e8be26cda751d9286851b603096d0da2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-arm64.exe", - "hash": "d1231fe14a0ed93a62f3465397c191fa3f49382a5657ca3b5f5a2f592087495eb1d03a962e36b47a4641c596f40f7371d3e530fd3ab94e9dfa705cabbbd288c6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-arm64.zip", - "hash": "c888b046b71027dbdce116d85e3e2624df4f4073071d73032bafbed5afcf15843f9112518f360a11c0491c5802cf93a62cf217858ae3cce84d797e89eb75d1cd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x64.exe", - "hash": "248acec95b381e5302255310fb9396267fd74a4a2dc2c3a5989031969cb31f8270cbd14bda1bc0352ac90f8138bddad1a58e4af1e56cc4a1613b1cf2854b518e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x64.zip", - "hash": "69ee73c56c78c94c186c0fd1b06ce1a7325979f7680857dc1a05d516feb9f0ffe990c2c0441caed1de98a0d0ae3923cc3e04525f91d96306d611e481a24f9fb4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x86.exe", - "hash": "6ba1d4b2223f4d81055218d1b31fbb3839daf95ac5a063618073cf55badfd7614f1a672552cdf82c1d5aaadd27b0e68497d8e6317ec925daabe20aa68776c9d8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x86.zip", - "hash": "06ec86cdd68a6320bff9a22b2d2ece2f1f33a99f2c521d239451261d56b39071471dda2cccdf91ed5e96a935c7210da55db5e4c76e863cb1b744138bf7378f52" - } - ] - }, - "sdks": [ - { - "version": "8.0.100", - "version-display": "8.0.100", - "runtime-version": "8.0.0", - "vs-version": "17.8.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-arm.tar.gz", - "hash": "bcc741518c7ee442e74ee4160f02f35c06e65b6d53265b2b0cfb6502d07e08fc397b7c3f4aecfc59dd173b875f7ceb6dc105fd3d1715c31216fabee068162d5e" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-arm64.tar.gz", - "hash": "3296d2bc15cc433a0ca13c3da83b93a4e1ba00d4f9f626f5addc60e7e398a7acefa7d3df65273f3d0825df9786e029c89457aea1485507b98a4df2a1193cd765" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-arm.tar.gz", - "hash": "a8c08c4eaaa1ade3a1521750c62af92ab8fe91bfdd0f4767f8c0469ebfef091f3a68a443d4566bbfe53c49866d72a104c7aea309cabb36148f9aef9cb950ea64" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-arm64.tar.gz", - "hash": "1d8e54ab8d2b7b83972c1ecd7a23073bf83d39c258e993e54ab91a383ad2aa44276dfc28938f7b162cf79010187005e42a665933dff021ffa5e5d9cfadb5e2b6" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-musl-x64.tar.gz", - "hash": "a904491cf1fe27603cfc21aa234b2f4da7517929fa9dad0eaa2233d010ef1e890339ca4b8e3c4c0d463f3015d7020a0c37ece97319b061cd92a5fc51cd8a7f4c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-linux-x64.tar.gz", - "hash": "13905ea20191e70baeba50b0e9bbe5f752a7c34587878ee104744f9fb453bfe439994d38969722bdae7f60ee047d75dda8636f3ab62659450e9cd4024f38b2a5" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-arm64.pkg", - "hash": "e19c4e309e62d267d68cbd1de4135e9a3664e6b9c2851943250de68b5fa6142c9a7e154b274de781b570dace97052e0015e91cb0104ede65ad62090fcaf92425" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-arm64.tar.gz", - "hash": "11a307ec17fa11fd8f133d697cd414c12b1d613ef9ec05db813630b10a00cb2ee0f703580688bc59b60c911e97a27eef8ae0d89fc2298c535e0bb15b5b997bc5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-x64.pkg", - "hash": "5b63eb59e1a90777fcf80a6c0963d0fc82586138a2fcb902cc5129517e6f6a94f9cf4ed68bb247d05f5fa92f5c143505f6547665ebd26f084860d672dc6dd1ce" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-osx-x64.tar.gz", - "hash": "8ab6a1408e630a7f689414ad062191558c363f8fb8a98b6571ed99d386c07951655c6a499f8b8a4b128d4f566b7a67b6e8be26cda751d9286851b603096d0da2" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-arm64.exe", - "hash": "d1231fe14a0ed93a62f3465397c191fa3f49382a5657ca3b5f5a2f592087495eb1d03a962e36b47a4641c596f40f7371d3e530fd3ab94e9dfa705cabbbd288c6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-arm64.zip", - "hash": "c888b046b71027dbdce116d85e3e2624df4f4073071d73032bafbed5afcf15843f9112518f360a11c0491c5802cf93a62cf217858ae3cce84d797e89eb75d1cd" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x64.exe", - "hash": "248acec95b381e5302255310fb9396267fd74a4a2dc2c3a5989031969cb31f8270cbd14bda1bc0352ac90f8138bddad1a58e4af1e56cc4a1613b1cf2854b518e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x64.zip", - "hash": "69ee73c56c78c94c186c0fd1b06ce1a7325979f7680857dc1a05d516feb9f0ffe990c2c0441caed1de98a0d0ae3923cc3e04525f91d96306d611e481a24f9fb4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x86.exe", - "hash": "6ba1d4b2223f4d81055218d1b31fbb3839daf95ac5a063618073cf55badfd7614f1a672552cdf82c1d5aaadd27b0e68497d8e6317ec925daabe20aa68776c9d8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100/dotnet-sdk-8.0.100-win-x86.zip", - "hash": "06ec86cdd68a6320bff9a22b2d2ece2f1f33a99f2c521d239451261d56b39071471dda2cccdf91ed5e96a935c7210da55db5e4c76e863cb1b744138bf7378f52" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0", - "version-display": "8.0.0", - "version-aspnetcoremodule": ["18.0.23305.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-arm.tar.gz", - "hash": "5fd4f650217c8531bf5fba9b851462e52f3a04a71c4c1d7b48be6e22970cb06981d1b4fbbfdf2c8aa3662c9921a3c3d91d61ab19debcb5df046e87df1849abd6" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-arm64.tar.gz", - "hash": "f9e1ae263dd944c70ea1818a3a44bb62aa5bfb65dafa463dc9f9a33bc8ad1c60b4e7a364a7414cc00a01ff707b5e88fc52c520edf0eb357ed1ddf4a8fcd8eae9" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-musl-arm.tar.gz", - "hash": "16254138c90ceb74becd25b0a4bc000838ee5e480c987b68300244d2916a97fb2adb4c715935f9a8547efd30bbf499ab68dfdcb79cfbeab77c46f1b575cca2e9" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-musl-arm64.tar.gz", - "hash": "9ac1b612e126c7c4a9eb2b3343c93875268f3a4d78cf4c6ece9e718b76b60f13e96efb9488e7d83cfb128ae766d8bf05e764d6a11c3a315ea1820a011afd585f" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-musl-x64.tar.gz", - "hash": "12723b685b86d3d2f69692781f731fe2c56bfc4d34489b9c901775e78f8f96edb78b97b9234b44b14aa2f578c1a054e425ebe8ced42f59e82c39c90c341fc1d9" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-linux-x64.tar.gz", - "hash": "c0aa3a926d6c2bc0d4cc14f5d7677a4592111bf3ebefa65c5273c4b979a6e2b5d58305a5aaf4ac78f593b46605ec02f40b610dcbff070b1d8cf8ddc656cac7dc" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-osx-arm64.tar.gz", - "hash": "0edb1bd0655d7898d9a02f7127e9a93af7e92e3ea324a7d77e9634b5dfa0851184d784f2573612b18bc37cb0510f93d1b0eaa2ae56b6ca99a16f1edafe6cf8fe" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-osx-x64.tar.gz", - "hash": "1b19d90b631ebd74f6e1f4343ecf54f6f04bc8a2aceebbca66de57d41d440a66c7f56565043c1aaeb77b586dc349914d7d30b8c066197840430d543c24c87539" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-win-arm64.zip", - "hash": "3899e2148fd8b58059e7f18433038d09f8c35978595f536919e2473134c73d77d08ea62b3727dd11aaa0c807dc7393f40c723d5f6dafa26b87a0243818c57e50" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-win-x64.exe", - "hash": "8bae0bc5cb46486348c45d3df3a9caaf8b5413ae324483f5a90d0482d70ea4224222abee124524523ff7bb44c4c0629b9242dbf24a21736ce275ec0c2549d957" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-win-x64.zip", - "hash": "ca3f5d578fecf51e2cee30ceb9a88ca1c07ac476d742ef466ba5858b63e0d05cb840d6d22b83d916c49f9fe51c91b68ea385b7a8d53b292d0c9e78e7d671ae91" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-win-x86.exe", - "hash": "9cf9f98a7737438c382c90092f25d706927b8ebd0079900c6d420282e6a2ea353a9856d427ef9a2ec675fffcc2b84f21bd02491c7c6b40f6101a58a491e1b478" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-8.0.0-win-x86.zip", - "hash": "c1fb064e0bf6c689a5aca5c944ab500232730fe7549ca9cca88f616fad9f5604c5a4e67424c5e11bb31fa42c00fc3524c4ebc324d5a287d0c605e9e06d6c07e2" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-arm.tar.gz", - "hash": "1bc58d92bcac8e383daa59436677890e061be4c450f30d1744e2f2b161de04ed4d09a54adbe9f22f820ce09773a525b575730d96334043bd17559a462d407063" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-arm64.tar.gz", - "hash": "8e3d2fbb491a97b31510d5c69890f4b37520e2141fbef1b9bd8ab0617f08d506246c8c411c05369b1a747e56440027953aae7eb015ae41183fa092e7d87a366a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-musl-arm.tar.gz", - "hash": "9cac51a4529bae44245890cfa20efae2a38be8dbbf01e8df8dd1aa409d4f44ec1329a0ecda6142fe1f306c8e31be05e252c603a96add778899f936de651fdf20" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-musl-arm64.tar.gz", - "hash": "aa87583671636b6cca1cee7d48966d247f7dbfad75757c6ded611e6acd3ef440c30e691fd388aa96e920b9af07a5f9b6b702a0b2b528cd29913a84ac79b55d58" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-musl-x64.tar.gz", - "hash": "5caf1e043d9624e036bf645b0449ac8d87a1861a246c5597ea4485432d2962ea8799d98d73bb5e5c3d1d3b19acb2817502af5a8593a7632d75cc6bfb19f623df" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/aspnetcore-runtime-composite-8.0.0-linux-x64.tar.gz", - "hash": "b7f2cf8cf6496a438b03e6e945d776a763c388127b98b7cc20bb86c0e9570c40890e0397f55dea6d8f9aabfbec88dae3800eb2b87462a765a54ecdd7d68c75a3" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0/dotnet-hosting-8.0.0-win.exe", - "hash": "664bac19fdbd32eeb4adf4513034bb8066b9e7ee2c8c5dd8c21a54ab2e6bf99f86c52f5709299c675cc8ed9ef13cd0a0e188c8094f94a4b4e7b4e5cd368c0e9e", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0", - "version-display": "8.0.0", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-arm64.exe", - "hash": "f9b91928493dee45883b0cc6e13494a91b3a22dfbd57223236db0139584fc81fdf843249888efa9de157f158616bccb0de6081121f1787d3bf7ec80852c61d9d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-arm64.zip", - "hash": "bdcb6b86338c17052f21a25c3b5152beef96c0d09b6a7252c184c79a5e5c49c6e005510882193b5d42a06dae81270ec6c1d432e687887275396b9c365344dbc5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-x64.exe", - "hash": "d2e92f8bdb2b840c3fee170f2ca3baa3237a6a56c7b86589f7e4d7a0d51d2605bafe045adbd14a0c43e946a8a895a621748418d1a2cb9c44370eafd1d1a8ffa9" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-x64.zip", - "hash": "6464817e61bf04e88e535537afeca377cf78a46f0a2acce4accc701e251e2139c61f48043e81c04ef59ec47c9420274222466060fae37ba806e88e64485e8872" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-x86.exe", - "hash": "711134538d6e7dc827c99914e7ae74cb2a0c41ce2b1b4fd2b6323032c05db31737a4370f613621bc04787e7ab4b6d377e62dd777c2b51db6636afd751e874ae4" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0/windowsdesktop-runtime-8.0.0-win-x86.zip", - "hash": "2fb749cb6dd37a2b5e8789907fcc15711825cb7342cb1c4480003d7b76f3abe1dab543001189ac0d62626db143241336759cb1ebd53fe79cc771f348ef9b54fd" - } - ] - } - }, - { - "release-date": "2023-10-10", - "release-version": "8.0.0-rc.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36435", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36435" - }, - { - "cve-id": "CVE-2023-38171", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38171" - }, - { - "cve-id": "CVE-2023-44487", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-rc.2.md", - "runtime": { - "version": "8.0.0-rc.2.23479.6", - "version-display": "8.0.0-rc.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-arm.tar.gz", - "hash": "d854d9a5ff29ebdc1200850c87ae448ba1f4ea05a8d8033cb8ef20ed7070d6acea8fb5b9a96ffd3a8449c9fa9bfca620e5ee0d2ebf1b1c173eef75db6eaad21c" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-arm64.tar.gz", - "hash": "7f92e7d5f51d1623e2ebccb79da1f047c4a125b565cedb0a4be3d9deb2010c1f8c03276a926eb9a7866bc1ef9c6585724c41d268e9d2fda8012613aa6fa4f95d" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-musl-arm.tar.gz", - "hash": "16989c3d84f0f2be8b1852f7023a408419126018b8cd441e28c67c5eadb953a85ccd8df8ca9b7b89c67925bd1f11ca8ee7d9ef40e7e4ff7c7ca21e4fbe675536" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-musl-arm64.tar.gz", - "hash": "bc9391771681719d7d44ac9357a877cb20a2d96e7cf13c05b7e9b1fc6905f6d9731202929cc42e5c8ad96d1edf22efd0e69ed62d63c889b554df56582dfd1918" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-musl-x64.tar.gz", - "hash": "22e77f222b2d9015352f97826c046cac81f33a3bc945837143b799895a55efffb536aec5040fdce95abcaddc2e4fcdc6d818b41b6b3c224d4902c6192cf9190c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-linux-x64.tar.gz", - "hash": "f1565aa5a5a98b3ab2cd92376b0b1bcf4420b6377047bdf2324a7dd86b82f5b4776a2795395bb777a3f7d6f6f9b8dc89721c2fcf93b4c7532b42b263f9fdc828" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-osx-arm64.pkg", - "hash": "5ed707af5ecd68a51f7e8ff34993b105f0331848da4693c7925812e89873f72efde4620df40e609277355dfb1cdeaf8c8a877465f089a3b38363fabcdebae686" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-osx-arm64.tar.gz", - "hash": "8c9b86c1dc4fc0c6d5086d3a1f5fd28b38e2d94746a1529f3d9783e7240e067fd830098be81052629253c1548b43f4937cea92370212a556448320e294ef887e" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-osx-x64.pkg", - "hash": "110ccc186e1053260220c50f8f0813b46c55381712d6b46c96f1763bced4be67c20c69df5b0b2d4fdb37e40c76f27b6b1f554808a9b831cec8ef2723896a0896" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-osx-x64.tar.gz", - "hash": "50ab2233f01534784759439752312749731f5e3a46947da40052186bd87459fb19162c0354fb9c44feb8e3693b6dcd6d791782f63c86add4179c6ed6f6c4ff28" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-arm64.exe", - "hash": "b45629e4fabd0af1d2f327b6cd70b8da9e4675f9fe271fe7d1f3717f24f63b9874a4823a5328df20b6a46d65196792412d89d0c46e59cf0fae9b32f517eb080d" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-arm64.zip", - "hash": "2bb9f04c0f07c78caaba5300708c1ded053aeacab6de568406619baa56fe999a85a9e977f1d83490d3773d80af0fe348969016bb811d95989bb2783c908f12c7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-x64.exe", - "hash": "9c5633a2903f6333b9d9f122da5cb6de78c136d2285a3e71551cd845035b2fc81cd4e97c17a713182c074869c8a04aa3ff8a7a6f026d33a8e0356984d0a132f5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-x64.zip", - "hash": "2ae92847f920a8f039ab189c637a3af28e21e20ee59e95117f3cffb3c77dbada6654e0629168d6d13f60d4cc59a24dd05f233bf460c26892ee2e53a58eb9fc67" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-x86.exe", - "hash": "69602bce7a963c98e99964e7f4da16fe54d84230ea31f744622adf52174ed156ebce3a26abb848ef17e8517563aa18dd37b21fe65cb8f5ddad4c991759e0739d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.2.23479.6/dotnet-runtime-8.0.0-rc.2.23479.6-win-x86.zip", - "hash": "08a6b580b6e025293f2a5c6452b4e72723043cb42e352d72cb2b77c86d316f82c0b30a779bac009bc412b1ba869012387d6abde4be6f782dcc15790b7c8a89d3" - } - ] - }, - "sdk": { - "version": "8.0.100-rc.2.23502.2", - "version-display": "8.0.100-rc.2", - "runtime-version": "8.0.0-rc.2.23479.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-arm.tar.gz", - "hash": "821b0513bcb60e5f645332959a6182c952e92c793c19abfae538fb602f922f47dcaa70da4e1b3a37713f9a9346b091cdd67754d17d078bdfd680080d9599b572" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-arm64.tar.gz", - "hash": "b07059a8b6b5586134a63a20c952f4f029372791d53e4a3a1363d39b8beb62b4c7dbc23c7de202397310c79aaaa110d35d0dd5d996420eaed0ed7f77e2dbc669" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-arm.tar.gz", - "hash": "b129eb5b77d6f78b1992213ac3a2aafea44805c4b29b2eaeaafe6be33106dc4cd4ec0f8479c3d27cd2b831b67239e2875d8ab261edb443fa0ba019a6c83ca3bd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-arm64.tar.gz", - "hash": "6605aac43d086c35bc9f52dd9675154cac284f8f068d9be66412dfa87072341c463a78b1437a1f746ac91a5b250702b02d070d060b93957c522ee89631eb4bb5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-x64.tar.gz", - "hash": "0420f924a7eb4ce771fee0118c5f146a657dfb21f4d9a7999afdc9b5d1a97fb282783dc83229266de90a0b9627a6f561a347c3bf25d7ff551776609cef1c0dc1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-x64.tar.gz", - "hash": "45f09e7b031f4cf5b4dcead240fe47e2e3731d97d22aa96d3a02a087322658606cc22792053c3784c44f15d7c9bad0ac9dbda90def7b4e197f2955dca9a5bb6c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-arm64.pkg", - "hash": "0ca1358cd0f644bf5f0d5aa4e19d73f050ec19421b4a47fcd8d07f60fbecdd255f5c12f100b252d8e742c308180e14c1d05a52cff62920e48f05fb7ab644644e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-arm64.tar.gz", - "hash": "c7f955ba587cb00aa688dbba987acfd4203519da0dc5914ae7e1ecdf8f95089a84402b4d833c7b6186bdc1f70215e399646117242a054c1555087aced61d119a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-x64.pkg", - "hash": "0381f513768f0c8505bfc39458117d0fc0d345844d9b3ad98c3cec5d106d000bd27abc0040aa29d4e83cb566193d32ea9f775c30ae06eff95953dbd1dc4147e3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-x64.tar.gz", - "hash": "48268afc73335c19c96bd77bea49eedd461056b1b640703ebae39b3003875ba0b0dbdc13ce7aec0c74ae842bd01647cd1c225ec555439972f3e16300245a48fc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-arm64.exe", - "hash": "19acafb5c7838ebde5baa9e593e36e328f5ebca659e13f6d979319dbff7709a940e1060d142f9faf5f85f23f181b2ecfedc3f3d2ae612f29bdbe88d312bd811a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-arm64.zip", - "hash": "1415c958eeac3bd48ee29fbf7a9ccca99e74caee5c27cef04bfed02f070456166d89ed8c2c6bdf3ae8d889e5c5da0d3967e371bba98feed7d4cef9f7f8dc6ef8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x64.exe", - "hash": "f4c4ebdaa684b2f7cee1b0034749dcde2a6c8b9a5e45fe4b6f1ff4c918367b6e59d23ec1f70a2db3a7ec9867f85507615aa0467a35406b08ed925ec5abf4b49a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x64.zip", - "hash": "5bdeec491b41da1b7a7a35757a80be80c7e10f3c82af9f4037dde217b09c526d6e673209c467c44f766cef8611bc63aaf6d2a806b3879861872252b31339a47b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x86.exe", - "hash": "481565ac45237b2a888aa2abaf11996bd5dba9f78c41b74ee66b3821b1c671e67ec7f5577fe98b1dc685943f461416bb1db89f58c69303917a019c6b80fc9b0b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x86.zip", - "hash": "f871f301cd098684d88a65403b99ac95fa9ce8531d27431efebd5c6ea7123797a91f8fbf187b65b5dc923ab60e7165653d8266830170a97a5657f3f848cb8647" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-rc.2.23502.2", - "version-display": "8.0.100-rc.2", - "runtime-version": "8.0.0-rc.2.23479.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-arm.tar.gz", - "hash": "821b0513bcb60e5f645332959a6182c952e92c793c19abfae538fb602f922f47dcaa70da4e1b3a37713f9a9346b091cdd67754d17d078bdfd680080d9599b572" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-arm64.tar.gz", - "hash": "b07059a8b6b5586134a63a20c952f4f029372791d53e4a3a1363d39b8beb62b4c7dbc23c7de202397310c79aaaa110d35d0dd5d996420eaed0ed7f77e2dbc669" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-arm.tar.gz", - "hash": "b129eb5b77d6f78b1992213ac3a2aafea44805c4b29b2eaeaafe6be33106dc4cd4ec0f8479c3d27cd2b831b67239e2875d8ab261edb443fa0ba019a6c83ca3bd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-arm64.tar.gz", - "hash": "6605aac43d086c35bc9f52dd9675154cac284f8f068d9be66412dfa87072341c463a78b1437a1f746ac91a5b250702b02d070d060b93957c522ee89631eb4bb5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-musl-x64.tar.gz", - "hash": "0420f924a7eb4ce771fee0118c5f146a657dfb21f4d9a7999afdc9b5d1a97fb282783dc83229266de90a0b9627a6f561a347c3bf25d7ff551776609cef1c0dc1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-linux-x64.tar.gz", - "hash": "45f09e7b031f4cf5b4dcead240fe47e2e3731d97d22aa96d3a02a087322658606cc22792053c3784c44f15d7c9bad0ac9dbda90def7b4e197f2955dca9a5bb6c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-arm64.pkg", - "hash": "0ca1358cd0f644bf5f0d5aa4e19d73f050ec19421b4a47fcd8d07f60fbecdd255f5c12f100b252d8e742c308180e14c1d05a52cff62920e48f05fb7ab644644e" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-arm64.tar.gz", - "hash": "c7f955ba587cb00aa688dbba987acfd4203519da0dc5914ae7e1ecdf8f95089a84402b4d833c7b6186bdc1f70215e399646117242a054c1555087aced61d119a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-x64.pkg", - "hash": "0381f513768f0c8505bfc39458117d0fc0d345844d9b3ad98c3cec5d106d000bd27abc0040aa29d4e83cb566193d32ea9f775c30ae06eff95953dbd1dc4147e3" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-osx-x64.tar.gz", - "hash": "48268afc73335c19c96bd77bea49eedd461056b1b640703ebae39b3003875ba0b0dbdc13ce7aec0c74ae842bd01647cd1c225ec555439972f3e16300245a48fc" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-arm64.exe", - "hash": "19acafb5c7838ebde5baa9e593e36e328f5ebca659e13f6d979319dbff7709a940e1060d142f9faf5f85f23f181b2ecfedc3f3d2ae612f29bdbe88d312bd811a" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-arm64.zip", - "hash": "1415c958eeac3bd48ee29fbf7a9ccca99e74caee5c27cef04bfed02f070456166d89ed8c2c6bdf3ae8d889e5c5da0d3967e371bba98feed7d4cef9f7f8dc6ef8" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x64.exe", - "hash": "f4c4ebdaa684b2f7cee1b0034749dcde2a6c8b9a5e45fe4b6f1ff4c918367b6e59d23ec1f70a2db3a7ec9867f85507615aa0467a35406b08ed925ec5abf4b49a" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x64.zip", - "hash": "5bdeec491b41da1b7a7a35757a80be80c7e10f3c82af9f4037dde217b09c526d6e673209c467c44f766cef8611bc63aaf6d2a806b3879861872252b31339a47b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x86.exe", - "hash": "481565ac45237b2a888aa2abaf11996bd5dba9f78c41b74ee66b3821b1c671e67ec7f5577fe98b1dc685943f461416bb1db89f58c69303917a019c6b80fc9b0b" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.2.23502.2/dotnet-sdk-8.0.100-rc.2.23502.2-win-x86.zip", - "hash": "f871f301cd098684d88a65403b99ac95fa9ce8531d27431efebd5c6ea7123797a91f8fbf187b65b5dc923ab60e7165653d8266830170a97a5657f3f848cb8647" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-rc.2.23480.2", - "version-display": "8.0.0-rc.2", - "version-aspnetcoremodule": ["18.0.23273.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-arm.tar.gz", - "hash": "fd0d543cfa1a109c8bef661708b2aa8139c565721e40980dc416bf37e0d3366ac6ce46e3fc32c99b6ef780328412412261363f5a5849ecbf2fd8b229eda7e46b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-arm64.tar.gz", - "hash": "a539170e9f0cc07801142b4f301554bbb76f22c3bc8dc4c421ca5c9be4dad93931acbb5a1d516f5fca57d739d33d10bccd33a480eb9e0d40e0f7594c38e405ea" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-musl-arm.tar.gz", - "hash": "684f77f58adab33822155b7aaa3455032f0c2a5f990089d54054d1691bbed1e7ff737e07d0ba4abc96f7b560360c39317dd5e893f49181fcb093533e987ab283" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-musl-arm64.tar.gz", - "hash": "67fdc66ba42f38ce04636f3a742bcfcbd17440aea19fdfed19ba1bebb934ef71959dd7b324064f927bcd1ff0f020601f3923ea12d0320f0a5d810b4fe32ee651" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-musl-x64.tar.gz", - "hash": "af6889f875d113d014f1655f9b265e3e83e4b8203b4093b653d4b325d91ec54ed0ba324f1f417284ce631454656fa02f39f0601286c4d6ecc7b63ac8a67eec6c" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-linux-x64.tar.gz", - "hash": "5d8d50498be52ee4c8ae83e9ca82ab947b187f27b56047cc8a09f6ca2ba6bb7532fdd30bc035d518ce636965371f2ed16c9f97398f04d836f4f67b11b5ce50a9" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-osx-arm64.tar.gz", - "hash": "9cf9dce54fa4d1ca27955170c5378b826400e4ae45a9312f97f3a9d87ec31bd3231d70e482c36499fdc0d83f80af8860cd87d70dbbbf614f0312c6f73f71e744" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-osx-x64.tar.gz", - "hash": "b798c397e2ddd8564024859f8aca2b9043863376b8327661ed83fb626bb51c26b1d5ef5a0ce6848031f14c480d4ba936aa0c4bddde8f38aea993d72ade10153b" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-win-arm64.zip", - "hash": "11d3c5253540f1459e49abb08ff90514f3f275bb726ea654e5a1845aeab85052900881e3b23af732604d7fba848d259eff5888e68038e9916d474d8cb5324041" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-win-x64.exe", - "hash": "0e0fc1ed6ed986786420ab6e890d5ec088c5f33f1fc6f9c865b2bbd7ef0ac9c8fce35cadb3c34f5d11fad679000583fb167c62969db8f0d67783951b185d4e97" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-win-x64.zip", - "hash": "b74cbffa98df77905e9720c10d6a63818812ae55e234e25cf28808076a1803c82c683108c90f2ef7e02ed21f0607bdc42cb2890d184cc467678c833f454e92d4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-win-x86.exe", - "hash": "e4248c8d548341d1346e1a3946eadc906a89de5eec3d8d9837a7723aaa4f9dc876930ab02d75d1a2e937118d4a9e9d98dd7431f5b7cc049cb5a69820221991cc" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-8.0.0-rc.2.23480.2-win-x86.zip", - "hash": "2c0931e722586d97c43a1402c21a1059463521d5ffa179043a3462f9a653b5ae39d3f70dd3dd7a7b65eda3454f4ee93c5ff13158633c4d86461fff2cd5535571" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-arm.tar.gz", - "hash": "55e4720b6cc4adc63944e1cbeed2b81269250240965a154737b274a0950ef7e103a6c99344577372d1074bd9f1e0e117e1682ab4b774d872bdebf550c57ede88" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-arm64.tar.gz", - "hash": "2ed102dd7851c049d80b53a5a31a56388fba72eed9e1fd4dc5d7e48d8606a4e26037eca6d90edba99d6668cf939841b1b025da93604b697c2f0506cf28998973" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-musl-arm.tar.gz", - "hash": "2c1f0fa71908d84f533e7f72c436750e624667b73ea8259e9661ae3caacbc919ef470a4ef80e5da4ac8c48b236dd50db2b802a4e1dbe1b79415c1adbbaf869ad" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-musl-arm64.tar.gz", - "hash": "39da201ffa7be98f5c66be5f8eba6bfebbd41c28564e78329fb6b2a62d3294dcc3d1a19e68edbe7f0f251484ec8aaef4a8b4bab04788e3b0abdbbbd84fecdb7f" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-musl-x64.tar.gz", - "hash": "c779a171e9a10ced7990ebb6d157e9bbaa6f777e79c2afcbd4dd4dbe857ac41e60dd9ce9252cf48aefa8e41449ca071b0e0c85e90670fd9c54cac3755e470626" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/aspnetcore-runtime-composite-8.0.0-rc.2.23480.2-linux-x64.tar.gz", - "hash": "6c04f68276fce832d4d68ccfb986a9ef2eb3aca337376249cb83d1bab7814f5daa864b574a43e117652d1846834aba2e56560c2ebcc45c3d116c622cbc6057b4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.2.23480.2/dotnet-hosting-8.0.0-rc.2.23480.2-win.exe", - "hash": "45d67ed1849c52c048e18c10882c152f92149db645567539cb055d15a22935676f31ff53ce5c2650ddc1e97279ced61478041be45f8080f97901c5d9a92bca9f", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-rc.2.23479.10", - "version-display": "8.0.0-rc.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-arm64.exe", - "hash": "33e3da6d5fc3a435b37a4d6d40fd81b81c98d3556afee73d24270130d353f12b916f014acb09e45d776cf3f783019811e4eb18d7ce070917c79020bb7c66df9d" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-arm64.zip", - "hash": "0bf7bf2a6ea567ce2e123d71419cee4dc3818cdc5c11130d1002f6dc89d0ce64c81d387c69550bb8864d87a66cf66f4399880efef63f4dc96b5b45d05f41bb00" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-x64.exe", - "hash": "480cd2cd85b10383b1d25ac1e03f060e7c491cf62ac9173ef83f52953e1fb282cdf29f64655d0436eb4a4ffd75333de180e19fa7deb93ea794d70e74296a026e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-x64.zip", - "hash": "207a28e1aac182ca5550081a885ce0cb919fecef625b16020b1d6097c6941ddc9d0f5368d5c8edd0d217e3f3e791bb68a8bda1596aaa29aee6a3212d07cdd572" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-x86.exe", - "hash": "6d0dd5f9dfd53377eaef423c7887f78836099aee7848d74124724c34e5a9928621d2c6784e621ecd5d653f546b52cbbc564d12981b9b42addf6b20d10e7a85c3" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.2.23479.10/windowsdesktop-runtime-8.0.0-rc.2.23479.10-win-x86.zip", - "hash": "5c02a02616af2647477441e120f86bee8802d79a81e816920aaa2d9647dcda40dcc4aadfb8e60022d716867b5783ee1af44edaef72263001bf7bc4fdcc6b3771" - } - ] - } - }, - { - "release-date": "2023-09-14", - "release-version": "8.0.0-rc.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2023-36799", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36799" - }, - { - "cve-id": "CVE-2023-36796", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36796" - }, - { - "cve-id": "CVE-2023-36792", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36792" - }, - { - "cve-id": "CVE-2023-36794", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36794" - }, - { - "cve-id": "CVE-2023-36793", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-36793" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-rc.1.md", - "runtime": { - "version": "8.0.0-rc.1.23419.4", - "version-display": "8.0.0-rc.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-arm.tar.gz", - "hash": "5ea010e9af7fcf76dbe9e754eac8744211a534b5378067e2848315bb2af27fa1387e9fbb8c826ca694d2cdfe2a2e82c5f340d3e2826b181ad61b8de5475330c1" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-arm64.tar.gz", - "hash": "6f5ca722ec2c4a400b9c19b17a3d9a10cf92b265c90c1e1b4822c12117580c286e99134f7c223f3dcd71171d5799e1498d38129dbd1bdff606fd64fe451458ba" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-musl-arm.tar.gz", - "hash": "e2f8f053f3a8fa3fac77306c848198e97603e6ecd5711602dd048e78c17cd81ea5d581a5da75a43ad3af69a3904c12460a5cf5e9d8ec2d7f48009518595627dc" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-musl-arm64.tar.gz", - "hash": "bac16c501c8be61ce7fecbfd7b10165ce6fe5842b3858b255f8a5b0c7bc7ad74fd94eb930dd76d4d6b41c3af33b757dc097415e1da435f4f7a5050a0395007b5" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-musl-x64.tar.gz", - "hash": "ef360a306780eabf0973589b12f2c38538b0723896d5860073f8ae31234fb718666d69acc1a7827074e90fd0a83165f135b097edb241a77964fe8856ef242847" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-linux-x64.tar.gz", - "hash": "53938ec3aa4353cfb760d22faa850821b54a53fdd864c4969f48caa6b718ba207162b04a196e85543947acb7d3e719982edad1420b76198562051846f51b1b5c" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-osx-arm64.pkg", - "hash": "0c0d8248d03b20d8e52d4b640cb5593a95939b09080f33fa89e1845a7b6dac8a4a8f0d992a51f1572d52f2c23acb62f5ed76f163bc7829c93ea6e61d6d2db26f" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-osx-arm64.tar.gz", - "hash": "f5810ed4c8ce565f1eb3505b7994e54ddf6d87f8903f739016daafc01ba532caa1b84e39e4e42b73f392703af973dfcaa2165b4630301a859fb49ba411d6ecdb" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-osx-x64.pkg", - "hash": "4b5290c6f93bdecfdd811b5ecc77888351d3c9f4cc088b8ed8267a9a20cdfc2223705b3798f062cecda80f383ebd727d9ea4416939b1dd32fcbbe561ab583f20" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-osx-x64.tar.gz", - "hash": "ffb0a22c0e4b9cbefc99a1e016683987dc4046abd9f49f5e48bbb93d0434e818c66274422728b328c97ca1dcd6419c7fbb88ba747edff6a8e92213141ce42bc6" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-arm64.exe", - "hash": "31c9fd2cdd3a75129c6fbe9cd9ef00cde8900530e1206301d6b5a1a2a24e8e181631efaf5db5437aa620c1aecbabbc2d2acb08f67a0cdb6977798423577f7408" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-arm64.zip", - "hash": "a86bc5121848545c2fe5eea76d43050c8ab03cd2b246b04c4795ba279a1849d48d6004a187db63ad87c02ba9df710ad0b10a8f10d66b64c823936505a7e1d593" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-x64.exe", - "hash": "12c5490a95987102c61efe74313068e660845132db9f9989e10731ff86d8b7e812918bc00e163a3d8346a6e6c7d3c4fc8d595f189b3846db64e219f61272c4e5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-x64.zip", - "hash": "b2b7cfdf3b5d81b25f485cf74880dee068adedf77f59c34816c54fe3cfb9de4f86745f116b9deedf6e309a2ab4dc4fda8a0c65a6a24e3053cab7174ef0606cbc" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-x86.exe", - "hash": "b04d7db52e88cd408a15d9f15a03af26c2fd91e806a294e6ed6714b848199864a9f1b7d0afd69ffc6032750688c6c7d025344c235198635ff39fe6fd9eb83b6d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-rc.1.23419.4/dotnet-runtime-8.0.0-rc.1.23419.4-win-x86.zip", - "hash": "525f682fb2072788e35609172eba6bce6bc94e567d513b9286615a43ffc2e693d6ba0d486272e52d115727121f961f36e1aa758166912337a7155f6322cd2d11" - } - ] - }, - "sdk": { - "version": "8.0.100-rc.1.23463.5", - "version-display": "8.0.100-rc.1", - "runtime-version": "8.0.0-rc.1.23419.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-arm.tar.gz", - "hash": "c9f2e23d5ec05da7afa22da1a977aeebaa635da77bd686aac83c883568025b0f8033823df04a8121945cec02311164eb1d2e478ad9718c1b16688194f0e9a191" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-arm64.tar.gz", - "hash": "6a96c428ef86fd79f902ddbe11b9054432a425be442404c9f3d5dc69a15c6e59c95bf281822bd19e854894d9b7a31c19260826f4ad467b610e3bd02a00f71a9d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-arm.tar.gz", - "hash": "ef64bb8067a9214b398bbdafc5dda67fc60ca1bd6ae584290eefc42830c743d0508599b09336294d1e6f2b3e6a1ca70d3172de63c17189c31984466adeadf28b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-arm64.tar.gz", - "hash": "86611a7cb3b323a58998e6de96608c6fdd4e5d11785fd3f672bc3f5c2bf9397d464ea1065764cced4004fefa8e996b46fedb17be46da991dcddf0e8ad610c5ae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-x64.tar.gz", - "hash": "ccd511e4ca2d8f3153d53f2c2d2f2afc8a95259f4936dce68a4f431ac907fb14013f2132990d32a6f374279f45d7e5ee1a67b90333dbd7f15b47a133552310ee" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-x64.tar.gz", - "hash": "ac941fd16fd7c328f7cc44b132b4253ddb2b6a6c152af5f43c71c6cd0d468c89b7276ebf6c08895dcb6e5e25f7cae83b6fbacb91cfcc4a61d49b5657a834a901" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-arm64.pkg", - "hash": "833171796a76aba754ee0bc99badd484ab42ebdb015c88cf4862dcb447e2bf302f484f4283589d392ef5d86ab2856a3f1db2a970877d74a8bcb89942f137d011" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-arm64.tar.gz", - "hash": "f278b075cb48567e1c296de11380befc47f9aef234065b566d40cad098fb3eb011b04d134716efd7cd8ea8ce862328e2c02dc0ca7c88dfac5ac7294cc16367b0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-x64.pkg", - "hash": "3090a17c87c195f014d639402a675f395901b2c3339103747b449dc961bf26df54f8853d0e54ff7d34df64563eda501da1fdcbd768f8d902f9845771cdfeb5e6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-x64.tar.gz", - "hash": "a71e43f1a7401a07742c3adb2cdfde371eee6577aad7a1f239b4a7de7213893e2c4a147959d275e8433b3f912fe708d8d2ebff00f66704efa671fec0c93c314c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-arm64.exe", - "hash": "7b1473208404dfb75a740d51fe5e785f985a0ac368a707d9aed247c86927a358a2ca158e13b3c67b223f358c21b34775631d84b1e21d41029755bf53e0a2cc90" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-arm64.zip", - "hash": "3cfb39b71f68713bc3029af730b19725f78931dd20f685ea4a6d4f850dcda31025970288693d51bd236da9c0d97851afebf38a34e2e2754c74505b9a85efecd3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x64.exe", - "hash": "b28a3f288a151a6a6e76ffd28a33ab92712a8308165819d469cacb1c547168a2bf7f78b975346cdf7b3f01b2d9b50070935588adc0ae1d03cfaff0744242423e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x64.zip", - "hash": "d06a7c6f39552a5e34c8352e573b2ede3658a415f43f2f5867f0d759d508b51a7470f071daf046912e5a2732f2419ed730babbdc4b33c15be287d457617d8ec1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x86.exe", - "hash": "da443d98051eea7d8d2e79c2872d28491deeb84a18bf2c81dd10ec59c0e0f9fce4f0b9e41d67214924895636a1f3217a5b2624251da636ec0e184804671dcc73" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x86.zip", - "hash": "2c5dd1144bb9a7e946ed566763f98da787ce2b09acda98d58d716e6b442f3ccf2629f151a9c02183eff482da45c35e707eb6b654aab9ca36683a1f737feb0d28" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-rc.1.23463.5", - "version-display": "8.0.100-rc.1", - "runtime-version": "8.0.0-rc.1.23419.4", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-arm.tar.gz", - "hash": "c9f2e23d5ec05da7afa22da1a977aeebaa635da77bd686aac83c883568025b0f8033823df04a8121945cec02311164eb1d2e478ad9718c1b16688194f0e9a191" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-arm64.tar.gz", - "hash": "6a96c428ef86fd79f902ddbe11b9054432a425be442404c9f3d5dc69a15c6e59c95bf281822bd19e854894d9b7a31c19260826f4ad467b610e3bd02a00f71a9d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-arm.tar.gz", - "hash": "ef64bb8067a9214b398bbdafc5dda67fc60ca1bd6ae584290eefc42830c743d0508599b09336294d1e6f2b3e6a1ca70d3172de63c17189c31984466adeadf28b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-arm64.tar.gz", - "hash": "86611a7cb3b323a58998e6de96608c6fdd4e5d11785fd3f672bc3f5c2bf9397d464ea1065764cced4004fefa8e996b46fedb17be46da991dcddf0e8ad610c5ae" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-musl-x64.tar.gz", - "hash": "ccd511e4ca2d8f3153d53f2c2d2f2afc8a95259f4936dce68a4f431ac907fb14013f2132990d32a6f374279f45d7e5ee1a67b90333dbd7f15b47a133552310ee" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-linux-x64.tar.gz", - "hash": "ac941fd16fd7c328f7cc44b132b4253ddb2b6a6c152af5f43c71c6cd0d468c89b7276ebf6c08895dcb6e5e25f7cae83b6fbacb91cfcc4a61d49b5657a834a901" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-arm64.pkg", - "hash": "833171796a76aba754ee0bc99badd484ab42ebdb015c88cf4862dcb447e2bf302f484f4283589d392ef5d86ab2856a3f1db2a970877d74a8bcb89942f137d011" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-arm64.tar.gz", - "hash": "f278b075cb48567e1c296de11380befc47f9aef234065b566d40cad098fb3eb011b04d134716efd7cd8ea8ce862328e2c02dc0ca7c88dfac5ac7294cc16367b0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-x64.pkg", - "hash": "3090a17c87c195f014d639402a675f395901b2c3339103747b449dc961bf26df54f8853d0e54ff7d34df64563eda501da1fdcbd768f8d902f9845771cdfeb5e6" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-osx-x64.tar.gz", - "hash": "a71e43f1a7401a07742c3adb2cdfde371eee6577aad7a1f239b4a7de7213893e2c4a147959d275e8433b3f912fe708d8d2ebff00f66704efa671fec0c93c314c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-arm64.exe", - "hash": "7b1473208404dfb75a740d51fe5e785f985a0ac368a707d9aed247c86927a358a2ca158e13b3c67b223f358c21b34775631d84b1e21d41029755bf53e0a2cc90" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-arm64.zip", - "hash": "3cfb39b71f68713bc3029af730b19725f78931dd20f685ea4a6d4f850dcda31025970288693d51bd236da9c0d97851afebf38a34e2e2754c74505b9a85efecd3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x64.exe", - "hash": "b28a3f288a151a6a6e76ffd28a33ab92712a8308165819d469cacb1c547168a2bf7f78b975346cdf7b3f01b2d9b50070935588adc0ae1d03cfaff0744242423e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x64.zip", - "hash": "d06a7c6f39552a5e34c8352e573b2ede3658a415f43f2f5867f0d759d508b51a7470f071daf046912e5a2732f2419ed730babbdc4b33c15be287d457617d8ec1" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x86.exe", - "hash": "da443d98051eea7d8d2e79c2872d28491deeb84a18bf2c81dd10ec59c0e0f9fce4f0b9e41d67214924895636a1f3217a5b2624251da636ec0e184804671dcc73" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-rc.1.23463.5/dotnet-sdk-8.0.100-rc.1.23463.5-win-x86.zip", - "hash": "2c5dd1144bb9a7e946ed566763f98da787ce2b09acda98d58d716e6b442f3ccf2629f151a9c02183eff482da45c35e707eb6b654aab9ca36683a1f737feb0d28" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-rc.1.23421.29", - "version-display": "8.0.0-rc.1", - "version-aspnetcoremodule": ["18.0.23234.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-arm.tar.gz", - "hash": "05fb63ba94d09fe0f90f8ce24ab0585ab25d142d2e87ff114915e6b68092aa246dde8dd1da13742c734a2bcdfe17b15628359d564a87611e156a10d826c354b1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-arm64.tar.gz", - "hash": "ba8035da535cb3bffa720e962e6f9e0f88b36e1221b588f2a126ee4b43c02e4d8c27958017d29e5ab68121fab6a564fe0a27099c4103ee3d527f8554b4ab495e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-musl-arm.tar.gz", - "hash": "b2b20479dead4bd8cf5e0919089af1e05954a7f662d9bc71661a0df43ade63c45535da7d0ec490b618d6a63fbbaa58730082468af90cc7332ab7864be6228379" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-musl-arm64.tar.gz", - "hash": "5e351437fcf739666f446e4df639e3c78986e5d29465f2de8898a66b8825fbd2c378dd1ce8399d471fcb62c49f24738f0b96ef81cea004bf6912c2abdbe5a3f9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-musl-x64.tar.gz", - "hash": "46cf816b4207b6e5361e04962968629aa7c0f3245b017a55d4c0edbb1410705a458a250ea9d52f71e8d5d02b264c49e089c34c36f2cdb807e2667975a43f43e6" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-linux-x64.tar.gz", - "hash": "d5f9e7bffbf2b48b26a317dd1d78bc866973b4a2cda448cd7a7ee64c0ffaf98fa3c4b8584d32528026674bdfd99f602f0fdac8242176815705e080df83825efa" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-osx-arm64.tar.gz", - "hash": "dadb90494fb36a1d38b12d2903a385b76ee7325eba59d44acf4e10c3019bcfd636cf0b9a7c3070516325c6be4f5421c11fad7a2293ccc2b1c7a5d3c62bbf07e1" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-osx-x64.tar.gz", - "hash": "28c2cc2b1b32a3d4b287f2ceec42ac7fce59870bd6a72f6767d347fa0a9c53210c5328e4d747ce010512dad149109ff072840c9da9301c8bd66a178169458518" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-win-arm64.zip", - "hash": "bae05c42a495ecc5947a8538b9f0ff3bbd5b94f7bf6d3baf3f9daf78a72ace8659b6810f0f232423f07387534e7a0d230c56f3a0ce14f7c2f40bd4bd64fa72d8" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-win-x64.exe", - "hash": "a4572bd6f2061139336f2154141ec9478a7cfae85eaa0046d465bf6a025e747ff286341a5fe27cf3879f3b3ed9e7f6f506ac8758ace0b87a4fd497e84e9754be" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-win-x64.zip", - "hash": "5078af1148f0a5603d7296a70ca776a307edf0da73aa1aad54d1d61e0b296b5452966f0b8e81b63c1bbc91de547c76210be59324ff123463b3e33ad0becf5ef1" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-win-x86.exe", - "hash": "0b507ab5cb27f5f13a0af7d42d3e70550f92d1715d1284f1090e43e4eac7e85eef07777546032ce52ebfac9ef9fd24eaba41b86d4851d3ba640092f3d89f0055" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-8.0.0-rc.1.23421.29-win-x86.zip", - "hash": "006f9162cf986b8b3b15b05c174f53b562aadbbb90e59a6f4be2633c10c67659b17d325173cf119f9a945ec81cd57747da09078cf00dc9199f87503cec39070d" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-arm.tar.gz", - "hash": "e4409f01be139fbe928c055554eb46d82c44c90fa86562f2727045173ba9e42ef299c9e652b8881c694b964b610a5156c0d61d867ed596e7f971437a48a1fc4b" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-arm64.tar.gz", - "hash": "ad72f2336bea2334799eca5bc3962811a3b2c811ac9633044f0538df44cf97265c748a237222edebdfcdf7f8a38dcc68bab277932974ef193909e3a4d3096d22" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-musl-arm.tar.gz", - "hash": "34ec7d55841ad3e1a8af4d5d8bef42378e3041d609491adc27e469fa42076b3b50ad952154870077878a47b203ad5cb8a780ea2432d9d07243d14b59521e2522" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-musl-arm64.tar.gz", - "hash": "c133f9a93d67994a822251b83c6a946125d59642cd77e611f2514240a7132907f06373ffec5fb3a1aa12f9f03fa9ee1ed17d5ebec0b54be71e7f678dfa909909" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-musl-x64.tar.gz", - "hash": "f56a090c2a915ed08fe141700d2e1b92c93ca1bd5bcd66e3116e4d7c045dfc56f19e59ee96f1d485fc49857bbbe05a6e03e35b5e3f57cd106801ff4e00a859be" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/aspnetcore-runtime-composite-8.0.0-rc.1.23421.29-linux-x64.tar.gz", - "hash": "6e4ce9aa8825304196f8f05164f254cf62637756c2b297525ff0ae86582e1fc6758968d5111774986d5f3e06005ceac120f79ae5269c8c4de1185c54e56c0632" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-rc.1.23421.29/dotnet-hosting-8.0.0-rc.1.23421.29-win.exe", - "hash": "a97d55be7d61d34d787b3e9d7dfbf5172679ee045a6f01440f62485b03c9a5470c3681b947adcbe187680b9fd9484e3be9d1a86375ff556315eb5b69b6f07564", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-rc.1.23420.5", - "version-display": "8.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-arm64.exe", - "hash": "9fa51c61c0dca54507053bb4f5712e2d413bb0d09806ed1e5feba79576d7bcd5f714cf6990bbf1ddb6288b176136f9b55ab127e5b3399ef36d6f1d40363a92ad" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-arm64.zip", - "hash": "5d26a5299b2380e2d1a5f31d4efa03b809e1750053c2626f56e56076560f15af46657c9270c09452743d612571c813c5fd91d84bcffa98bc14ba1cf90d1234f3" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-x64.exe", - "hash": "9b430c3593f0dc7364aa8cf9f8d1793b396294695b751dbf5e9ed0147203657883c5f9da870bfe4595272372efe9b1238660c3818f72a80924e3473b5152635c" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-x64.zip", - "hash": "dd94cc10e153779759961219faa04ee8fc3f5a4a4960cb141cbac7539292e3794111c90a6fa9e62062c4a0ce17f8ff7e95ecab53513ce737d282724e79d560b1" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-x86.exe", - "hash": "0c6a41d2006fc485c6a42bd80059524eddc67c03bda78c5382b12fcb814169d76574abb984517fa736e66762e9ecbbc68406970ca7f3c45a323ed95667c98059" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-rc.1.23420.5/windowsdesktop-runtime-8.0.0-rc.1.23420.5-win-x86.zip", - "hash": "11f22957a49aa3db45daf8a9071ec70a217262e9a93abf0d4c4ec3294266a59bf529546a3450c93b2ca2cead0b1e1aee8e01cbf85cad16dcdf84c18b2043ed26" - } - ] - } - }, - { - "release-date": "2023-08-08", - "release-version": "8.0.0-preview.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.7.md", - "runtime": { - "version": "8.0.0-preview.7.23375.6", - "version-display": "8.0.0-preview.7", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-arm.tar.gz", - "hash": "8783bbb161b843659f952ec30ab7b3584d225a11d9763daa59dc99f59e131348a63604b8cdad77be6e2bdec1b48b9510f3992dc8cc16083a217b079503262206" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-arm64.tar.gz", - "hash": "980434e91d6f9dcdd91901ef92aca6e15d015d3c4ed9dd92a11bc4bbe535010b8b5f0d0cf774427d529939663138b1523b28534f090ec41a5ab5abd61699909b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-musl-arm.tar.gz", - "hash": "0c6c5df0414a8bd517816dde69103cac65dee581f6f09169481090acb9b76f86f9bc2f6e6a174925683fdfa0bcb2145063b9c79c74355568c87ca55f7a0b1923" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-musl-arm64.tar.gz", - "hash": "724c01d49d373b09c8213f06121ebd9169529b1f05fc3eb33fea3cc8619ad3bac6ff66d24feb253405fee9bbbffbbe7d1ff6c1bd4b5310564e3fb5cbd9617bfb" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-musl-x64.tar.gz", - "hash": "c652094295b7df12d2d0272822cd861417c90c2313a87ebd515f3b0e9c67e165b133c4ef4b99f3731bf842a2145bf4607fa1c2db17fbea22615e2cb84d54db34" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-linux-x64.tar.gz", - "hash": "bfd8491550178b86a7a72fe06bdc82f0dd66771d5b60d7e4e1133cdde29f84bd57857d846722e027bd209db087123b2d12b2e23590d77991052269fa265814e1" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-osx-arm64.pkg", - "hash": "ed1e73b9ff44c280bab3be9278361aaf8c18f3c622a9f7209663273ca82d5e968caa31832bdd231b25eee2786fe732cfb3da39c047b3a23504240b5c67fce72a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-osx-arm64.tar.gz", - "hash": "e676fb4a6a155a1501aff4f9f90196fe086c52916538258d3cb3384aae52682bbf0656ec37c0c2ddb7d421c2d27991d5ead10861ce02d331ece6b1d55b5bc4e2" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-osx-x64.pkg", - "hash": "88396ab2c60f74338a9bc50453ea3504e2106f50268ca6201d743e514c6a4a1747afa1ea516b67674188763b1afe7f16f4381c4b4185d761c9da9e7fb53e5829" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-osx-x64.tar.gz", - "hash": "5ba28076f61e794ba586f5e306f3cef98c062505d466c3dec2b91dea2256ca6b65df9f5c40b402b78e968d8d7fcf00b5898e2ae182536fedddf2b782b9aadaf4" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-arm64.exe", - "hash": "d9e6c7f07b918b293d3571d1496e9cd2cc3286ec5e3979574b493674145ba0ae6701ded7c1cfbcf2e86ebfe622f58e0651a16beaa2030ea9d9ec340558da819f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-arm64.zip", - "hash": "74410e2933d1c4c0dabec27d6775b041fec82e5a401e7e1682e9d8e30d0cccefa6ec0830ebe456d5de7e60b7560f6c68b66d7dfe4e34d0efa5d6c8b948d050fd" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-x64.exe", - "hash": "079aa30b2074565fad648835dbee866dc8262f9fdbf6bbd13d68d9e431e1e7d536c6c3ffaf1d29e6038ee40702b0c37bbe205b36525089926a9aa24ab655f0c0" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-x64.zip", - "hash": "ea8f7279bdb1b1d1b23b5a16109c66dce9fa9ead12b0cb6785650e4f9aad5f56f7b9a8e298e117acbb83c54e300d43845b9af309b6faa05986051f5323f25abf" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-x86.exe", - "hash": "e302e77ed52a00237f3f4ee35dc27999879b50f2427e841ea94e2bd653261305a5b66668037a3d9cf0625165e38d70d8d19c0ed02f91c2de32fee9eda2bb1065" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.7.23375.6/dotnet-runtime-8.0.0-preview.7.23375.6-win-x86.zip", - "hash": "8b9580ef45548932d9f19f50bc43b64224977cc663e6670546fee83eb871fc2b3f850f4e8038c64f00ed7289c73b33c930a9a17373c312b2620891b4852f8b77" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.7.23376.3", - "version-display": "8.0.100-preview.7", - "runtime-version": "8.0.0-preview.7.23375.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-arm.tar.gz", - "hash": "8d666df78ad89d518eab8a3ecfe85bba32c514276606b33a021ee3a645943a022ebe1becedf90d7a112e0d05608f167fd2d47fdf839191c80321ff21271cac31" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-arm64.tar.gz", - "hash": "454b664a8eca860727bc5c1fd729beb854a0dfee915867f773aba166592a8c63570281c88ce528dc99339e9bcdb8000f0a1ce168bcfd779b3ae2a69ce60d49d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-arm.tar.gz", - "hash": "14a3c0aaedc787f9a05258138fb70effedb627cb46206bfdbb912936472b78cc3e24878b10b03e95339d3b7382b46a13a87783cb6a77a49243b75b31ecd94cb7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-arm64.tar.gz", - "hash": "8e5bfb89b287f6ab478e6bd9f4ce1ec482ba4d00b2241f6b4d6081c5885ac0399233bfaf983994b485ea6541a4a2ab9b362cbd582012edb09a6785a7cd7fb292" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-x64.tar.gz", - "hash": "6b7bf38224573496eae08e3000792296de81e16a1bd5a253236427137de4a6a9d7950c99f08ad764e337aa33140db5160218f9ecea0bfbd60c6e6f301e6dd042" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-x64.tar.gz", - "hash": "8bc71a586382f0e264024707f2f3af9a2f675dd5d4fbdd4bced7ab207141fb74d7c6492dfd94373505962b8597ae379259d152e4ace93a65dad0f89600afecd8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-arm64.pkg", - "hash": "3d8d5516c4ba4905787b7e87b5d9f9fe28b96fafaa5df00a5e8cf32b3c502d6ee5b0c5698bff0f8b8dd069315e2d54d0b0e8e182bdcea1134e2d7211e1a0c6b9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-arm64.tar.gz", - "hash": "db3167dd5d125ab400f29f9fc982eacec5ab69764323831985f374ccb57e102ee93ed3c607ac5e0fd733718b41cbe9079ec735ca6466f152a6b238a8fee14fe3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-x64.pkg", - "hash": "6b5db568e14efd7420e14cde34675cb72252f5cb3292b02f158f7295d538c260d1f34e6f7660e954ce94ccf1dbb3168591c8a87dae8e386b48e7e3cd2be71998" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-x64.tar.gz", - "hash": "5a086a4d0d0910c4bb036f1501593363324324d1664b34b0468a6e2b20b9580611c5855509afa1d934e3814aff6aa6c7af8acaad3ca3be13dcf24a9b4efcafde" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-arm64.exe", - "hash": "4293ef88534bd674b0bff5c6169fba9954751469000453bf57d1b5a2cbed699beabc8529c8cca3f1f943387265fc88ae222f3fa1f61e620bd58c2a9d38012569" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-arm64.zip", - "hash": "b6ee0c8ea795cc988902f2680d70b27b739fb1020df09c2adcc15bbc32dcb3f747827fff08bb5064e6cf570f88bc90333892819f836fcaba241a7ca1ccd6bb6c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x64.exe", - "hash": "98cbbca364f4a2f36086cf54c218c65fa7de166c8bf04c15dbdd6d8326b6691e738e88d31b6e3b969d36a094c76af007a2d5fe17cdd10a30323ff2c0907b208b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x64.zip", - "hash": "7a1bdc73ec79748276a8a57ff608c57c39076ec352b47ba15f7a05bf6738d9d8601572e5ce28cdc4ee6435fb97c42914dab4c84b700ca907e75b3c571559b08b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x86.exe", - "hash": "b5e1fda95b97bbe38a6f083e322622d62bf311f365fbaba246139f3aa084d7abe2aa2afc3dbdfbfcf68d3a99876d62218064a0277839b86cdc6c571284bb6d7a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x86.zip", - "hash": "5f896a4a47ea428d9a4c5dd7699941bc2c010560b6657028717a762b6d4e4baef05c1ef74beefabc516582c8a54c7924ce37d409d7e6074b8a0f3eb2263c77a6" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.7.23376.3", - "version-display": "8.0.100-preview.7", - "runtime-version": "8.0.0-preview.7.23375.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.8 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-arm.tar.gz", - "hash": "8d666df78ad89d518eab8a3ecfe85bba32c514276606b33a021ee3a645943a022ebe1becedf90d7a112e0d05608f167fd2d47fdf839191c80321ff21271cac31" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-arm64.tar.gz", - "hash": "454b664a8eca860727bc5c1fd729beb854a0dfee915867f773aba166592a8c63570281c88ce528dc99339e9bcdb8000f0a1ce168bcfd779b3ae2a69ce60d49d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-arm.tar.gz", - "hash": "14a3c0aaedc787f9a05258138fb70effedb627cb46206bfdbb912936472b78cc3e24878b10b03e95339d3b7382b46a13a87783cb6a77a49243b75b31ecd94cb7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-arm64.tar.gz", - "hash": "8e5bfb89b287f6ab478e6bd9f4ce1ec482ba4d00b2241f6b4d6081c5885ac0399233bfaf983994b485ea6541a4a2ab9b362cbd582012edb09a6785a7cd7fb292" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-musl-x64.tar.gz", - "hash": "6b7bf38224573496eae08e3000792296de81e16a1bd5a253236427137de4a6a9d7950c99f08ad764e337aa33140db5160218f9ecea0bfbd60c6e6f301e6dd042" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-linux-x64.tar.gz", - "hash": "8bc71a586382f0e264024707f2f3af9a2f675dd5d4fbdd4bced7ab207141fb74d7c6492dfd94373505962b8597ae379259d152e4ace93a65dad0f89600afecd8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-arm64.pkg", - "hash": "3d8d5516c4ba4905787b7e87b5d9f9fe28b96fafaa5df00a5e8cf32b3c502d6ee5b0c5698bff0f8b8dd069315e2d54d0b0e8e182bdcea1134e2d7211e1a0c6b9" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-arm64.tar.gz", - "hash": "db3167dd5d125ab400f29f9fc982eacec5ab69764323831985f374ccb57e102ee93ed3c607ac5e0fd733718b41cbe9079ec735ca6466f152a6b238a8fee14fe3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-x64.pkg", - "hash": "6b5db568e14efd7420e14cde34675cb72252f5cb3292b02f158f7295d538c260d1f34e6f7660e954ce94ccf1dbb3168591c8a87dae8e386b48e7e3cd2be71998" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-osx-x64.tar.gz", - "hash": "5a086a4d0d0910c4bb036f1501593363324324d1664b34b0468a6e2b20b9580611c5855509afa1d934e3814aff6aa6c7af8acaad3ca3be13dcf24a9b4efcafde" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-arm64.exe", - "hash": "4293ef88534bd674b0bff5c6169fba9954751469000453bf57d1b5a2cbed699beabc8529c8cca3f1f943387265fc88ae222f3fa1f61e620bd58c2a9d38012569" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-arm64.zip", - "hash": "b6ee0c8ea795cc988902f2680d70b27b739fb1020df09c2adcc15bbc32dcb3f747827fff08bb5064e6cf570f88bc90333892819f836fcaba241a7ca1ccd6bb6c" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x64.exe", - "hash": "98cbbca364f4a2f36086cf54c218c65fa7de166c8bf04c15dbdd6d8326b6691e738e88d31b6e3b969d36a094c76af007a2d5fe17cdd10a30323ff2c0907b208b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x64.zip", - "hash": "7a1bdc73ec79748276a8a57ff608c57c39076ec352b47ba15f7a05bf6738d9d8601572e5ce28cdc4ee6435fb97c42914dab4c84b700ca907e75b3c571559b08b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x86.exe", - "hash": "b5e1fda95b97bbe38a6f083e322622d62bf311f365fbaba246139f3aa084d7abe2aa2afc3dbdfbfcf68d3a99876d62218064a0277839b86cdc6c571284bb6d7a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.7.23376.3/dotnet-sdk-8.0.100-preview.7.23376.3-win-x86.zip", - "hash": "5f896a4a47ea428d9a4c5dd7699941bc2c010560b6657028717a762b6d4e4baef05c1ef74beefabc516582c8a54c7924ce37d409d7e6074b8a0f3eb2263c77a6" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.7.23375.9", - "version-display": "8.0.0-preview.7", - "version-aspnetcoremodule": ["18.0.23207.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-arm.tar.gz", - "hash": "92efb978a91f7d12b047e690e87fa0e9ea4b000f66440d535cc4e2ef96c53be44bce10942815ec28b9d72b00207281a95eac0f8fa1b95e8c4c8dfb5ac8ddebaa" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-arm64.tar.gz", - "hash": "8c4b4b36083d2b9c50e7f000d925f8a1cf0eb863367724892a12332970a6988afaf6a070efb97dfa3919039b780bb3a235fc51902c3762a4b5cd918f3082490c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-musl-arm.tar.gz", - "hash": "de339c978451d6a267786e2df5d03176e908b8f2620dee13556936f136236720a4c8b1929a9f43f5bb0d29c28a85d9642d290e5b4be4a09182f35d75cd28443e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-musl-arm64.tar.gz", - "hash": "e82cdf943268e56e739c094a0a4df685ec84790d8f10d3b261410ca434dc568f475879ffa57dc9765c1b2e3010578249c3a06eff9253556901fe364edf1c2a9b" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-musl-x64.tar.gz", - "hash": "88e3326ba726562edeb2db997e0be3e66f00de59d372df8ded1d5a5cea57254fbaf4b4cadc091ff5cbe18eb23ecbdc86531b48e8fcd699ba226ac55624ee61cb" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-linux-x64.tar.gz", - "hash": "b8c8a5cd579a8ee1e082363a73a05a745499365445f784e6ff87547f9acdbe8b7ba525140ef10555bc2802c13af131c2d568ec6af020bd0dd2fdf82d4c258442" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-osx-arm64.tar.gz", - "hash": "19008a9f08504d262d94d3e24662b4ced5e8a3294629afa008c30f6f3aec26baeb8404e7f8a01b0d3f48f72955b0d09b7a82a624ffe3925f08c5b46da12af991" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-osx-x64.tar.gz", - "hash": "246dd11df597ddb960befb92f6e3e27da9961cbec5898d01c1e49bc7d3b40f5eec1bf1fe0adb7df24c74233f43558aca8106be4d32f2479e340764f385528346" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-win-arm64.zip", - "hash": "156a4c1dccbc9f4f65e9d8381de45b32bb9b9256743129463a44d3808ed8bf4e058250319f150be426a2d6240b62317685b9cb0e59bdc9c3a22b0f54511669e1" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-win-x64.exe", - "hash": "d0e998a64c8338cb2b256023b957ecfb8f9d0b80f518556f5bce3c483965a08773986999538b51006a4ab098157877b55edac6d90ee31d431f316e55cf8d0df7" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-win-x64.zip", - "hash": "c28731642b93a1073c82ab7e94c10b67678167576c1fd40fc2a1abeee8000d68f3bce20ceadb1e8ad21160c9e0dc8cc1a399bab6f807c85bbd93b876d752a788" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-win-x86.exe", - "hash": "e5637d21955eea9722947bee5d08cc1f2a0fb63bbbb4e37f87e869f4da97f91a31896fb8fc2f2651bbf91530712715408cce35e9b28db06555a72944880be609" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-8.0.0-preview.7.23375.9-win-x86.zip", - "hash": "4f46a814681c8fc59fe4d6db285663a0e96697359788e00b447ffd733d8099b4e8dfae7c45d2788b9b6a3f86320efc87480e328987cd91c16b3d523eddf6deab" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-arm.tar.gz", - "hash": "9ef7d063b506277aea02d806be4e224ff208bbe607f18d9de1666be8b7b9e12d4fe9374dc9b6c54d3fcf9f5cb103e471ebdc048abb8eb39d4d953d716327a166" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-arm64.tar.gz", - "hash": "a6831c7d5e0b2516290224c57c8a410ad6943100cc3cf45be25cbf3a7b45e3ec933dc5f5d291c6d421ea9d2bf3c19f1102a9f5ad5d8a2ae4ba72ab48d644d325" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-musl-arm.tar.gz", - "hash": "5d0972dd9d5f19982c1afc0013f82e6e63bae45906438bd2b310d57ab61935df7bb9824e3e97943b895a3af6b83042ec92426580a371f0ce35e779c017e64a44" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-musl-arm64.tar.gz", - "hash": "a74cf44cb2f0f520b9d49386cbf14a144f8c22d6bffb1128525d9daef3c97c5f8104037d1f71373ce6f4da220ce75d925963615bc5c8e3be22b01e54928ee8cb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-musl-x64.tar.gz", - "hash": "b6232961afce820f8b02a8a6dc6a928b7e0de4b806ccffa0cb9adc97e715df310df8f4358b2f1f2163634d5468f23233f7b4a7171e58e058c35b8b232497c5f0" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/aspnetcore-runtime-composite-8.0.0-preview.7.23375.9-linux-x64.tar.gz", - "hash": "fd0573b40e3c007a02e8ca4c4c7486f6414249853712ffd3509d13bec0ece6f4b108c631d32188a9e68d562aa199c691472171572104707b8de8e5ac4958163a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.7.23375.9/dotnet-hosting-8.0.0-preview.7.23375.9-win.exe", - "hash": "9bcbbec9a87cc16b3b2cb519557d929a7e1685f538d8ab3c6f20e2b397eea2e11453ced804fc826107303348af893076d18f526d60b8f0f25bac77c19320a53f", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.7.23376.1", - "version-display": "8.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-arm64.exe", - "hash": "09907ab69032c2c415200e9f5f7c3ff59a601931b9c47da5e28207d42f397987d03e7765a230cf1b91e414f9664aa2375a3909c93cb47b0897b88fbcccb9afb9" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-arm64.zip", - "hash": "8714fbe82998b636d4bac3b4bbaee15a485517275a17c989341271cf9a6e6a8724c520b4dabf5a65ff97e1b7e3aad79298fd7f055fab6b108036ff8962b5c6b0" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-x64.exe", - "hash": "272cd281dae62dd3deb6cf5506c189ff7ce4919f9300082edc96307fc3596d47e1d9f1cf0109de637fc0f663b0bf262589150f1942e724f6688a2840876cfa82" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-x64.zip", - "hash": "e48075f1cba58c1a40746fed22f4433517cabc23dd65ed13106582620868bb829c476502dfedd057f65281c5db6dfabab17a61cf9d6e381f2d873921d00fa0ad" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-x86.exe", - "hash": "0595f1581ebdb123676bebd5bd1daf85647f8a0dc00803bf7541ea109152fc981b08ebfa4f1995db13d0e5d26ff51beea97de3feb51fc6adbb97ec5e5b1b2e93" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.7.23376.1/windowsdesktop-runtime-8.0.0-preview.7.23376.1-win-x86.zip", - "hash": "0e9e633b7b6d8663ae838d039b55f02a0494172251b5681bc87ad3555613d081ada5c76c664dc74cf3241fce295af6920b6f6ab402fca7b7caf4f8e18cd983be" - } - ] - } - }, - { - "release-date": "2023-07-11", - "release-version": "8.0.0-preview.6", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.6.md", - "runtime": { - "version": "8.0.0-preview.6.23329.7", - "version-display": "8.0.0-preview.6", - "vs-version": "", - "vs-mac-version": "17.6.1", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-arm.tar.gz", - "hash": "22bb9e49f8d69efc2864364318a763877792b27a5c472cfddfeb622e126892225c18cd80237336031f00e324b807dcb2316e6281d489d5e11620ef3e1fd2cfcb" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-arm64.tar.gz", - "hash": "870b08f9e861f51e5d3e36df13a164bdfd5bcda4349992bc7f05cf386868dac5658ee8e836fa7726168f8f8a9bd4e66268ab09e07acd81d924d9f43b93ac31bb" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-musl-arm.tar.gz", - "hash": "e76ac001841870347f4a4101396f853275474dafa42c03c11a8f3590f5413d90013b2e3e57a9f34d2bd5e0c0e8b7e68b7d63bec9655e05c5a978623ca481a3e8" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-musl-arm64.tar.gz", - "hash": "b17101bf0fcf75c526b7d15c9c181bddb6af23aa57153eb7d9f05b0d8ff7d3cefebf1041e7c92413d152e30c8345c907dc790f5325f2205a7c65a8cef494ffa1" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-musl-x64.tar.gz", - "hash": "4200335f7c2192cff85668bae6882c3f0296656730f532ebbbc218d1e52afa6d0d75f0369ee56cc91b5b5868f90a96b2004fc1c3a9fe0eacc07cff3974b5ea31" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-linux-x64.tar.gz", - "hash": "382a74804ef96aa1b829977ad125b132d5432c1956460187566047be02684cd027d0a1831cbd0fef1ca0e36bbfbb2a94a6e21e4be7fd9d7b663ad05b838f2f7b" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-osx-arm64.pkg", - "hash": "ef65532b7934e76f05b4896eb78819fdc6e1901758d0eef6a47702c53c3c4f319a987289464ba8a5c667d3c536ae602fa7c81c7f2f6d60df76fa24b23261b95c" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-osx-arm64.tar.gz", - "hash": "7fdbb3bb86494df348f3645cacc67c77eb6a5d1bab515ca673f653ae92454642585c178965864e2c8765806ea6f90109b00cfed68396dc0d651ed833777de182" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-osx-x64.pkg", - "hash": "edf6b5f6a9d9efcd34fc06690ec68f83bbd34166439188ecda0cf07031f9d9c83c161ae445c98893a96802b24b5d62076507a2a4411554c19ea8e179904aaa82" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-osx-x64.tar.gz", - "hash": "76131663472d5fdd6b8a214a898b324cdaa59f96808df7d7e8f34f25d423ef9a85a775da9fafbe2e659f616e5f1e3cd1d72b8bd1afa95790acf8e51adbf2fd45" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-arm64.exe", - "hash": "3e639e77c586df3133f54147d95dd51ed3c3db0d64f88c2b96bff9a4f6c27f0e33de651b7f67e0fcd7c48023beacb2af8bfb7672c2bfd785fd32e6c484f212b3" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-arm64.zip", - "hash": "d6e7518977be0b39e89c6e85eadf606f1ded7a5ffed98cc598c0d18e59dea768f663d3f95329cfb67ed17b741a736c2e542af1a462aa259eefddee2291a41867" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-x64.exe", - "hash": "447a5521b90a7cc572c14ad4102d883e59a13afcbae5caa376830443749f6ee3f6e425f346e4d6794bb5b69b614ee7653fce410be65486e585147d09e5bad635" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-x64.zip", - "hash": "e382cf0eec43ecca21816afd70c634d14c7f80505e49b03223485174da05889c9c043da04fd92d31e38f81343ed79a22277524f529650641393ca04eca912534" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-x86.exe", - "hash": "bf4d26ade50796c8527e54d8b329ce7e76eb808c769b10af6718a7d12318a6fad9d4389bd9c4dc77becee5af83e5aa92302b6a97c4649170cd8bdba7c30404cc" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.6.23329.7/dotnet-runtime-8.0.0-preview.6.23329.7-win-x86.zip", - "hash": "5043c2586ec6d1355a8db030ac2ea7498bda6392f45233b0c0e0b14d1d7d4e5ab00f21c4bc7aedf34903346fe6380f975bf28ef2fc5362b68afeb47f05bb7637" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.6.23330.14", - "version-display": "8.0.100-preview.6", - "runtime-version": "8.0.0-preview.6.23329.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-arm.tar.gz", - "hash": "bffe374b1a16e285ef5eae8f9ab89fb7e8fb576c7f9e1853f42561297dc7edc2280301ccf3d9f909c8468bdfa9064bdc9a05946e539cf9b7084133cf29dca6f1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-arm64.tar.gz", - "hash": "b7c83b9e6fb713a6b59b700bbc53cf929514ffd7a63870e021934c59349b40126c898c1b7428acb579d14973d6d2783a96956233eb36ffff299a5aa39f07730b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-arm.tar.gz", - "hash": "ff9f89c04fe35de9fb72437018607c530d25df414c8f56d5faf1b149d6f8cac8e7f779ebc9e3bfcb393d5a9e996c5296072595f1499e65f517c93c487d12d459" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-arm64.tar.gz", - "hash": "5166b11e5c33c6c7561923ab03967e074d66b1aa3174ad1c9bfc8dfc46b6db636b2ca74f018760be8610dda5b73dcd6e58af373ab02047921f03f10a8d1b128a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-x64.tar.gz", - "hash": "e102714b7b94a33b62d194356f45cb610dc5ab749906d093259cb14ae48abd463738c8068f037c8c4c299820c05d4b7968bb0d87d966b87e51d516116bf7bef2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-x64.tar.gz", - "hash": "ef568a1ecf6140237249544673a52dc496cff682d1a078e9309d195d78e632b3870b7fb23eb38cae7b0638c564f6aa340ca2e209c4ae4fbcddb84073138e8a08" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-arm64.pkg", - "hash": "41ab81a795aa6daf0fbb74f64aa74059a4a6ec5ccc5e4fcfe2fd507f210e357d4c71d1f7053556248a9c7ea29e2d6127f1b45df083d555fec0691d477d2500a4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-arm64.tar.gz", - "hash": "316f1cf3bbf7a7fc775e792ad9a5fb20432cec4677a0f6399004836f7e2c1f36ddfc13df8e47f7e08c16ee6b6183930669120a5cbdd7af173c84741cde135fb9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-x64.pkg", - "hash": "91d0973d31d0872dbc005a6afb64053cce62a99255586226bd696f911d0fb487669bc720afb19248edccff1f38def74346c9ca4b325375e2520c9ce4340352c0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-x64.tar.gz", - "hash": "504c1c05c012229210a7745c2be9e501416a7a87357dfb5c01bbc76096d367f1a376aae65358baa7a662e55805607f7ee5a38f9f3490778c6ae66c88534adf8c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-arm64.exe", - "hash": "0cc3b4787cb0ab40bdd415c00d4fe6e15477750e791ad17f1923949463d09e281e287144b9b3aac843d2be5bae7fe7ca229641d5078764c922aa538f1b9d0ff8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-arm64.zip", - "hash": "8989afdad5bbcde451a99bb1cc2ef2c5d3801334ad82471006fd0079b2fed8f514e29491be3fb4a28e3df75aba54f20a49c955da720b797778f4a8e062a29501" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x64.exe", - "hash": "eca21210333a8bd2f3c559a013ef5dcda2fddeb45a6b534c3e98108eb7d84e85f7798a1d49ad802cf564b80d4971d56fd1eb7560d432f10c5827c113970969e0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x64.zip", - "hash": "3c2813df353b7f5ff924fb0790e83e11905b4402a0acb7e951059a20696e3f0e8520541697470c681dc64cce2e3e7925dda96e684b136939d83a3bfd95790013" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x86.exe", - "hash": "5386ab41e17018c604c9f028a46b5b25deb879ed751917a73106c29b3c5debcd7dc73f8018a1d32fd6b00480395cb4d6cad37a1dc1bb622e41eec940499d3722" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x86.zip", - "hash": "7e22b96e8c00febae465dc09a4b3c2c0c49a1310c73f3ae374d2c8606ef73a1715d51c97050238f3f0384de401b7f5ef9cfedcb3cbb737c641e50735eecea358" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.6.23330.14", - "version-display": "8.0.100-preview.6", - "runtime-version": "8.0.0-preview.6.23329.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 latest Preview)", - "vs-mac-support": "Visual Studio for Mac 2022 (v17.6.1)", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-arm.tar.gz", - "hash": "bffe374b1a16e285ef5eae8f9ab89fb7e8fb576c7f9e1853f42561297dc7edc2280301ccf3d9f909c8468bdfa9064bdc9a05946e539cf9b7084133cf29dca6f1" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-arm64.tar.gz", - "hash": "b7c83b9e6fb713a6b59b700bbc53cf929514ffd7a63870e021934c59349b40126c898c1b7428acb579d14973d6d2783a96956233eb36ffff299a5aa39f07730b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-arm.tar.gz", - "hash": "ff9f89c04fe35de9fb72437018607c530d25df414c8f56d5faf1b149d6f8cac8e7f779ebc9e3bfcb393d5a9e996c5296072595f1499e65f517c93c487d12d459" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-arm64.tar.gz", - "hash": "5166b11e5c33c6c7561923ab03967e074d66b1aa3174ad1c9bfc8dfc46b6db636b2ca74f018760be8610dda5b73dcd6e58af373ab02047921f03f10a8d1b128a" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-musl-x64.tar.gz", - "hash": "e102714b7b94a33b62d194356f45cb610dc5ab749906d093259cb14ae48abd463738c8068f037c8c4c299820c05d4b7968bb0d87d966b87e51d516116bf7bef2" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-linux-x64.tar.gz", - "hash": "ef568a1ecf6140237249544673a52dc496cff682d1a078e9309d195d78e632b3870b7fb23eb38cae7b0638c564f6aa340ca2e209c4ae4fbcddb84073138e8a08" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-arm64.pkg", - "hash": "41ab81a795aa6daf0fbb74f64aa74059a4a6ec5ccc5e4fcfe2fd507f210e357d4c71d1f7053556248a9c7ea29e2d6127f1b45df083d555fec0691d477d2500a4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-arm64.tar.gz", - "hash": "316f1cf3bbf7a7fc775e792ad9a5fb20432cec4677a0f6399004836f7e2c1f36ddfc13df8e47f7e08c16ee6b6183930669120a5cbdd7af173c84741cde135fb9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-x64.pkg", - "hash": "91d0973d31d0872dbc005a6afb64053cce62a99255586226bd696f911d0fb487669bc720afb19248edccff1f38def74346c9ca4b325375e2520c9ce4340352c0" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-osx-x64.tar.gz", - "hash": "504c1c05c012229210a7745c2be9e501416a7a87357dfb5c01bbc76096d367f1a376aae65358baa7a662e55805607f7ee5a38f9f3490778c6ae66c88534adf8c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-arm64.exe", - "hash": "0cc3b4787cb0ab40bdd415c00d4fe6e15477750e791ad17f1923949463d09e281e287144b9b3aac843d2be5bae7fe7ca229641d5078764c922aa538f1b9d0ff8" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-arm64.zip", - "hash": "8989afdad5bbcde451a99bb1cc2ef2c5d3801334ad82471006fd0079b2fed8f514e29491be3fb4a28e3df75aba54f20a49c955da720b797778f4a8e062a29501" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x64.exe", - "hash": "eca21210333a8bd2f3c559a013ef5dcda2fddeb45a6b534c3e98108eb7d84e85f7798a1d49ad802cf564b80d4971d56fd1eb7560d432f10c5827c113970969e0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x64.zip", - "hash": "3c2813df353b7f5ff924fb0790e83e11905b4402a0acb7e951059a20696e3f0e8520541697470c681dc64cce2e3e7925dda96e684b136939d83a3bfd95790013" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x86.exe", - "hash": "5386ab41e17018c604c9f028a46b5b25deb879ed751917a73106c29b3c5debcd7dc73f8018a1d32fd6b00480395cb4d6cad37a1dc1bb622e41eec940499d3722" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.6.23330.14/dotnet-sdk-8.0.100-preview.6.23330.14-win-x86.zip", - "hash": "7e22b96e8c00febae465dc09a4b3c2c0c49a1310c73f3ae374d2c8606ef73a1715d51c97050238f3f0384de401b7f5ef9cfedcb3cbb737c641e50735eecea358" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.6.23329.11", - "version-display": "8.0.0-preview.6", - "version-aspnetcoremodule": ["18.0.23181.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-arm.tar.gz", - "hash": "00c40d60abd10dee7bba8f517640b60f3559137d3032a9916f0e5cd6ee0eeda3cfd903d1b214edf1e136450b65aa83cf0f00a90128d008bd78a92982440563db" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-arm64.tar.gz", - "hash": "61387e06d59e4a5a7d22c4b8dae6d984ddd62e4743824136c371a72ceaa5ec607af2bbae269df2d707bb80623d9ead6eac0765eed62531e1dafba80418ba83bc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-musl-arm.tar.gz", - "hash": "6445c2bc97c9b099dff8bd28fa6a2026717fc3a7b3fe78e73b21b0ecf6432c052b34fdd5611a527bcf7b857869b087b8b216f83404e8ade07b18fceac3665388" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-musl-arm64.tar.gz", - "hash": "d773344c57a1fe7584b1f7e50ec8ef1441dafb25c47775fee51ebe51076d26ec4efb05c6b654d31a8e60e5817c806a7a4d2dd7988ba133d25f71b68a784d1e6a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-musl-x64.tar.gz", - "hash": "87b85205eeb2b803bdda931b347d1186411af4e94a26a30c914d332ee3769926d141b5c3f5987f3838b7b30031d523aa4d04b854a92cef36691d30a60b6250f5" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-linux-x64.tar.gz", - "hash": "767ee4f67777d53edd322c771baa70d592e9fec99dce66e66a67fdd3c377b3f791f0f89b7dd5bbce932f499266f52f21449728849def706d976b55dafe2e6551" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-osx-arm64.tar.gz", - "hash": "345d7936e64db23daa092224f4658d6df5fce541523f76a42bfd68bd7ceb7a393b77b604a580b02a27e29550063b1a780da494f13be6955f0030a02cf17e7807" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-osx-x64.tar.gz", - "hash": "23877087c9b16f036a0710ae014901be2cdd647d6e5e8ed431baf3d8384175b5b81380dbe402f260ba07b5ca6856a746417d0e610ca4e858866b3dd174ed33d3" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-win-arm64.zip", - "hash": "a337e666c49b725988502e7c397e0452e217349b9467a224950162e62bdaad37c322b4c4e8799e233808fe162d5b3d89f1d9045ae65a6f0f6a9b067b2d66ecfd" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-win-x64.exe", - "hash": "dc3dbcc8546ce5f4c6ed1c6c05a0595f8f72fb3afc610c98dea35227b8aa2541ff82de11e1291120c2f6fe83389a33e966bbf675411d6c731669ac4dbedacbdb" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-win-x64.zip", - "hash": "d2c3ae8c3d4cd59f40edb1ee8ca607ea9d73828f9a22c800c517f07cb85ab5a475e186908c41f5f39e3de89a8a5046910b93878942f530f777e6641f4fd39e33" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-win-x86.exe", - "hash": "147fb62aaf65d33bcde7998079361e914cf8c09586a460d7dc7781b592e03cb7267ecfdd4b035feef58d09563a14d182af9855dfaec00a05ea3277ae493651d5" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-8.0.0-preview.6.23329.11-win-x86.zip", - "hash": "714325e24cb056e079011bc0a6382e30b5d6d1bcf0858e305d023b401f8372fdee3c597480164745484597e001f6116f52196b7e0c09b749c61cc15b8a947cf9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-arm.tar.gz", - "hash": "b7ac118f578202e7d5a760e89ff9dbd931552f5daef38ddc7aa1358cf48158669ccfbb1d2a1d1cfd38cb00785d440fc6508473a31ef17cd41450262561ea667f" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-arm64.tar.gz", - "hash": "dcee55dd728cbd1b09fb5c1731a82a9d746e733fa5e26b5a54b052a587f1a4e8515fb09b5a62dde2932414ec0a6df2170df98083197aa46d03ee1662429c8629" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-musl-arm.tar.gz", - "hash": "9e289cc2272cf4ad503d5a5b053063dd249e4db990af5e994259eca1db38bf6fcda7a26594af23a62765c4d93b2deafbe2620bb77f12a9c715815c22ab8a9195" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-musl-arm64.tar.gz", - "hash": "663a1e1083fb16467b8ac1ac433ccdfa07988d565f47585266de46d16a3173aa5fe84fd5887bc19e81a468a39d401acb316b47f09a21333cc8f9ac4b72b22fbb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-musl-x64.tar.gz", - "hash": "55fac05c66993eb2fea0c014cb7a72abe2c6a4932077eec65ab76860655efc7d296bba7d19c51c0e5d43c83eadf63178757d87cbff6e6c291d99790d704b7d15" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/aspnetcore-runtime-composite-8.0.0-preview.6.23329.11-linux-x64.tar.gz", - "hash": "5d1c34a1d3adefa63e5ab1d7ab39f062f66972536c1320a119da3a99ca175a3970df10c81b68d6e5654ff3f2a91e504e298b0711aac1d58f709ef4791728164a" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.6.23329.11/dotnet-hosting-8.0.0-preview.6.23329.11-win.exe", - "hash": "8eb1fd97d71ff1550875e770eabdeeb0dfd2d7855fa6174a851b549da104e5eff8ee4836026d258063911efe1b999eaaa77795b6113fa4ec46cd4ade0d29b0ce", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.6.23329.4", - "version-display": "8.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-arm64.exe", - "hash": "82a927012d83fe0c491553ccdc3f5647bbc8f976840c1fabfc25eb489efda1c0bbf561682c3c589fa6ca98c26c66a99511b682805d564f48b8adedf2a53e66ec" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-arm64.zip", - "hash": "7e991a01237c8be65e62c63c200920416e8e81bae07dd028507502bf890ba58a1f1d25eb91fb256b2b5c0a669d4084906925eb4f23c45872ea7ece30b2f53b0a" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-x64.exe", - "hash": "65b1b29a7c1b4c1c6fe5f404e51d9a8cc36f7b7acaba273e82ef5940498fd7fa55d5bd19731a3a6e43e4bd8accebb1026edf85b4d8875d3868c3c54d47eb054d" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-x64.zip", - "hash": "69cde639c31e978300963e807a4f6af3b15892966ac309a89e426f81c58f471b4d5180da7543c5bfc16dc1d6d71543a584ab5e53848166825206d3c748297a52" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-x86.exe", - "hash": "10f7b56dfdab6a562bc8f3783b3dd2b255c17905b26d9aa4a00ad6e60a8688365be50bce46a1afacfee833f0ac8bf384ee9a895eca15bd744b1e477b3ede1db4" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.6.23329.4/windowsdesktop-runtime-8.0.0-preview.6.23329.4-win-x86.zip", - "hash": "f65df62427781c4c614f9e758366c83d823c9845bf1a0b8ec63e85d223a9ebe55118f18ea047c7a1f32d361ac2461f2bfae2a5b9c1b8a07b1569c2ee945a95e3" - } - ] - } - }, - { - "release-date": "2023-06-13", - "release-version": "8.0.0-preview.5", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.5.md", - "runtime": { - "version": "8.0.0-preview.5.23280.8", - "version-display": "8.0.0-preview.5", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-arm.tar.gz", - "hash": "274c3b7b431ba7696caa0942475a1191737601f8408c054f7aa0ad90ae178077fbde48a720fee94fd77edd73ed69ba4da18d8581341ca440d3c25ba377303f61" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-arm64.tar.gz", - "hash": "e53ea13c70b4d358b3a313b3edb6e160a3453d62eee76b13c9f4bbb01c79eaf5a1aea9afa3b565ae9adb74f3f674fb5db9135dfe6cbc1be03b34a8d6288b3965" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-musl-arm.tar.gz", - "hash": "a481da661f3946761b9d2161a6e5aff4254b995db0d3b44732aaadec6b05f9d1d166ab21bd87e3a44e41142619c402b83efd82145fa1ea704cd193a02a315885" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-musl-arm64.tar.gz", - "hash": "0f4a239d098a0ba9ba0089b0ea9dbefa188e59f0d377fb8d94cd75af1ac1a03063c49ac277bf1700ed07a0d59ad913a8863616b071f27d0e3afaab4603bab6b6" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-musl-x64.tar.gz", - "hash": "bd70483fb053519f5d001571595394b0da27cc53d6fa9bdfd1d9dfb1059495f44e82662c996b98e9c421ebab5a1334ccaed69cf88efe0177228aff7475466e3f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-linux-x64.tar.gz", - "hash": "0fa3d9bef5300533b4f266fc1983c7bc8eb55c6c9e8ddf86978a3adb911663a2069c9ed9e428f8d2361558a40edef5bfad6ef75ea2a728cf700a23cd38e7bbcc" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-osx-arm64.pkg", - "hash": "d519cf5b97b6b1caae3b7e6a666475569412715bdb673143a3aa046a1f9888876a00e31490e86b505d1131d6313929c4b5f686b53257501d77f1dd48be9304d2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-osx-arm64.tar.gz", - "hash": "7c9a2086b05a8fa90b6077d3627d1afcddfd0977d3203759a66da3b0784cccdd88f1cc3c559b30f18d4892ee7cf9957cd0ec61eeb30a30532988a78146fa6bd0" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-osx-x64.pkg", - "hash": "b8fb3354d3320c15af3d595d7902f8dc7a1709e4e31b0c9a30a36dedd22096ecbe84f3d2d2f9e75b67c28217286685b0ff2b9c78252a5a8432e852dab36ef56c" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-osx-x64.tar.gz", - "hash": "190b316c22a833339d0af75b80699a50049cdb4ba0d3f0b0c5e2eed28900930ad7d6043f884ec01cc4406c620504f30cabaf3e3e30bb266e591eb34f22876ed1" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-arm64.exe", - "hash": "96121819da90431a6c5145b1b28b08dda2cbde63d26361c3d2731494521900208262c159f3b84817f596a41d5e6df55816fd56420d9580ffd4468e9390bf314a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-arm64.zip", - "hash": "253904976594fc53ed18ace0ecb6648b0dce52b17d54dade49fabdff5db9c3ce5886ff2ed0e68c14890f01929bff2ddbf199141c55e86db6cdbd681c01f2a3e9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-x64.exe", - "hash": "08797bc4162022327fbe71e57ba6c4dbf9ec1292d491b2141ae245d4d49e9b453c90305d532ccbf22aa65948535c8214b8722532e0e1538182c2864f98734c3b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-x64.zip", - "hash": "0100ded876f38bb198d9768e75eddd7fb7badfe8c0ac2877545d9004fd0844a4f36d65928ec6506ab8bfdc78b85d2623439ab914c0d9985ff0516fab289a4254" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-x86.exe", - "hash": "0d70b45c127a703f274e2b2c29ddf57118c80f12a0c727dec800fc013a9f63353213bd3c57fe51d978fa34afabfda80830b09001dec454b08fb1ffb761d16543" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.5.23280.8/dotnet-runtime-8.0.0-preview.5.23280.8-win-x86.zip", - "hash": "f3458e9813c8c0c98b941e0503cfe41ad1d5eda26f9af362b8bcdfe0f4ee2e409094cd6a66a1dde1a0cdfb221c061f90d8676fa7dc9d45e683353d696a0629b6" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.5.23303.2", - "version-display": "8.0.100-preview.5", - "runtime-version": "8.0.0-preview.5.23280.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 Preview 2)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-arm.tar.gz", - "hash": "31c2ecf28823ea90314f0670b0798d02577cde76ad1b84f6ed987aa93e699e3c257f160c3da5417e09b8c20516c2b4740a2ca0f70dffc0b14c5340fba1fcef37" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-arm64.tar.gz", - "hash": "13c6c559646c359ce07584328ef2e5cf5cb70371197deea9d31caee249c45b07ec1b874bcc5e3cb3b601b5ae280883cda555fd4cd2bf4a255d3be431574e46d6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-arm.tar.gz", - "hash": "28774a1dd28edc81d7ed3dae3c7baa4f0a7e67ca08835d688d234a7a8ffafa97b1b6b1e4807f67b8d583abad14c1542dec19434d079ec7ba3d7fdaece65155ad" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-arm64.tar.gz", - "hash": "efde54715787ccb07f59b2a5cdc1e69fbcd3c81c2dbb11d8073efe5518745f9042d2fd32334413a6c47a1af847e1fe0cfc70f33452d54c55da67d43bc611904e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-x64.tar.gz", - "hash": "e4b8d2286544398552394bd69731ea11c3c312a59acf10c0684825eb1203b8c124cedf8f5f66994b326a8dcc804ccf8e0879e3e126b986031cf4eaaea0c0bbd5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-x64.tar.gz", - "hash": "dfe2085a92854a5cee84cb7be9344368f5dcb6333c4ca215375a34b862f3a3ee66c953b9957f7b46f6cd710992ee038f6b4c2bd16464b4a216a1785868e86f7c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-arm64.pkg", - "hash": "dd5480b444d29317f47696845d26f793eace807549adcd516cac82632439d63f56998b7624d1ae1b2cbbdcad098ebe2f3f3f3f5a23e02477d6d375c4d02bf059" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-arm64.tar.gz", - "hash": "2b3c95d41fca29b6c3812d47561b14d312d270b599e88a8c02918695ec285d171ab69233567c11820bdc16fe03dabd33d23fd6fd8a987ae36f33f87e59b89f27" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-x64.pkg", - "hash": "187438f71539586c0a2372fe072bdfae78d6d0b73ce51d876d4a72feb5ad70fd75912f3add6b1ec9368eee9711b59c1c1200ce491b2b86663e26ea4ef3f7cb08" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-x64.tar.gz", - "hash": "f4f42021b88abe1adae7aed539ad0b31ad524a7f2af79a974030bfc50aa8b2e9424fd5f38cb25f40277eb9b0a76f68255e7a97058bac49c30c20a72ddc59d0bf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-arm64.exe", - "hash": "477138423baa0a0673a65022bf92575bf9dfc4e6136eb4fbd4a82c4ac39ec5d3adf7589cca2fac98fd667e4a0a3268df17132cfbd5bc8f9cc46f06636e2354be" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-arm64.zip", - "hash": "e6d8856264eba3fe77edae5574e785b0308cba8561b5b580783e72f5234eb4706bd62ca1cb9c81ad345e69df747cac697a367f02374a28ae869ce9411a1bc716" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x64.exe", - "hash": "e9782b344c58b9095a209934206aa6d8329d1c850e625ac89d42866a313dca19ecd1da3b83002a33ac880e482aa3bc24cdd14168b70147457ecd7c62c33f5add" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x64.zip", - "hash": "5de8ac61d97425429f9c1d67acddd3ae157526610e0cef1a42399d0fa19be7665f77eb7a44586d2282385411a31466a711da12a7fdf484776364f792c0518746" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x86.exe", - "hash": "262b0bd3e30fc5afb200f716d2800051785d2018c869cb3567f5305d87b4c0c6390cb8910ca83126efd0d34207020ca3c6bf8ca4ff3c4779f62731955578b563" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x86.zip", - "hash": "c9ffad27517ac279a621d0ee406db7a9b6012797f1cf6f5dc1585bc774e7d2a7719bf19dd072bfb49ac673c1d0618a7a82f8c56e26a3c3ad21395ea73c586cb7" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.5.23303.2", - "version-display": "8.0.100-preview.5", - "runtime-version": "8.0.0-preview.5.23280.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 Preview 2)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-arm.tar.gz", - "hash": "31c2ecf28823ea90314f0670b0798d02577cde76ad1b84f6ed987aa93e699e3c257f160c3da5417e09b8c20516c2b4740a2ca0f70dffc0b14c5340fba1fcef37" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-arm64.tar.gz", - "hash": "13c6c559646c359ce07584328ef2e5cf5cb70371197deea9d31caee249c45b07ec1b874bcc5e3cb3b601b5ae280883cda555fd4cd2bf4a255d3be431574e46d6" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-arm.tar.gz", - "hash": "28774a1dd28edc81d7ed3dae3c7baa4f0a7e67ca08835d688d234a7a8ffafa97b1b6b1e4807f67b8d583abad14c1542dec19434d079ec7ba3d7fdaece65155ad" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-arm64.tar.gz", - "hash": "efde54715787ccb07f59b2a5cdc1e69fbcd3c81c2dbb11d8073efe5518745f9042d2fd32334413a6c47a1af847e1fe0cfc70f33452d54c55da67d43bc611904e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-musl-x64.tar.gz", - "hash": "e4b8d2286544398552394bd69731ea11c3c312a59acf10c0684825eb1203b8c124cedf8f5f66994b326a8dcc804ccf8e0879e3e126b986031cf4eaaea0c0bbd5" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-linux-x64.tar.gz", - "hash": "dfe2085a92854a5cee84cb7be9344368f5dcb6333c4ca215375a34b862f3a3ee66c953b9957f7b46f6cd710992ee038f6b4c2bd16464b4a216a1785868e86f7c" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-arm64.pkg", - "hash": "dd5480b444d29317f47696845d26f793eace807549adcd516cac82632439d63f56998b7624d1ae1b2cbbdcad098ebe2f3f3f3f5a23e02477d6d375c4d02bf059" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-arm64.tar.gz", - "hash": "2b3c95d41fca29b6c3812d47561b14d312d270b599e88a8c02918695ec285d171ab69233567c11820bdc16fe03dabd33d23fd6fd8a987ae36f33f87e59b89f27" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-x64.pkg", - "hash": "187438f71539586c0a2372fe072bdfae78d6d0b73ce51d876d4a72feb5ad70fd75912f3add6b1ec9368eee9711b59c1c1200ce491b2b86663e26ea4ef3f7cb08" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-osx-x64.tar.gz", - "hash": "f4f42021b88abe1adae7aed539ad0b31ad524a7f2af79a974030bfc50aa8b2e9424fd5f38cb25f40277eb9b0a76f68255e7a97058bac49c30c20a72ddc59d0bf" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-arm64.exe", - "hash": "477138423baa0a0673a65022bf92575bf9dfc4e6136eb4fbd4a82c4ac39ec5d3adf7589cca2fac98fd667e4a0a3268df17132cfbd5bc8f9cc46f06636e2354be" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-arm64.zip", - "hash": "e6d8856264eba3fe77edae5574e785b0308cba8561b5b580783e72f5234eb4706bd62ca1cb9c81ad345e69df747cac697a367f02374a28ae869ce9411a1bc716" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x64.exe", - "hash": "e9782b344c58b9095a209934206aa6d8329d1c850e625ac89d42866a313dca19ecd1da3b83002a33ac880e482aa3bc24cdd14168b70147457ecd7c62c33f5add" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x64.zip", - "hash": "5de8ac61d97425429f9c1d67acddd3ae157526610e0cef1a42399d0fa19be7665f77eb7a44586d2282385411a31466a711da12a7fdf484776364f792c0518746" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x86.exe", - "hash": "262b0bd3e30fc5afb200f716d2800051785d2018c869cb3567f5305d87b4c0c6390cb8910ca83126efd0d34207020ca3c6bf8ca4ff3c4779f62731955578b563" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.5.23303.2/dotnet-sdk-8.0.100-preview.5.23303.2-win-x86.zip", - "hash": "c9ffad27517ac279a621d0ee406db7a9b6012797f1cf6f5dc1585bc774e7d2a7719bf19dd072bfb49ac673c1d0618a7a82f8c56e26a3c3ad21395ea73c586cb7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.5.23302.2", - "version-display": "8.0.0-preview.5", - "version-aspnetcoremodule": ["18.0.23154.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-arm.tar.gz", - "hash": "dc15a265c2ec45454f5a2823ac2dff229a691caff08881fe3777e37f40b1a3d2fa0c74af86c7331fc60811f88afa9c9cc4eee7594c33236dad62a56a0d4a7d9c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-arm64.tar.gz", - "hash": "b54203fc664d4390441278e1917fec13466df174672622740509ca973811cfa178a851ac930c6d0cb03410bab8f630f4dd21609d2d8706f8b64bc23fb88a1836" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-musl-arm.tar.gz", - "hash": "3995f7f9b4dc1d9c06082295fde6c9b2db10e6e680cec76d26589a95d42d075fadbcbeab630071c0e9d2258ec079fbcd86f20ab7986df683499f069a76fc52fb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-musl-arm64.tar.gz", - "hash": "5053934dc9ef63a321509b29f836f9e1277c8cfe63d6e7ed027ed5c393b11bb3b7912d044a3be8f299d0b642ff4aef81ad7be1be515a64e98c5c58025c020494" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-musl-x64.tar.gz", - "hash": "5e181bba7d2324a960f483c4474708232841a118baa3fd75a34245fc3d02fcca64a20211d0ca8db89dfe19f323106f6928fe7eaf0e691718b1f0f67a50eeab38" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-linux-x64.tar.gz", - "hash": "e9d570ceb193ab9a3e0b2ec3549bd1b67555ed4a333a6654ca8e4020bc38f42eadf3a690f996669c24af428222a6bf989b17b8cc0f7f276db928b2a40a7bc049" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-osx-arm64.tar.gz", - "hash": "ead98dd5d81efaf8b80f2c9223f55557a54c30f32118c778258ece80e6ff3d63cb55af85e4a1e463d88f356f54d790af35148b9025a9b86147bb6c4a3153b950" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-osx-x64.tar.gz", - "hash": "76da6d5bfaee0779aab41eaf2ca5759e2f0de919f89446883f6d8d46d4e1643fc9aed2b6095e00aa81ad05dc49c76ba2dc3ab09ae4fbccc7596b6977e5765ea2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-win-arm64.zip", - "hash": "3118fe33b4598545e6b497d59af04da1ec6b4d671371bf4e9807d69e8bc35736d83daf1d1605c4421006cf7682456ed4182615adefb62cc5326d11193d53d54f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-win-x64.exe", - "hash": "5064ef91133edb6b88177fda86d9c8b4b973316ffa0c45123e8e848cb7a0c1d0a4835d10dfbaee582f1a06ddbe0595ba7328027fa6e4338fa2e7c14186cce502" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-win-x64.zip", - "hash": "fdd02d60c3c3c9de0370d47807ea493bd040f324b21a2e2b433df85a2c8b6bd4ba94e280d3b0ad4c7365946a0e0ec13208749212a1405918af4520bf480cd81a" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-win-x86.exe", - "hash": "34ef72f7f1cdc7c68407f39d8f9df1bcb0d6322fb1456ca77377850916c2230c2c138785559aab7605e0b61351690fec79034b0e5fc4573b81dc3c28d6dd92e4" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/aspnetcore-runtime-8.0.0-preview.5.23302.2-win-x86.zip", - "hash": "414799a3f6cad98e2b771661b7a40edc761b7dd053c74cb441152c44821ba27ce51fb56c63942f3f2a680a283fa77f63a295ade53c0ef8583d28a043278589b4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.5.23302.2/dotnet-hosting-8.0.0-preview.5.23302.2-win.exe", - "hash": "548511e900cbf51899302909830b1072c4ac43208bf3580526b9c8f5e505ccd5b1a39c020975198555eedb884783b33c3500e49cb84f2ab411a9d64a1e1afafb", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.5.23302.2", - "version-display": "8.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-arm64.exe", - "hash": "910f20e89d86708127c68cea750995cf25b0185277be35aeeabaa4e6b5051cc1e4145ecc6239fc8faef66857a4bafed40f44c1d42d880e0a19b587be129fc1e8" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-arm64.zip", - "hash": "d37cb1c1f40a8834e816d2911445792e215d52e667544d20650e0e71365a62eca5afbc92a1482eaedfc735d23bd8caa52523b127417268c4b4bc652439e75b52" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-x64.exe", - "hash": "43825f24e58bca56064df4ffa52eb45f86160dceb076175debb48dafabb2550acda01fb895f53bebbfedfd78572fc795610887277196529779802ee1ceed33ad" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-x64.zip", - "hash": "27ff81f8db56e27c72f368ac8765d09aef30ed47d2063d4eba0fabe34a68cc85be2265bb5ba0974ff42a88d39d48e31b9c1d918de8f304142603f797b07c9a14" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-x86.exe", - "hash": "529f503de54ec894e3eee8352d68d03770b3c270392c261bb19abe8fbce06d97ee8fcfb0236d19efe78d34e017fe02535fc76310d7f0db5027ec76038d6da51c" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.5.23302.2/windowsdesktop-runtime-8.0.0-preview.5.23302.2-win-x86.zip", - "hash": "223a46e106969088b701ad73e1031b23ccd65b6f4d1b6ac3d9779fe534efd8559c246a6a5b25ac26c830d930a14a9ec70d3f45b5c3b15cbf505e3771f37935a1" - } - ] - } - }, - { - "release-date": "2023-05-16", - "release-version": "8.0.0-preview.4", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.4.md", - "runtime": { - "version": "8.0.0-preview.4.23259.5", - "version-display": "8.0.0-preview.4", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-arm.tar.gz", - "hash": "af02f76a32096ad28e66ea137524f1380283e234d4124241c07bd1470cab772d82ee01293fd3864ee06c493f23a182e8109b5bc14d2835a2090e63de7cb89f8e" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-arm64.tar.gz", - "hash": "56beb8b362028eee4751081811b51a6f5a741736ca2de401a9a9178deaf0b0b8e3790e3175e953fe59140ad0b80700d0b75894d7326b996700d97ed667233394" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-musl-arm.tar.gz", - "hash": "5ed22f8b27a188c52e78736bb48e375a7c3b3b7a92fb795ddbffd07d569d9aaf3576c7b760117de8830aabf8bfa6f3d7a49cb4c488b2915f0f68ce3b53d9b8c9" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-musl-arm64.tar.gz", - "hash": "0d6b731bb0a4e7da0dad86925dc74c4635c4daea23ebb7dc651e0b2b876839cb91dbed559b74112ff93be296992063fe68a6f406f6680d03817d129b497b7708" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-musl-x64.tar.gz", - "hash": "c347271a47cdbf53b7ee5ce1e89dfaaca6343f4810ce23129a60c766cefcd385d2769be6f64fe1547615e374e0b52ac1046e37be69ea712ae6dac77064fbbe94" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-linux-x64.tar.gz", - "hash": "02544cc1109f3d7e3fc2065b42c7f1ddd4777ffd8765456c8422b6c4b815abf60cac56d69058c2bff7c7c680d47bc6bcd3e00678db818387b6d09ce9b42f64d0" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-osx-arm64.pkg", - "hash": "603c348f2bdc0b5a23d08d017c570ff9a5e84ad7dd35b9a43d0d89915cdd1e90af8382b3fafa28a57377d73984ed60143e1a4eaf4f3c785d4cfc4850dbc8aec2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-osx-arm64.tar.gz", - "hash": "497dc9494c3aab67f60717598e6676650bde300170e1d78a14ffba955d76641b62852c64145b5358eca4a3c0b16dbb1dd8cf662c8b04df3202128d97e05ab8bd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-osx-x64.pkg", - "hash": "8af67aa1823566558a3b173e99768e4e57acbebb4cd9f505c6e31f6a4d701120195c5cbbf3c1357993561160786eb5d0f852414a3dc96a28e89a9debea9e8241" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-osx-x64.tar.gz", - "hash": "117af68c68caa2fba04cdb9ef5d4df230d315e30069a7dd378ae413db4dfcb789730f91b2d9898f78e525bdaae6b2b5bf521d5255abda96be35a73ca0cab3ded" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-arm64.exe", - "hash": "000e7766fa94fb71277b03b0c83b515d996264a0ed170b32af54657299e8dae48f3d99ca98b3d831321911fb16b31d36816fbfa68c5d39943482bc39d778d547" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-arm64.zip", - "hash": "8b8a4ca77a7ccb5845533233b396bb273dd83723844d3804b4b564179bd792de48034250e2f63a9aee77ce7b5daa2bda9e9542bd68ff67e5af839707c64258e2" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-x64.exe", - "hash": "ab53a8c190e934983ddf9a0e00407b0baf57a571124d66c29c6d422e95cf117db6aa1c33183e5c3c82467b219c821a29710bb1352b7b78a7138de2fdc48b3bff" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-x64.zip", - "hash": "40736d5e0cc25dd041dd569df1fe6f40c6c4da4ed5f34766a897e16d9fda5dc012bc3c703119ce1e1d4d61b5ace9c5a8e228245781370d986f054eaf7f9f0fd2" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-x86.exe", - "hash": "a32aac9bbf488e658066499a9bc7255ec8637b698cd8afdcb5d81d085f0bfe164d312728b715d43fa993f952b56794775e67d1201b06b9cab79d0fb82a79fd7d" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.4.23259.5/dotnet-runtime-8.0.0-preview.4.23259.5-win-x86.zip", - "hash": "2724cb3d396eb4f3207edbb3f2c919adede1dedbd2cdc8c21bf1ef75e27ab5e24a78c638ff6b1c8d6d6f9a8b5a8d708fefa14c3cc0e16ef4202bf1ee3a911076" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.4.23260.5", - "version-display": "8.0.100-preview.4", - "runtime-version": "8.0.0-preview.4.23259.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-arm.tar.gz", - "hash": "9863f324436cee98bfd6c77a41c9bd00840861d73b0d8154079ffd83d73c70c277c73757cf4b3e97f983b585386b7f83d54f59b266cbae710dc66b80085d01ad" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-arm64.tar.gz", - "hash": "47d9d1a67b58223b749fc1ca176c4dbd7049d7437f0717a61a6b22923b9a4c243e4d101c655bc1db817e281e0272ad452f4af6fc60c51d98493d85253e7476db" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-arm.tar.gz", - "hash": "78baacf48697910adff90fe1d9227926daaeb71365dbb6170f0a5d716ad474b3cf56bad08d8c78f5ffb8538e54171855eafc0a92cb2c8b9b7d30ee25c012866f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-arm64.tar.gz", - "hash": "89f83b097fcaaeffb246c71a08252a2e13bfff8a09f336fb8f994a6b7e3dcae3e69b8b516a2bc4b6e8a73a25d0dab4f283c1bab1cfdf070f5adda3186907d407" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-x64.tar.gz", - "hash": "bac2e657b22a79c0182f9b5b627b1da73495a0f80013d54b5f8fe34882411ecf72a13bda3397a2917d505dd9f1035aa6e441d5a0aa83205e7a47916c37f34fc3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-x64.tar.gz", - "hash": "1132220710d0e2deb97b58e0f439dfd86e965fc5347a2cc9aa3326ebdd98b21361fd6c019507a884927ee3b0053aa93bc0adfb67554ee5d9526c697ae9771551" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-arm64.pkg", - "hash": "3189306f765a81ccb073bf792487fa3d8ad9314ad3eba45b06f313e754b6c30377687dda6ddae3ba6c20eea070da6133a8604e6da0bd32c07c5d9274f6a20d8f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-arm64.tar.gz", - "hash": "d66f6a9008b707119b37e9d2fa746aaa126f5f87452f25aa4902f3e50d08844218e11a55ecafa731c88eaf9b5aef21d08f828064d722446719ba37e69940a813" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-x64.pkg", - "hash": "68aee82d058e054725d8936dbab582d0b08cd05f5c9946ca8e9a6c6cfd558f8b8d7a0e65c00a55c3d842eef9e1a4177f3a4fc19ec74beeb148591580c36bb951" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-x64.tar.gz", - "hash": "be1a7cdde31cf018d4d3b1d6c8305330bfc44b5c2e515c3213d162ab227d902edba16a8e422ab1d5441c712b2e50480d1e9240e6a26a51421c794840baafbe23" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-arm64.exe", - "hash": "439c40e7f7e3508a7e060cfc355f90ef3317dffa06e0cfdcc155fba4aaf84115218d7f02330979f35e1ba5ee2dccba2f4dd178a5169c50b370914847b1a077ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-arm64.zip", - "hash": "9297580f5b8d896dc5f697dbeaae6640b47bd75f41cae356edec04d6b58f4d90f257624a2e3be48fc1321edfee9408e1e103992157cb7ea9e1735db9202b6793" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x64.exe", - "hash": "396b23a3964f8a6b094e083ef03e9c2266a806cce275b37454a09f762dc8ed6779e12131182807de56ade22968cf1300ba6e2fb9c31044a1b1a79bcdcc048272" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x64.zip", - "hash": "1b71c1c8c84155c6289da3642bae77a41ec537e73b78218af0350bd588f5f5db16d464a3232cb5910e26650629313aff89e38e67f7abca6bd65ae6723e76a5b2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x86.exe", - "hash": "1fd2f1e3ccebf3272604b7f9aa49de0e94d32e607c381ecba7375bd1f04cee8fd1e5264216ce9175aff01a2e9256b21a1a61a2391fd2fc6f786d473206b1fc3e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x86.zip", - "hash": "cf131d60f36361e9ee4b2b34479842d8653795c6c813017a3f0521f69e62a05ad2426e2c46052c74023eff40efffe2100c1c383ab15b630c7c2a900c86f66379" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.4.23260.5", - "version-display": "8.0.100-preview.4", - "runtime-version": "8.0.0-preview.4.23259.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.7 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-arm.tar.gz", - "hash": "9863f324436cee98bfd6c77a41c9bd00840861d73b0d8154079ffd83d73c70c277c73757cf4b3e97f983b585386b7f83d54f59b266cbae710dc66b80085d01ad" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-arm64.tar.gz", - "hash": "47d9d1a67b58223b749fc1ca176c4dbd7049d7437f0717a61a6b22923b9a4c243e4d101c655bc1db817e281e0272ad452f4af6fc60c51d98493d85253e7476db" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-arm.tar.gz", - "hash": "78baacf48697910adff90fe1d9227926daaeb71365dbb6170f0a5d716ad474b3cf56bad08d8c78f5ffb8538e54171855eafc0a92cb2c8b9b7d30ee25c012866f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-arm64.tar.gz", - "hash": "89f83b097fcaaeffb246c71a08252a2e13bfff8a09f336fb8f994a6b7e3dcae3e69b8b516a2bc4b6e8a73a25d0dab4f283c1bab1cfdf070f5adda3186907d407" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-musl-x64.tar.gz", - "hash": "bac2e657b22a79c0182f9b5b627b1da73495a0f80013d54b5f8fe34882411ecf72a13bda3397a2917d505dd9f1035aa6e441d5a0aa83205e7a47916c37f34fc3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-linux-x64.tar.gz", - "hash": "1132220710d0e2deb97b58e0f439dfd86e965fc5347a2cc9aa3326ebdd98b21361fd6c019507a884927ee3b0053aa93bc0adfb67554ee5d9526c697ae9771551" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-arm64.pkg", - "hash": "3189306f765a81ccb073bf792487fa3d8ad9314ad3eba45b06f313e754b6c30377687dda6ddae3ba6c20eea070da6133a8604e6da0bd32c07c5d9274f6a20d8f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-arm64.tar.gz", - "hash": "d66f6a9008b707119b37e9d2fa746aaa126f5f87452f25aa4902f3e50d08844218e11a55ecafa731c88eaf9b5aef21d08f828064d722446719ba37e69940a813" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-x64.pkg", - "hash": "68aee82d058e054725d8936dbab582d0b08cd05f5c9946ca8e9a6c6cfd558f8b8d7a0e65c00a55c3d842eef9e1a4177f3a4fc19ec74beeb148591580c36bb951" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-osx-x64.tar.gz", - "hash": "be1a7cdde31cf018d4d3b1d6c8305330bfc44b5c2e515c3213d162ab227d902edba16a8e422ab1d5441c712b2e50480d1e9240e6a26a51421c794840baafbe23" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-arm64.exe", - "hash": "439c40e7f7e3508a7e060cfc355f90ef3317dffa06e0cfdcc155fba4aaf84115218d7f02330979f35e1ba5ee2dccba2f4dd178a5169c50b370914847b1a077ae" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-arm64.zip", - "hash": "9297580f5b8d896dc5f697dbeaae6640b47bd75f41cae356edec04d6b58f4d90f257624a2e3be48fc1321edfee9408e1e103992157cb7ea9e1735db9202b6793" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x64.exe", - "hash": "396b23a3964f8a6b094e083ef03e9c2266a806cce275b37454a09f762dc8ed6779e12131182807de56ade22968cf1300ba6e2fb9c31044a1b1a79bcdcc048272" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x64.zip", - "hash": "1b71c1c8c84155c6289da3642bae77a41ec537e73b78218af0350bd588f5f5db16d464a3232cb5910e26650629313aff89e38e67f7abca6bd65ae6723e76a5b2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x86.exe", - "hash": "1fd2f1e3ccebf3272604b7f9aa49de0e94d32e607c381ecba7375bd1f04cee8fd1e5264216ce9175aff01a2e9256b21a1a61a2391fd2fc6f786d473206b1fc3e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.4.23260.5/dotnet-sdk-8.0.100-preview.4.23260.5-win-x86.zip", - "hash": "cf131d60f36361e9ee4b2b34479842d8653795c6c813017a3f0521f69e62a05ad2426e2c46052c74023eff40efffe2100c1c383ab15b630c7c2a900c86f66379" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.4.23260.4", - "version-display": "8.0.0-preview.4", - "version-aspnetcoremodule": ["18.0.23130.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-arm.tar.gz", - "hash": "1c991eaf2e4ded395e1e86d8763180ea0a0cf81def5de03eb394a74947aa625d7e8238c96f3abe0884b61b73984ae7736689cf4a3dff41f8be410c73eccba03e" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-arm64.tar.gz", - "hash": "1224d2ebe38122380db54b8fbf5ce95a7666b2a2062a1f5da40a769e0ec859640ced391ca6cfabe21f5c0aef4a7b1722b324f361e898c9c8c4207198b0b390b5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-musl-arm.tar.gz", - "hash": "ec63ea429069fd4de007205691f04445aca29b24a47ae9aa5579f7dc0fab2e095a560a4aa2aa11bc9aba3407751a266e0913f4a8484117850706b729663c84e5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-musl-arm64.tar.gz", - "hash": "4bcff12b8e058eb27237395491b2b06c0e38455650f51d0a054ebf2ea1accb4c55a0ba921e4174a9bc267a5d6ec0474313dcf27f746729d3c05e07d101bd8ec5" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-musl-x64.tar.gz", - "hash": "138f547f45ae6e54ad8fa491e19b3ff020c17281727aac4bcda9faaae8a3480e56a46ad5f9157a7c30c90e782c2c54b368d7c618d10626e28574d71b3eea9025" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-linux-x64.tar.gz", - "hash": "fa2f95d90dafc11e083904e5795a0f9011ccd135a94e64149795a4404a900f0962d2d8cb187db2e5d32e0d8ca55387626e7201ac0c8127fba0cb499eb5a78c61" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-osx-arm64.tar.gz", - "hash": "c0c248789f312e7430850ce53400e041ed550f3ac6eb30ca16a83c344c6110fdd34e7e92bf3c06ca083a4b5b8f01ba37542ed9136458f0d3e41a6cfab22ea5b7" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-osx-x64.tar.gz", - "hash": "98cd0208733397e622afc725873983f8f4ee41cd5a7d1987f973e71b640aaa0210d99b4a3d2acffe3e1f016c5816998d06289d3ae509f9280078bb716962851a" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-win-arm64.zip", - "hash": "20383bcd39480c306aefe9a84aa78767f632fc7b0422c6397ba23a983a90172a30fa1ebc70b1e20911096df3beb518242f9547ecc5768a6072fba1e71d3670e9" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-win-x64.exe", - "hash": "8a9d6d9424ed702012ccd6209126e717a4811d115584a4873e5fc4eb8dace8e929c5aa2f8169f76e89240f1a94e264d7679622281e7cfac26b505b2c058658e9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-win-x64.zip", - "hash": "af30d31f986bc19881ba4a6479fe90a0db31348382f8ea05634d727e80588f1d11c05634ca113c1151de8e80122021cc68151e140ba748680cfd00b45260aad4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-win-x86.exe", - "hash": "d961c892a8490579678a14dc91cfba8bfcd7f093ed9910eed7ae90c3cb796301d808548468595c6f9464ee38faac7cb29555a3d9d78f8c794eed6de5f6237cb2" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/aspnetcore-runtime-8.0.0-preview.4.23260.4-win-x86.zip", - "hash": "6462bb1eb327a19242ce0c2093c83e6595401a396b2c4ac9ca6a06d42cf74cfd7716f2be8aa83e5fee6b57ec65411d76a1fd7593cc4dcc8df184760348969ab0" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.4.23260.4/dotnet-hosting-8.0.0-preview.4.23260.4-win.exe", - "hash": "f382c8b2f90a6c44cd660daea321f76f80dd8ef09c1468827f6750f436b90f2989a042251fabbfc88b34eb8b2e60e9c71b046c3e14812b1a629bb4573c0fad80", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.4.23260.1", - "version-display": "8.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-arm64.exe", - "hash": "37e9eefafcb7907eef67a44637be4bf94df6a95f553871682a90774fd39f191a2a573bcb06f16166231d05ecebcb308434e3becdb77717f754c8c8a12e3ca0ec" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-arm64.zip", - "hash": "15b72bda49477194398d43624c8340333c05ebfdef9d78b178ad9f565c18eb30ae07000258b9c00ae228914d516bc9e8c3a956cd9e12edb9ed720994fa0effaa" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-x64.exe", - "hash": "5f457dd6f4d7f31605ba7f1028d7ccd47fe45ccd5be36dd22047bfd2041bcb9fe837e902bc06cfe951ab36390f211c407de8cc8b58423fb075e048af8ab4cfb4" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-x64.zip", - "hash": "327c6ee4012b392a8af5a9daf08f2fe05f54810a0b47583283269546a37520755d998726b2afc7f0990059c05e9602d77812864ba340c7d681c0178dfeeef65e" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-x86.exe", - "hash": "24a1adc307e224c016e8808e9dba79a94d989dbfa09369f766f1586049b403ce9da925678317bb209284615aaf7e2ab2cb54df2c792036373b6063ef7f78556d" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.4.23260.1/windowsdesktop-runtime-8.0.0-preview.4.23260.1-win-x86.zip", - "hash": "c845676dc9fb2e825d82358250e1f05cf79f949f51bbb6ab6db9ebc974859c525a3c7af5b647f7407d75b6364c7a3a7739491109e41b005b9b93fe150e54049f" - } - ] - } - }, - { - "release-date": "2023-04-11", - "release-version": "8.0.0-preview.3", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.3.md", - "runtime": { - "version": "8.0.0-preview.3.23174.8", - "version-display": "8.0.0-preview.3", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-arm.tar.gz", - "hash": "b12f4c3f854edfe68e0afdc20d4093457572d3f3bb43e56ba98de880cf2442846cd20c75e9b5a08aaa14691fd32f09766a155c51ffe77bda98b4a4b1b9521c55" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-arm64.tar.gz", - "hash": "6ec1368fde8d4ffe5eef21e227c93ebe94d44f6bae311c5686d2c710240a025b5bc3716f3ceea18a8b65ef588a811828a0ad8b76db3086512786966fd111c15b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-musl-arm.tar.gz", - "hash": "f6a4b8f4ac24827fc44ee075221075dda2f7897bb99b11db48cebc412f4960bd09bd1cd2d6f32f39dfeb0ab487d5a17f05e6a1403b46645d1b7d5affcbcedc86" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-musl-arm64.tar.gz", - "hash": "3a80fda4fcb6215377cefc42d1b92442481939f40600101152173a465d2ac902f5cd689a9d48f5dfdf79bfbd00e05ae7eb94d82b3f252922c4dd34148df2295c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-musl-x64.tar.gz", - "hash": "de70a6763a48ede2569e7816fafa269e02b72e5c761d561d2f3cb4affc3754c8d9934a77f6be7dd9e0e497fb702981536675db777c61872cadc0599465dc082a" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-linux-x64.tar.gz", - "hash": "d0da20d48448c654ee548668a585b2272c661eb84ec6f845b3a49c0143ba1bfa83865f69da6bb607353a571e8c84b8e63650edf816641b1c5a55fa77a59e09be" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-osx-arm64.pkg", - "hash": "eda1b21049b1dd19c3d6418616b5eb0b8cf6781c1aa302612d8ca700d1aee45bc542755dae2e9b607c5d584ac0eafafa79ca6574eb597981ed079ec89d4544fe" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-osx-arm64.tar.gz", - "hash": "73619816e7570bde00105aeba9bd60ddbe868df4d25f4b53679dea01a80d81403215ee7caad7adf7c0128011b687539786e7bb817d652e993064ca5716d1fc1a" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-osx-x64.pkg", - "hash": "2706ed3c7f44c7b0d86790e21e47126ec9d3ba8d367d861429f959c3cc247f940f0ac2d90576e694ada10cd7df3d17cb2bc6dcde48b813ad437ba698dbbdf6f0" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-osx-x64.tar.gz", - "hash": "53c52fec2fdf5e5cba92f006d2680fa63ae8946ab0a6ec03b4a050e6d52f2e2e94ea01e0b8be63136f0c800907fca6c49dbb180711e8948982205f6c447f9256" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-arm64.exe", - "hash": "fcd6afb7b0bf75d9b8e558663fd755cc0c2dbde93ff7b95f4fd1e385b4aa605bb5319843f7e136c25d01167c5678c52b161e4a356d6efc56aab9e1ef34e44132" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-arm64.zip", - "hash": "c4119df551b700f12b3308b6280d04b06833abfe394c52a406c0ef257e1df945c9a5989399cc79550969690386bc8eee429f166c1154849dba1d34b4bf754ba3" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-x64.exe", - "hash": "44ab63eac479111e40769708b919855b7fe507dc544c5e8741a6326161b2b32356e5f422190e366cde3608991278de761a6c3c0d88cdb3d6dbb5c3b075efd437" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-x64.zip", - "hash": "c957da8844771ef060fa21f4d9658bb39f7ce435eb9a119e1c330696e0e5e9155807bd769228c2a0b11b84f094aa1a760dd3780e00ef08170bebfcccc4855d7b" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-x86.exe", - "hash": "45f189cec62b60d1a6351d9a6c0fd6eeee1d568d4114ed4bf03b28f973dfe167f5128658f373407fe0e20bcb467e6bed231f2a8365f547db831b9c718d2156e0" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.3.23174.8/dotnet-runtime-8.0.0-preview.3.23174.8-win-x86.zip", - "hash": "1617d0d93c5c27c14ada4b1aef061b5bff7eaed1fa204dc6ee76897b39c4d55327a8e4e7b812e9fd88ba3cc575e42ce672b6173bb741f038613e64018daffaca" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.3.23178.7", - "version-display": "8.0.100-preview.3", - "runtime-version": "8.0.0-preview.3.23174.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-arm.tar.gz", - "hash": "81d727b1f70854507f6f0e4075f3a2b98914378b1af2f69c8ff74dacd2ba5b4bd4971f4a9a353e14c710c7974ff5e077e259474b3eb1b8d86c516968326e2ad5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-arm64.tar.gz", - "hash": "c48840b3924196a12cc66b07249af37afb2b0f3b139eb304492a2320e7ae06cfc2391abd1da31e6e58287b8b8e564386f82c55eb9a1b16108f53a4d1d59812f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-arm.tar.gz", - "hash": "74cf6a2c79cb2c0ab5058330d8d07a84fa220d68089d0f2a6165cc2a2250477f092efed54738af3271db06b5a67df07ad39e30cc6e30bd3acb8916575be5a99b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-arm64.tar.gz", - "hash": "85f9ed71e81f753bd1d96752d568671009641ef75a9f6fb27fe38315cd159da4581739c121a69969361843d9429f04dc67c3a20969ad7e85b2d4a59308972923" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-x64.tar.gz", - "hash": "c4cbdeff8efb4f2b6f2842067ed92edb2c323d31df8c9ca7c5aeb4eb95320d2628977c20163c9c21bfb97f6a585f81bd5abce9d553d3c64c20389e3ef90ac838" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-x64.tar.gz", - "hash": "3b5d72979831256b9340a01db23d3b2dca801672546eeed04385949ed5f4363d3c731f31477ec82c7200ce88502dc45e03986c8acc8f2fc611b0343af5f1c488" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-arm64.pkg", - "hash": "01ddd22f7518fa89906db3d95e732133eb3c9ba8d9f390a52c042a212fd138943a03596694e543e7e42944a805e0932e4ef0907ecdcd047069f46179b0a7d528" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-arm64.tar.gz", - "hash": "f67ad34c23dca602e08987c12f07a39b6941682e35eae3f50efb95637b252e1e885a259f4df9be5bc0f5d43a14f16ec206a39c899683e22bf7b6a94fb2db1386" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-x64.pkg", - "hash": "8c3fc9693a0bcd0a923acc2ce4de52dd4b23d897885769df3ac963e133dcfc43a95d267c36ab2d89f6bf12e74e66f5051c4a91139ade62e0509e4e26934a26cb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-x64.tar.gz", - "hash": "53ab3f6449438ab6ee0ecdd0ae3759e5fe873b964d0b4e3ee5c8a48197a7c87ec83b956eb1b10aa90297403762eb2ddab0e99e29442db484b7ed3f9d00c8037d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-arm64.exe", - "hash": "fe586598b4655400601d32de6f3c23b5e7256678fb919297f9a421f3943f38250cb7a05604abdaeeacda0aadf8d3ac151de0f6c38a8a98e5bae6f0e29c36a910" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-arm64.zip", - "hash": "e2c8870dd32a7911291bb0381077fa1b845b08258fb983eeb67ff40833d3ffa68be837198c57bf6d8b78d81d119b4ec5abb3716d46b57889f11b62e7e66000ad" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x64.exe", - "hash": "8ea357cbc8319f6b2803e5bb4bf233b7e11e2bd35a10a5a5478431163f5ca354c14a23e06cd37937f47005637c339b0865da960d85ac6cf478ebe52c1ad6f7da" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x64.zip", - "hash": "a2da41640128832b67b672015cdc768ca1596d0f531dc2e2b18b1f54c74d7f8e2510e2c694416bf7fd441386711dd90633507d616188e39e7388450846884fff" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x86.exe", - "hash": "7b1bc9ba4eda572a2433d012fbb32fef01e7415de56a32a0b8ce7a0851ac78e7b40b31ccdd38ecc4442399bbcb3b9d3bbc4c4f8998e197d4efade1f2366ec99a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x86.zip", - "hash": "fd6d068d0a4782b1417217a9e8b528cf60da380f2e225ea41fbe181fff46c7cff36d0fcbe60c057aa7cc65b466b298ba290fae8e214ecd731180d133126ad6a6" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.3.23178.7", - "version-display": "8.0.100-preview.3", - "runtime-version": "8.0.0-preview.3.23174.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-arm.tar.gz", - "hash": "81d727b1f70854507f6f0e4075f3a2b98914378b1af2f69c8ff74dacd2ba5b4bd4971f4a9a353e14c710c7974ff5e077e259474b3eb1b8d86c516968326e2ad5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-arm64.tar.gz", - "hash": "c48840b3924196a12cc66b07249af37afb2b0f3b139eb304492a2320e7ae06cfc2391abd1da31e6e58287b8b8e564386f82c55eb9a1b16108f53a4d1d59812f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-arm.tar.gz", - "hash": "74cf6a2c79cb2c0ab5058330d8d07a84fa220d68089d0f2a6165cc2a2250477f092efed54738af3271db06b5a67df07ad39e30cc6e30bd3acb8916575be5a99b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-arm64.tar.gz", - "hash": "85f9ed71e81f753bd1d96752d568671009641ef75a9f6fb27fe38315cd159da4581739c121a69969361843d9429f04dc67c3a20969ad7e85b2d4a59308972923" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-musl-x64.tar.gz", - "hash": "c4cbdeff8efb4f2b6f2842067ed92edb2c323d31df8c9ca7c5aeb4eb95320d2628977c20163c9c21bfb97f6a585f81bd5abce9d553d3c64c20389e3ef90ac838" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-linux-x64.tar.gz", - "hash": "3b5d72979831256b9340a01db23d3b2dca801672546eeed04385949ed5f4363d3c731f31477ec82c7200ce88502dc45e03986c8acc8f2fc611b0343af5f1c488" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-arm64.pkg", - "hash": "01ddd22f7518fa89906db3d95e732133eb3c9ba8d9f390a52c042a212fd138943a03596694e543e7e42944a805e0932e4ef0907ecdcd047069f46179b0a7d528" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-arm64.tar.gz", - "hash": "f67ad34c23dca602e08987c12f07a39b6941682e35eae3f50efb95637b252e1e885a259f4df9be5bc0f5d43a14f16ec206a39c899683e22bf7b6a94fb2db1386" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-x64.pkg", - "hash": "8c3fc9693a0bcd0a923acc2ce4de52dd4b23d897885769df3ac963e133dcfc43a95d267c36ab2d89f6bf12e74e66f5051c4a91139ade62e0509e4e26934a26cb" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-osx-x64.tar.gz", - "hash": "53ab3f6449438ab6ee0ecdd0ae3759e5fe873b964d0b4e3ee5c8a48197a7c87ec83b956eb1b10aa90297403762eb2ddab0e99e29442db484b7ed3f9d00c8037d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-arm64.exe", - "hash": "fe586598b4655400601d32de6f3c23b5e7256678fb919297f9a421f3943f38250cb7a05604abdaeeacda0aadf8d3ac151de0f6c38a8a98e5bae6f0e29c36a910" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-arm64.zip", - "hash": "e2c8870dd32a7911291bb0381077fa1b845b08258fb983eeb67ff40833d3ffa68be837198c57bf6d8b78d81d119b4ec5abb3716d46b57889f11b62e7e66000ad" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x64.exe", - "hash": "8ea357cbc8319f6b2803e5bb4bf233b7e11e2bd35a10a5a5478431163f5ca354c14a23e06cd37937f47005637c339b0865da960d85ac6cf478ebe52c1ad6f7da" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x64.zip", - "hash": "a2da41640128832b67b672015cdc768ca1596d0f531dc2e2b18b1f54c74d7f8e2510e2c694416bf7fd441386711dd90633507d616188e39e7388450846884fff" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x86.exe", - "hash": "7b1bc9ba4eda572a2433d012fbb32fef01e7415de56a32a0b8ce7a0851ac78e7b40b31ccdd38ecc4442399bbcb3b9d3bbc4c4f8998e197d4efade1f2366ec99a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.3.23178.7/dotnet-sdk-8.0.100-preview.3.23178.7-win-x86.zip", - "hash": "fd6d068d0a4782b1417217a9e8b528cf60da380f2e225ea41fbe181fff46c7cff36d0fcbe60c057aa7cc65b466b298ba290fae8e214ecd731180d133126ad6a6" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.3.23177.8", - "version-display": "8.0.0-preview.3", - "version-aspnetcoremodule": ["18.0.23086.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-arm.tar.gz", - "hash": "bad2d354382d34a26cf3caa4344b25aac04260f312085d7490ac6abe955e3972c422b45be31ba06750b2ff81a8dbd4a3c671b795fd0a7c7c11af25a037ed221d" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-arm64.tar.gz", - "hash": "c5826d36daa4fab2779bb3b6bb94886bd98ee018109cf82b994a189cd6675b8f14eab9b11fc2a265a7bb3b8dacbe79b75887b1a81ee65c4ca690cef8a27a400c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-musl-arm.tar.gz", - "hash": "82d65a4d4d8a21396c17eb4fa0dc862cb4bb345976a27fa01171e6e04bea5d49d968a56ec90a785052f728134b7fb2f7d0dae46d4682c53da9592a6f5b9e086c" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-musl-arm64.tar.gz", - "hash": "098f34fbcdd2c7d6f2b5a87c4b7bf826d6607583903a995277d707ac6dbae1c341bbbcb812753dc9f83c353f8834c0ea2590bf9b3aaf876a9cbc4c2ad90849a8" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-musl-x64.tar.gz", - "hash": "33abc6a11d3228a82d93ffe787cb13f374704368bd1c8ac74392246597c7395fd0b3ae90f1dccf5ed7629787a4cc2fdb67e8a44d7276a28f20634cbf460b68ab" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-linux-x64.tar.gz", - "hash": "f990c63e651d71ef615aa494dc555fdcf66411431d07b7ae9bef50f276e863198212471b90bdd86686426d5907d2426924d1a279262035bbf3ce64d8914e590f" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-osx-arm64.tar.gz", - "hash": "9167ae736f29f49522f6263e6b2698b94fb0c4f21653a81a2ee1c8101d3c176a9b69dceed0c832ce04f2b84aa8fe0b14e7dac54dd965026e472429db739ddebe" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-osx-x64.tar.gz", - "hash": "b8354eccec9c8b77f6afe7b4ff08f300359dbdc6106731b3e5b9966e1060a6def949174de8edfadd4e90a65e3337f2c03dbf55a4a67e2d8dd51446600605a914" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-win-arm64.zip", - "hash": "4eee5bed876aa11dcb76ec7f7ebb3e730b3b97a60a302fe7fd8c4fe10520806e84e9186ffca9c025353893465524d839e57dcbf2e3f5a52819f7093e58c86a87" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-win-x64.exe", - "hash": "54748508a2b2b10f83f2c132b1a6ee18e86cc0d12d1b8005cd7c409fd7c1352ad1136e1dbe0ee2523d74c3ed20915b1c455e37502109143492fd1297eae32ec4" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-win-x64.zip", - "hash": "8e0675199604ac49b64cf30158e08e1af02abf3173a1b867685e773c5490051e0bc23e5ef6bd71aeaa454f723cd85589de646a48ca7e6c6ee290572aa1729ea5" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-win-x86.exe", - "hash": "2841d33a6f9d9b925db15438fc2369de016163fa1be358b78cc54ca0933dc5d0feceb428ff67e6e07f150943f4cf01a91f73f2b9fe04244e4ae67f6487c05612" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/aspnetcore-runtime-8.0.0-preview.3.23177.8-win-x86.zip", - "hash": "49471c387644b307f0660c194056d66e58ab5831f4c8cd343e660823021ddae359856403b4c686141e34a0cef9a7362fd00caece5de8bc737123f62610482a73" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.3.23177.8/dotnet-hosting-8.0.0-preview.3.23177.8-win.exe", - "hash": "3ff35c9541a705df991c4e1ce9a7285149d8da6aebd23f6c527e1b6c94ed7f864c0273178fb3fe591e7b44e187ad52f6244dc2c14a7eb32a50eeedf3855b6c90", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.3.23178.1", - "version-display": "8.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-arm64.exe", - "hash": "5c98db8969ff47e8118401882c2baca303da2fe070a88cc3975c6e679e4e4d2aea04887afe051ca3bc8fd6b268e93d3975dae3c724b47c27fd07f05ed68fa81c" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-arm64.zip", - "hash": "d7a663ee206d4498efb9f7ef7006ef89f326f0a3dff4fc86af7cdc34f62e14cf0c4aec4f895fef714bab1c7128676eeccbb4512eb6bfdf2d7f98ce34776ab38f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-x64.exe", - "hash": "fc9e08421a5abb7f44efb74ac967ded42ebec5af3cce974156fb98b70c1aafa9447fca63bfe1f9e66ed3b4848385acbf4af58b04cc8151465aa827142c5284be" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-x64.zip", - "hash": "798463f6ab02655602ec0aef9318c20434ec5b19ea628899c119c6a73c73afaabd2bf7ee796d3b0ce6e1709356ca811793a37366abaf5ab342b1d7842124e2c6" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-x86.exe", - "hash": "07902667e94a0ffdaa3fe0a1f6df86b07e1aece846e991974ac46a90a9e2e9bbdd804df06bfa19b7a001a26c636b98ea38223eba1248250ca7976ae289e3f8cb" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.3.23178.1/windowsdesktop-runtime-8.0.0-preview.3.23178.1-win-x86.zip", - "hash": "422385f46756fe6b17a23571b06b9fd1d85403f6d044ca99ebcaeb7f520b8615bf8a73d80b3c11b572a00b445098b4e1dea01793e1d617dff04c56452e49903b" - } - ] - } - }, - { - "release-date": "2023-03-14", - "release-version": "8.0.0-preview.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.2.md", - "runtime": { - "version": "8.0.0-preview.2.23128.3", - "version-display": "8.0.0-preview.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-arm.tar.gz", - "hash": "040a5ee6312dc71812e5807e0c00abae8376715b0850110b0967e8e470679a593cb21139aca6c28c29daeb14fe99c748082271699b1082b6cf3a636c88ade642" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-arm64.tar.gz", - "hash": "48a80c18754e46a12fb04e280cb23e8f9238603aeb0a91125a583eac27a7abb1b20d08b3121444085e4d2034380849dcda88ed69ecc5c4af7e8e3c38a3392921" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-musl-arm.tar.gz", - "hash": "891dc33e440c7419be426d9330dd15421b60cae7bbf602bf555d2f0b16aa4f822a20224a01dc28d3ea61a4fb78e84ec9a5256c7a7ff2df7fdde82485c86adc7f" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-musl-arm64.tar.gz", - "hash": "b6eb3b8a6ce0ccae167cb2b033a1c390ae574526439b2a86bba3b0b8531405b6ffd32628b2d86124484d7c5b5a65f762b5fdfbeac5e2690e10224a855aa04887" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-musl-x64.tar.gz", - "hash": "29071ed633c249ccc21d91f957fd0ac6f3898120ed5f13bbf9fead9f6d971886570660fc7ef6268530e413d716febd0de68b1316cf7c966b8e0fa4d5bc0049fd" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-linux-x64.tar.gz", - "hash": "b24bbea7fd0f1d5ca57544ccc690c05496667f30b0804b93a8baaea5e0d201bc471357e0ffac8a4fa5c399d3827942c7f6beb0e3a022e8d0d8cc7ba0ae86a379" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-osx-arm64.pkg", - "hash": "748cf5d830ed7bc2342977e5e5482ace225f6f188bc7046be36cb6514d02bd3712a925f3cb5f2b92f86325cb050dc4e5591c0ee2428fca8f97ccd55cacf78c6f" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-osx-arm64.tar.gz", - "hash": "d6dc11b7e5cea5e96e45a401027a2f3e498e41658b3a1862cddec009a96eea83cb929338e402960e150fb3f77da582f1416d0f5231d6beadfd32a443ad68e9da" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-osx-x64.pkg", - "hash": "5372fcb9b85c848fe4898773de413b2d0c03b5d3f1b9d6ca375da48a3dfcafe20bf5fad40b199c3d1154a42d77daf0d9f0814a66b24fd5e9966a49471f9ea0b5" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-osx-x64.tar.gz", - "hash": "eb5f6eac1211e5c0398882d4f5e1859b5e2439e0564da4fdd4c8b3a4a60d360a4b9b48c06bc048badcc2d6a2b539ee740f85ae6e7ab03bed40ba9574655fe044" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-arm64.exe", - "hash": "9a3f2b4723d86f895bcbf531b96ef7490943dbc67bc2d8609e0681f2ae00a4044f19ab440809736664a87ddcb1cf2fd0fb5b83af399c4f37f1448e164e38f9d2" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-arm64.zip", - "hash": "3fd2dfa2ac0ef78d48b5c9af21c1cf5ccb3a030a5d1119355282b928b4a4e87537811c92ed5a50fb6cc5cb3d28fcd063af3957000fe04e0350da5f3fc9e2c6b8" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-x64.exe", - "hash": "c8f5ac150d41124776eaeb7ecd36c530d132336fa1c2c1b17a416808763ddb2c82392d943ca572342aecedeef32730a9f3f530e282731390caec68d38f43267c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-x64.zip", - "hash": "11cf3b0273349d65f7faeb8f72879e927886885bcef41a6149951a25a0d93efcf44fe9174cf2c4b2214eba33c3b8add4ad1e9c247f3b3dba4259c35fcf5f79b9" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-x86.exe", - "hash": "2c750d7c3d14a4051e53b70976446b155da80106d277336741f89224e080bbc3bf185e07f0421cd386b8c70b5b1d93889cc0ffae6258f7e4f070a0e1b04d0bfc" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.2.23128.3/dotnet-runtime-8.0.0-preview.2.23128.3-win-x86.zip", - "hash": "4d9df98d89f81cd9f20486b8cb93e6d5b8ce06eb4f23ecfc8fee04a44578186832696b154d69a838030bf4c73979bc1fe7194df9d0850f9b4d08ca6f41954ba7" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.2.23157.25", - "version-display": "8.0.100-preview.2", - "runtime-version": "8.0.0-preview.2.23128.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-arm.tar.gz", - "hash": "e66d90ce97bf92ef237d7e25da63955bbf09c952fb498bf04a41728b68d6fb94d24566442f90ebae176bd05aadbb9d2b405691af3c78f79f6ed84d77b88bdebf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-arm64.tar.gz", - "hash": "440919e2c0d3e0bfb387e2d0539b39045c6581a41f0237c88566d3642ab2c5e4a8e540f3d9d514997bb4a17b19c64a46b80f38af5f66705da1349373f87448ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-arm.tar.gz", - "hash": "c338b11f74b8e00e25512bd675a2b2bf2ca7ac86b2b0bd02a184de3cec7bbb56f9066e54e8f9d9dc95bae2bd652e30b8465b26de08245b1d6fb4a9bd27d882e6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-arm64.tar.gz", - "hash": "b04b6cf3280434775e268776899b3ee7fe1b94217edfdbc7e166f493f25f52d74be5a97ef07927d102731314004fe57d40d5efa8038bc78dbe0aac5d7f15756b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-x64.tar.gz", - "hash": "952cedb092edc02b8f3c211f0387c56acf4fdcadf607344cab529efd5e36a52e9017187e62baf2453544b7255cfedcdb7b0e68e1523d6bd74bf3a8f0ec8919c0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-x64.tar.gz", - "hash": "97302c3600af7787fb136b226ca7e2a0a22241aa93dcffc70010b475bf6f8c4ff74a363d94949e1b64a91032b57a58a7065d7c6b2177696d8e78504ef4f1280f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-arm64.pkg", - "hash": "e0802a394d043a56ec95dab56520aba933f271fc4d8098833b9f36e1943dc9897bb727bac503c0c6e46fa9b5db446c804be27209421896461acc6c848d9d6c3a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-arm64.tar.gz", - "hash": "3b5c169180538a13c3199de0df096a2a84f58d2b55bc0dc94be374a015a231c035e57fa62e160e9c5595c6fcf92926ae9c577c6d62cf17803d931e5e90b5e694" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-x64.pkg", - "hash": "246cc88f89638475d56384855825381990650464266ca8b0de17fdca5c90d16c8d2ce27aa27bd01250d7b9a12f7fa67bef5e49277fe4bcaecad831e3f8eddafd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-x64.tar.gz", - "hash": "f3c4bd87d15a0593895121993326adef55641b59682ef52f6ff5fd44505468784590cf5fada9ea531377389ee47202db89de0520cdbbd497f85f5717fb74879b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-arm64.exe", - "hash": "2cd891f57c0bd9231b2e512057a6dd04ef69d9d614292d55511c1fa4840d3ffd6b3b4f2137976a9beb0c188df69d4af88d823981ff33ad3e6a5f255d69a893f9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-arm64.zip", - "hash": "e05186698c2313bf69e2a06754dbc44d94c65b0713d61fdd0491e5cf2f48e2e52f1cc460243159162596f845c6cb129ac984e97140856408d45b38c0a3fa68a2" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x64.exe", - "hash": "a27c2010ca4647bd8e70f87f7b7b6e7b6370dfeed6357a35310eef372e5134bd289c91325074cac6efdbcc0a373072c9f87779a49885a9a4e8f836a54eefbe84" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x64.zip", - "hash": "efb5f47bc7fbfc55079d1aef57f655f69e5cac19bed6a4eee68a1339425f74570f38677ca8659d7e6b64691a793bc767748cdeac5eaad0b524a1ce84ce82ba15" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x86.exe", - "hash": "95218e037768061fad7129af92e1c7a04f7a1c3b245d4dcdb5248d757757ab86b658070786a1f3856a35a88cd801e4bac7d13a32d7e976f60e6db37d4f23d2c6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x86.zip", - "hash": "0b15ccc2d483a2b4a71c0a7a08a6097bbfe36336888dd7cee3d64f079ae1e65186ec20001411b3dcfd611cb91b6e3b0c65fb0877fb5b1796681ad6a644e3cf66" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.2.23157.25", - "version-display": "8.0.100-preview.2", - "runtime-version": "8.0.0-preview.2.23128.3", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-arm.tar.gz", - "hash": "e66d90ce97bf92ef237d7e25da63955bbf09c952fb498bf04a41728b68d6fb94d24566442f90ebae176bd05aadbb9d2b405691af3c78f79f6ed84d77b88bdebf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-arm64.tar.gz", - "hash": "440919e2c0d3e0bfb387e2d0539b39045c6581a41f0237c88566d3642ab2c5e4a8e540f3d9d514997bb4a17b19c64a46b80f38af5f66705da1349373f87448ea" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-arm.tar.gz", - "hash": "c338b11f74b8e00e25512bd675a2b2bf2ca7ac86b2b0bd02a184de3cec7bbb56f9066e54e8f9d9dc95bae2bd652e30b8465b26de08245b1d6fb4a9bd27d882e6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-arm64.tar.gz", - "hash": "b04b6cf3280434775e268776899b3ee7fe1b94217edfdbc7e166f493f25f52d74be5a97ef07927d102731314004fe57d40d5efa8038bc78dbe0aac5d7f15756b" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-musl-x64.tar.gz", - "hash": "952cedb092edc02b8f3c211f0387c56acf4fdcadf607344cab529efd5e36a52e9017187e62baf2453544b7255cfedcdb7b0e68e1523d6bd74bf3a8f0ec8919c0" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-linux-x64.tar.gz", - "hash": "97302c3600af7787fb136b226ca7e2a0a22241aa93dcffc70010b475bf6f8c4ff74a363d94949e1b64a91032b57a58a7065d7c6b2177696d8e78504ef4f1280f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-arm64.pkg", - "hash": "e0802a394d043a56ec95dab56520aba933f271fc4d8098833b9f36e1943dc9897bb727bac503c0c6e46fa9b5db446c804be27209421896461acc6c848d9d6c3a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-arm64.tar.gz", - "hash": "3b5c169180538a13c3199de0df096a2a84f58d2b55bc0dc94be374a015a231c035e57fa62e160e9c5595c6fcf92926ae9c577c6d62cf17803d931e5e90b5e694" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-x64.pkg", - "hash": "246cc88f89638475d56384855825381990650464266ca8b0de17fdca5c90d16c8d2ce27aa27bd01250d7b9a12f7fa67bef5e49277fe4bcaecad831e3f8eddafd" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-osx-x64.tar.gz", - "hash": "f3c4bd87d15a0593895121993326adef55641b59682ef52f6ff5fd44505468784590cf5fada9ea531377389ee47202db89de0520cdbbd497f85f5717fb74879b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-arm64.exe", - "hash": "2cd891f57c0bd9231b2e512057a6dd04ef69d9d614292d55511c1fa4840d3ffd6b3b4f2137976a9beb0c188df69d4af88d823981ff33ad3e6a5f255d69a893f9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-arm64.zip", - "hash": "e05186698c2313bf69e2a06754dbc44d94c65b0713d61fdd0491e5cf2f48e2e52f1cc460243159162596f845c6cb129ac984e97140856408d45b38c0a3fa68a2" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x64.exe", - "hash": "a27c2010ca4647bd8e70f87f7b7b6e7b6370dfeed6357a35310eef372e5134bd289c91325074cac6efdbcc0a373072c9f87779a49885a9a4e8f836a54eefbe84" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x64.zip", - "hash": "efb5f47bc7fbfc55079d1aef57f655f69e5cac19bed6a4eee68a1339425f74570f38677ca8659d7e6b64691a793bc767748cdeac5eaad0b524a1ce84ce82ba15" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x86.exe", - "hash": "95218e037768061fad7129af92e1c7a04f7a1c3b245d4dcdb5248d757757ab86b658070786a1f3856a35a88cd801e4bac7d13a32d7e976f60e6db37d4f23d2c6" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.2.23157.25/dotnet-sdk-8.0.100-preview.2.23157.25-win-x86.zip", - "hash": "0b15ccc2d483a2b4a71c0a7a08a6097bbfe36336888dd7cee3d64f079ae1e65186ec20001411b3dcfd611cb91b6e3b0c65fb0877fb5b1796681ad6a644e3cf66" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.2.23153.2", - "version-display": "8.0.0-preview.2", - "version-aspnetcoremodule": ["18.0.23062.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-arm.tar.gz", - "hash": "8d119b0cab829ddee58605a5902a6ce89066cf04d60a9ce3cd7be1be6bb4b42969ef98e073187a89ee0d948fe93361bcc7912840ea519cdae07cb32769c26e7f" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-arm64.tar.gz", - "hash": "4109b7841aa022b777b0f2ec4191ba0773736b5b4411402a1de6d14a63d273a9114e897c7ea38d3ca0bb48de20b165712aba838a6beacf1c31885f1fce0bb2a3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-musl-arm.tar.gz", - "hash": "a00122ed01505414037dcb46932eec0b1814d1b187a8a5e3f3e56bb9e5c0b12b5721548e1228755cc029b5448d078c638588af29f00b1278493ab690bbd0ff25" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-musl-arm64.tar.gz", - "hash": "1d648ed2956b199a5d6581a167e3591501a75ef0af7329b1dcfc7a8aaef502d5163246b11c23d1d0760ba7dee6697256e091bc9a07b7ceb3c44954dfa7385611" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-musl-x64.tar.gz", - "hash": "506f11e3a4828c36be1cf020d153f87893c48b39077a81b522103998cd5180b9209feab95ac2f5cec849c0d883b017d57ed359911516c1287d049a2a7df04a26" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-linux-x64.tar.gz", - "hash": "1752ce53c8dbc59b3a321da7d44862410bdf29153124099106ec7397ab1fc650aa902849e198da38e5360f7ea5cd3e3f12cf78a9ec8121b666bf1db2080fd7fc" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-osx-arm64.tar.gz", - "hash": "62358024b8960412f9e457e2dba14f65e03a50557bd6cf23a6bd77de87539d6b93dec55b375375f1ae7ca88de16118d3dca9d72f0a82a31fb3dab0c8e33bbf08" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-osx-x64.tar.gz", - "hash": "e711051b2fc7593ce099b200cbe92e56a09e795afefc983f4e3acbbf90019e0b209c5c2a44ae3e3d8228a8c7fbdbaa5e3463ae4dfd7017a6d265537ade01d7f4" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-win-arm64.zip", - "hash": "f1206dc0ff28b23ac4daeccfb6b9492435d0983353c7c5f64da0f9c5646a7d1a51719431860deb59fa1ba5fb395f1367770d4e22d07437f08eaf32832690b5a3" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-win-x64.exe", - "hash": "e235b627f1a1cbf1115def31b127136bbd89c2ea717d95d2132bf3637af3118ff34abdaff65cd527199f9715876c3ff4d119eff62f8b547a5294e222c6915d6d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-win-x64.zip", - "hash": "3a02a3aec7441486c2941858d904b4437283ce80170dd5f708dd8a935e3b65088d75165de47d2232c1b0f626755ae32e4e99261d76c4395dafda80335bfb82ce" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-win-x86.exe", - "hash": "fa1f672ae42283fe1f52e49c202cd75b47a24e238bf57621cc6a2ebc7666f169c6ef59ecb993b5a85c8df69d96b8f3e67f095581da8af856664b8e428dd2f058" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/aspnetcore-runtime-8.0.0-preview.2.23153.2-win-x86.zip", - "hash": "12e1714726e9c794e63e549d393121e8bf7a923c355559a1927c6dbcda1e4da49c84eb4f26ab6c74833c04614fcb339c1db37c61d8904074cb9019a814d2a3f4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.2.23153.2/dotnet-hosting-8.0.0-preview.2.23153.2-win.exe", - "hash": "c88859e805120dfdd65fc8869aa2c80e28c8ed1cb0f3c9a62e29463c1f52fc161836529885a64d7917330f023b042cc14eb314055f4fb48e961d4e698676f1ef", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.2.23128.5", - "version-display": "8.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-arm64.exe", - "hash": "fb9fd996f13007899c8a79b244f1c07fdf8889a4eb4fe1b462d067a0267e5edc7dabe65bc6df319d3df3241d7f8b213061b1931486bd86f79fb6da43d09b496e" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-arm64.zip", - "hash": "85329ed2f1100d8e8caebf823ee963dbc178cb9dbc8350febfe515633135598bdd3fe59e2c4206f72cfb213f0ce94afd1097ebc38e1ae610e88b0a2fedc950f3" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-x64.exe", - "hash": "432d22c1a14e00cc1e57da079130e4e9af6db0ab0cade4d2236f1a4b2b1dd94317f5fd027ab431e543e51d2d74c5107a747bfa5dd9b2794311b187543d72972a" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-x64.zip", - "hash": "bfd1006fc0a92abfdf0c69ffc3ba5ee73c3583600ba5a13404b25e76820ea28f5d66841ef3d057e4a60fa48e943529c268722f90bf873784a53fe9d920ad7635" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-x86.exe", - "hash": "c84cf3e423842ce3fc37a9814022850695b33a1cbfbceeb472878eb7633b8c13f8b2fc67057ad0278a0019415e0335a51802aba74cb9e0edfb5688fbf4018867" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.2.23128.5/windowsdesktop-runtime-8.0.0-preview.2.23128.5-win-x86.zip", - "hash": "6896908f61b8521fdfd78998a18d401153e4c234e82fd38806ec5d759cda240031e3e557205d61c07ea3973ad051b4dd3de4310907b44335deb93d739cb6d459" - } - ] - } - }, - { - "release-date": "2023-02-21", - "release-version": "8.0.0-preview.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/8.0/preview/8.0.0-preview.1.md", - "runtime": { - "version": "8.0.0-preview.1.23110.8", - "version-display": "8.0.0-preview.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-arm.tar.gz", - "hash": "c7326339ade4ad1c15ee535f753f28dbb07a7a5c113697958bce8d002d98d7362862d1a773c88c0ee404a93783b05af6b2eea515cb988bac7d70a43b81ce36fa" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-arm64.tar.gz", - "hash": "2a15a8affb01c905e9ab4989f58a36bf9fec4e7395e3c44f143657e7d2e3903d7469ddc06c3fd57d3fcf48db4713d2ecd2c8ad2b3e361e8138e1890ba81adf73" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-musl-arm.tar.gz", - "hash": "30230899d63f2bf6ca69ad9ff7fbd309e70195fb760401f71ea38cd3eb2db149d87fff2c7b083d54e4ee2d6cbe240b60995a1cc218b78c85e23fdbd87c93c21b" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-musl-arm64.tar.gz", - "hash": "725b1bd5e4091136e5865d81e3b54bb36d1a55e26054c08e1324713902b1c2a7c6a479bda12bdafad92987509223873fb84714be1a9edf56bd39576896416587" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-musl-x64.tar.gz", - "hash": "461a8f6956d09261baa89ab8b205c191ef4963c2df0457bce8078a6c9a09a6bede4a5b3b6f95bc812f2480506a1479f7962ad583e5855c644731b27044f7d9b4" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-linux-x64.tar.gz", - "hash": "76436051d57d602e7d45055c64f5ef4db9a3af3358f880115442b3d7bdcd2a4eaad36c59d51d8508049418d9f62a3f7c0747d989d7d758bd84244806a6f83b02" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-osx-arm64.pkg", - "hash": "cc91713047a51595d38f9815427eb6bdf5a55070d1207920802f37a8a46dff2c9ed3e99889f07634062291e892bc527a88bf8db866d3f3352637bc8b7be05eab" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-osx-arm64.tar.gz", - "hash": "415ff6cc4cffc0cb25b92a88cd12f4653d087247b6e81b2e3d2f49b25363301ab239ef82d0d174f7dd7b31989ecfa8b6ed4dbf5e37d659fee864bcc22df0a908" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-osx-x64.pkg", - "hash": "8ea6edc0b5a0ab0cd421230815df0c5046b8f550d0c5a8a5fd577f319632afbcb0d57b46436e8d4e7f7b6fdf3c9c3dc8811fbbde2183231dcf2177c7b323379f" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-osx-x64.tar.gz", - "hash": "c07754ca2067f38a37b2e4f35eea1dd8a82757906ae21964a21d2c2eabddfb80cb309a2267e619b6bb2447b917d8b47948c7835063200efded1fa35f89edb4d9" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-arm64.exe", - "hash": "80a75d463f62300f866f2a1a284216d6eb11d5b540d48000b1504502453f17158333ebaf51fff32a2609a11c6cae1674dd1cf1e4f376c8880f79138d5644280e" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-arm64.zip", - "hash": "b2c0c68d94ff569fc460cec7fe1a8003ae374cc5a07e012575b7d5d5e11d42dc804f38587ba13a8e46c909784e847061011e913107a4a61d0d5a40e058491125" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-x64.exe", - "hash": "c8296d30bdfb73efdb591bd6c818bee5aeee820a76ce4919b08d18a2085285aca8bf743b67480de9d856535dbb7e7f4fb7526b925b05f5ce7e06b52310305d99" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-x64.zip", - "hash": "31010a619718599839225ba0a098fb2ed61f8bb486879a3e2d9a795071491e5e2da30417302774875851ab921161f1ef0a4bda0db2a8ea680e5dc87cc5785269" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-x86.exe", - "hash": "7799a81283433c3c425c1279d8e37f82f77c96d95e45e947c17c791b7348e1a1538aa4676de1813aed5209fe038a9828f4c4f32ac97e2360c3a4fb23c3e21ed2" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/8.0.0-preview.1.23110.8/dotnet-runtime-8.0.0-preview.1.23110.8-win-x86.zip", - "hash": "095f76ff2a235ff5d1d0c1741d9a6a410723e1301e6097c5380845ec9c8b6e2cd5a6aa20ae9546b09f03bed96f4f2c35f09850f9b19ae0e0dc451b60c902ab49" - } - ] - }, - "sdk": { - "version": "8.0.100-preview.1.23115.2", - "version-display": "8.0.100-preview.1", - "runtime-version": "8.0.0-preview.1.23110.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-arm.tar.gz", - "hash": "b1d9f2bad2c00412c2efa1821e972df317fa6bb5e2eb51e34c871d10d20b8717ec48ddb2b10990fac50a056774d66b3444a8a459da418b1d70fb53d9e7277ba7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-arm64.tar.gz", - "hash": "98518887927605051312554499e197c14b32e8100fe8d8015a4556fdca3a347a3d2215d14069d33b27d978489f3e958c11baf18ba33e1b98580d2eb64cc1097b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-arm.tar.gz", - "hash": "461094d1f53067c2b496ec25b1bf7686aee3a75f0de5a139bb29a3ac989cdb824367165c8385b78185414430f0579bbba8c94be6d511d793a16746dc018f232f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-arm64.tar.gz", - "hash": "bf985c3b9c1f6f09f46f88527c54445c502e7c75dcbc004dccfb5339d0b5766290ff183abe3808919137ebc5a50c91cbd58a56ec31ad50a5e39a26671e990c61" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-x64.tar.gz", - "hash": "120048fce7c455cb2f98cbdda6b7f789f210d9e7e0b48304f8fdc8b4838c705c6af18b2b4c375b57aa48e0e5084e60ecefad0edc09c19aca166855b3dd3fb539" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-x64.tar.gz", - "hash": "23a14c92e402161ed8d42ec9cb25a97868a1b72348195d28cffa00a12815f019308b56485e4375c0d0a33d9a683d83cc1e1a2a517eea44af8fb353171b6c3f64" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-arm64.pkg", - "hash": "c8d0e177ae009de55335da5bcd58234b1764c3787bd6087a728c489b27c510e1ad791732c44195d904743d23f115bb74f2dd522adfcbb223f4f3402209da79da" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-arm64.tar.gz", - "hash": "f721a28158406c7ddd048eb396dc0d8e85cf0fafabae2ea43ede7c709e3d1ce5a119652b4341beb5b00d69f1eb10c5a0e8a5024e1ff7c9107d4eae61a53c0bdd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-x64.pkg", - "hash": "6ddab32a7246ef94d0a9e397edc18223a0dffbc2a79d6824d176b3a41eaf23962b40f9b2fcbf7ef57908aa892018fbe23ad2dcbb713282f125a3f76dad0cb25c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-x64.tar.gz", - "hash": "fea01806116bb234f228cbfa254b75b97aab7ded253ec237c9c8391612da5df138b8a3ca05e392455520f04ade5fa2d1421f85667fe78d188b03ce96cd366ff6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-arm64.exe", - "hash": "02742d974ced8673c37ac4c33b5f7b29fe8969b2d6d43dbe345835c200a24f5c0e7018b141afa67400013ecdf7dc1c495b0d10c8a2ef8ba7cd2619570c0a66f0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-arm64.zip", - "hash": "82535278542727a14b2b39dc7712feff69df50f201ce99e7db0805cbfe5d96d9072b6f9a59144c460061c5745eec82c12fb7121fdcc15b112a133e20f45a72a3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x64.exe", - "hash": "ace0196fd62a8d6c7d78829d7640f3d8a885de2ead1d37ab42648ef12b8dc4bcbc2c26e4d47e83f07ec1403cd60c3e2c6d164649e81dece5745d2cba89c63a60" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x64.zip", - "hash": "608aa5c3c5c83bb37d69177f15a666891ee329e3990301f8b8df1b244aa5581892c13269665d463bb13b0c0049ef69d75bda26a205f0b72d4c4862cf4dcd1d91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x86.exe", - "hash": "b8f5ab9041a789189c7eebc343d36de0a4818f677fd1cf04e45cb2c4b57ad9e702680bd2489785e8a095667d8bd82df94971af085102f95fbda8a2dcff43ac06" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x86.zip", - "hash": "c4a7ceaf2f1998173f10c7b739ddb448a626dc179bc2acb0377dbe3885a3f0fa327f348824ce5a5dac6189668dd32182bc8c4aed5df22f7b582e783be7a9da32" - } - ] - }, - "sdks": [ - { - "version": "8.0.100-preview.1.23115.2", - "version-display": "8.0.100-preview.1", - "runtime-version": "8.0.0-preview.1.23110.8", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.6 Preview 1)", - "vs-mac-support": "", - "csharp-version": "11.0", - "fsharp-version": "7.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-arm.tar.gz", - "hash": "b1d9f2bad2c00412c2efa1821e972df317fa6bb5e2eb51e34c871d10d20b8717ec48ddb2b10990fac50a056774d66b3444a8a459da418b1d70fb53d9e7277ba7" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-arm64.tar.gz", - "hash": "98518887927605051312554499e197c14b32e8100fe8d8015a4556fdca3a347a3d2215d14069d33b27d978489f3e958c11baf18ba33e1b98580d2eb64cc1097b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-arm.tar.gz", - "hash": "461094d1f53067c2b496ec25b1bf7686aee3a75f0de5a139bb29a3ac989cdb824367165c8385b78185414430f0579bbba8c94be6d511d793a16746dc018f232f" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-arm64.tar.gz", - "hash": "bf985c3b9c1f6f09f46f88527c54445c502e7c75dcbc004dccfb5339d0b5766290ff183abe3808919137ebc5a50c91cbd58a56ec31ad50a5e39a26671e990c61" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-musl-x64.tar.gz", - "hash": "120048fce7c455cb2f98cbdda6b7f789f210d9e7e0b48304f8fdc8b4838c705c6af18b2b4c375b57aa48e0e5084e60ecefad0edc09c19aca166855b3dd3fb539" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-linux-x64.tar.gz", - "hash": "23a14c92e402161ed8d42ec9cb25a97868a1b72348195d28cffa00a12815f019308b56485e4375c0d0a33d9a683d83cc1e1a2a517eea44af8fb353171b6c3f64" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-arm64.pkg", - "hash": "c8d0e177ae009de55335da5bcd58234b1764c3787bd6087a728c489b27c510e1ad791732c44195d904743d23f115bb74f2dd522adfcbb223f4f3402209da79da" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-arm64.tar.gz", - "hash": "f721a28158406c7ddd048eb396dc0d8e85cf0fafabae2ea43ede7c709e3d1ce5a119652b4341beb5b00d69f1eb10c5a0e8a5024e1ff7c9107d4eae61a53c0bdd" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-x64.pkg", - "hash": "6ddab32a7246ef94d0a9e397edc18223a0dffbc2a79d6824d176b3a41eaf23962b40f9b2fcbf7ef57908aa892018fbe23ad2dcbb713282f125a3f76dad0cb25c" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-osx-x64.tar.gz", - "hash": "fea01806116bb234f228cbfa254b75b97aab7ded253ec237c9c8391612da5df138b8a3ca05e392455520f04ade5fa2d1421f85667fe78d188b03ce96cd366ff6" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-arm64.exe", - "hash": "02742d974ced8673c37ac4c33b5f7b29fe8969b2d6d43dbe345835c200a24f5c0e7018b141afa67400013ecdf7dc1c495b0d10c8a2ef8ba7cd2619570c0a66f0" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-arm64.zip", - "hash": "82535278542727a14b2b39dc7712feff69df50f201ce99e7db0805cbfe5d96d9072b6f9a59144c460061c5745eec82c12fb7121fdcc15b112a133e20f45a72a3" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x64.exe", - "hash": "ace0196fd62a8d6c7d78829d7640f3d8a885de2ead1d37ab42648ef12b8dc4bcbc2c26e4d47e83f07ec1403cd60c3e2c6d164649e81dece5745d2cba89c63a60" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x64.zip", - "hash": "608aa5c3c5c83bb37d69177f15a666891ee329e3990301f8b8df1b244aa5581892c13269665d463bb13b0c0049ef69d75bda26a205f0b72d4c4862cf4dcd1d91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x86.exe", - "hash": "b8f5ab9041a789189c7eebc343d36de0a4818f677fd1cf04e45cb2c4b57ad9e702680bd2489785e8a095667d8bd82df94971af085102f95fbda8a2dcff43ac06" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/8.0.100-preview.1.23115.2/dotnet-sdk-8.0.100-preview.1.23115.2-win-x86.zip", - "hash": "c4a7ceaf2f1998173f10c7b739ddb448a626dc179bc2acb0377dbe3885a3f0fa327f348824ce5a5dac6189668dd32182bc8c4aed5df22f7b582e783be7a9da32" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "8.0.0-preview.1.23112.2", - "version-display": "8.0.0-preview.1", - "version-aspnetcoremodule": ["18.0.23043.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-arm.tar.gz", - "hash": "6ae04e163c9c77aeb96b6a3bc2a4b99b83f2beeaac86ec918253bd0315f285d35629a78af42e7bd1e9b588510228de99fead1c5a20e63ac604634a6e259547bb" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-arm64.tar.gz", - "hash": "b8f5eb4087267f84bbea48f7c98f53d09cffdf269792c713c9d02b892ebc1eea075a39af7fc3cc63348ee6adc54179a5145b884fdf5d8853b7018c800073a10e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-musl-arm.tar.gz", - "hash": "4c94a76c0bbacd9c861c7b2dca385a15697f84a7fc1a51ad1dc23930dee1121da9476084ec4a2e358548ef2479d57e072218932ffa75fe511992cb9b99c360dc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-musl-arm64.tar.gz", - "hash": "bfe5b309e23938fe08bad2dae95e464f801f3f1f111c2dce20cc47e30a196248f96a5c52d0197c269a9f0afec9d031a5f04a9e6fab91880d83e527c67489ae9a" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-musl-x64.tar.gz", - "hash": "bc6f4d5680cf2597a65914d650c42f03c3e4fba5ff0354ece96ddf53a31e481679a90ecb2500df9ebf3208dd309ac12ae25b7d74676662cf9b5db6eaf8ef813d" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-linux-x64.tar.gz", - "hash": "8d7a5fbbd62078d55cd93dadb346e8889b5cf4a7337f864839d2ca32283d592d037b89cb0c9940df4cdd956b527fcd3ce5fe608ef7b77dc9ab6d04390e053495" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-osx-arm64.tar.gz", - "hash": "8f767d1ffcfd89c97ba837bec76253ea8aed226af8fbb29276fa5427034a4310232ee75d6bb0c08529040d589d8ca289fc976007d32255bdf1962cf827891c9b" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-osx-x64.tar.gz", - "hash": "c7915b24c7d6bbb522f43e3546ecc58a6579286c64a0bdcc8e4e44f0c01c516c0fa02da85755ebc167513ca5f9e715f818ff6283d90968a61a2be97f0ab8e2c1" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-win-arm64.zip", - "hash": "ebac66ee2405aabfce47d0f0da25d6082794e104c4211942052762a9753de6f3e2142ab865851448502c47b9386688952348fa95bea6e45d2cc94189197e4658" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-win-x64.exe", - "hash": "2881792bb3d9835d5a3ee41d4c6934692246ea7961cf4e596c8a9daea2a07d805728b00158c58df0a6f13f687817675df1be1b3215ac5df27e39d7ae7fdb5c3c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-win-x64.zip", - "hash": "8566042e64191583407a909d7a09c0eb04151b9fe446a3bdd34093962c37bcb940181695517fc85357ea16989fd55b729171409e2b862db5a3938ca6decc9542" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-win-x86.exe", - "hash": "cefc6fb971fba37182679e92c37fc624eedca32dec245aec0bba7ae48fb6d6b9bd63042e3cde7e04b4ea23430cff2788bb56a84ceb2db526c94492776d41786d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/aspnetcore-runtime-8.0.0-preview.1.23112.2-win-x86.zip", - "hash": "652a35718bceb77029e6bb5fd26cdda1889597c36ad42a73ba9f9e2de56f1c9b1424c0925dd4ae9506e70c168247009d38fa7b7e87cf7c0aa0cad8f89e750440" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/8.0.0-preview.1.23112.2/dotnet-hosting-8.0.0-preview.1.23112.2-win.exe", - "hash": "a2b763498ee630f4762b5919a90b744d06f32b38042578326ee50ef32a251a1dddcd2393c34bceb245c6941c0cc6b20b494f87bc1bf317f616d26b1855deb7da", - "akams": "https://aka.ms/dotnetcore-8-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "8.0.0-preview.1.23112.2", - "version-display": "8.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-arm64.exe", - "hash": "cf007573f4da1f19868b3f39a5edc06fdfe61d2365c686e77bf0b92ae3241c6bcb3985c1dc9d3969b490e85206cc7a7117e1cf23ac098fe2c52cb6cfe2de244b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-arm64.zip", - "hash": "ef6bc582c7bce29707276e7f1fe9e6526fb090d1b3f34dfd17129541061546eab95afca629764c7aa58d3adae8d7a00984cd3d7d3ef233b9d52ad3615099d965" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-x64.exe", - "hash": "421a1ae6ef6b884700a76c53a1b10b854a2cec0ebba4f446a37071d51660bcb67c771ce868c949f6490592a01456bc33723c62a18bfa79eb0aa2c085539106bc" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-x64.zip", - "hash": "c0e034cfc7f3f47bcabf11599d976c29bc89d80b10d529dbbe73775860fbda0b0ff329d1e8de263b59942713bf764c6ff51f9cdc49009c7ff7ef1a214de07502" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-x86.exe", - "hash": "6ddf3a093ef5f4e1311b7c5a23827be217cb0e6f7714b62804856305150e884c90319e816e54b0316bee58651b6b3c91c97f5429d5efbcea25948305c9c1ab81" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.0-preview.1.23112.2/windowsdesktop-runtime-8.0.0-preview.1.23112.2-win-x86.zip", - "hash": "8a79b779acf361f36fdb2a8542b97aac297ebee28259aa03efe83d0c27aa96f02b57883a463e7d56f57bf8053b1efb1cf6cef922bb3c6a56efc2718c327f1dad" - } - ] - } - } - ] -} diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/9.0.releases.json b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/9.0.releases.json deleted file mode 100644 index 58c99f92c1..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/9.0.releases.json +++ /dev/null @@ -1,11172 +0,0 @@ -{ - "channel-version": "9.0", - "latest-release": "9.0.9", - "latest-release-date": "2025-09-09", - "latest-runtime": "9.0.9", - "latest-sdk": "9.0.305", - "support-phase": "active", - "release-type": "sts", - "eol-date": "2026-11-10", - "lifecycle-policy": "https://aka.ms/dotnetcoresupport", - "releases": [ - { - "release-date": "2025-09-09", - "release-version": "9.0.9", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.9/9.0.9.md", - "runtime": { - "version": "9.0.9", - "version-display": "9.0.9", - "vs-version": "17.12.12, 17.14.14", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-arm.tar.gz", - "hash": "ac9c6ce4d43e8bc62e653d345d32b54186944ef778711f7f8352dfbe3e5fba863f8e088771d29efbfd2df71da1512861b2102f75d2a74bb288d510b1fa294584" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-arm64.tar.gz", - "hash": "4868c06467cb5db0c70d4037631765d639f6e0fab780d3631f04b22ff3afeff88aa5b99004886da06f6e443967819234c45915d2929c066edd8524fe25c51d0b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-musl-arm.tar.gz", - "hash": "d446d2329f69c755d2cf3097a8ed268bae66bc731e82dd28b66e6878faa13d5d0893de9066ff9e5fea9dd20f05836e682209cd5eb4a3969bf8777a925de4e77e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-musl-arm64.tar.gz", - "hash": "9326c2695e33b7c1840b33c1509167e766391fdeee1131cbd64b8dc122c1fe5d38cb70e9f7a6dcf34f32ca58a960e9535a52d0dd75f2c4d33005043113dbc966" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-musl-x64.tar.gz", - "hash": "a37d321ec090f0f947264632093db5c6885f913da036cbd47122fbebabc754c150aac498c4b71efd6f64196e1114a397c7e396d3702eb1ed00580ebb150ecccb" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-linux-x64.tar.gz", - "hash": "4faf7e615880e3680681e18108e8f1288074fd43e6ac0cd1c244b56e8bff7a6ea8bda2a71ecd84bc0091094abcbf792a9da1faaf271fd43129773642e27b25d7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-osx-arm64.pkg", - "hash": "b9e2d2bd59c2161d1ddc804c175cec0959622170ff6dad7dd8837794d38da4ff22c4804f9ea02173b867fd618e3abfcb948c9daf5823c65ce9969e1f2beccfca" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-osx-arm64.tar.gz", - "hash": "c0958a32527dfe1f41da572da90ddded2a534f1e4eadedf5129652d10a2816060e328d551b6546789af67159462712f694b5c42f53abee2cc46193fb43a21f23" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-osx-x64.pkg", - "hash": "354f2359c90d88810af06b29489e1623242e0520e83b4c8ededa0d739533875cf388786bcd7d6d0acb2a290cc12678f2af136dd2c1cf1234e8e27ce06ee92721" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-osx-x64.tar.gz", - "hash": "62c2f61eb6c1eddd32ea15779c6056a3fd33cbd14fd54d9b3008630a49f97f895026cd4ecba83c961030dfd783cae480fe7c3613428d2881a5c5af4eea7fa3ff" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-arm64.exe", - "hash": "6684a0c85d24a575333ebc6e582f5e70c4bd770c28807f056f2c2559bfa0254e9a2521326d96f0cfa2b3c2d8d89df1ed4c0d626cdd087aca3055bed96a5df9ac" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-arm64.zip", - "hash": "637c26691179b9efcf58d034220b887ec29536f35b2b37351897bccdad8c0add2c4efe6ec15f9396fc9f9de59900259f80550f93c3c764635b1d6bf3cdd951e2" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-x64.exe", - "hash": "d2b31d5d9cf7704b154cde311ac46476b3fdefee6804fde7739ac63fc08c6d142656c9b54cb7c9b949b29cffe77c1f87d95035137e408fece9fb48145e5b7fd5" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-x64.zip", - "hash": "0e506ba1c1b34607f8b69b71ef4b7b28dcad63c2ec5e643e30265e4cce209711a7443170c8216ec5663e34fd77106f85a13956ddc8690021ae50c89ffb1f252e" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-x86.exe", - "hash": "c3959da19ff6fe2c41df35301018e0ea4325cf43d2759b767af24970e7def801e62db98758c36f7b5671bc03cbfbd3a079c9dd78b570e09e0d06bf3b59cd8433" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.9/dotnet-runtime-9.0.9-win-x86.zip", - "hash": "b7447a15daca3c608d41914a34d7bdc7b02c6f1271613c4d7342116936ca47e725f058864b60927a3f1b5e564d59c5f833b9ed76a6c543a0be9de6d37a857855" - } - ] - }, - "sdk": { - "version": "9.0.305", - "version-display": "9.0.305", - "runtime-version": "9.0.9", - "vs-version": "17.14.14", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-arm.tar.gz", - "hash": "771163ed363c51a1ab226ab142a1b0fdd09c675e2e0a979d02c6816cb542d09c26d353ef20121ba7a56d23534df96b0645cb94a061d7316a563e35bc3e73b0ba" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-arm64.tar.gz", - "hash": "bbda603d10a134e4fef4597203491937bb4fbaeee190f8b6dec79ee78292a1f528a842ed44b7a6b37b49517cf19c728551078cc6b21c0b2b2d6d811fc95f9c8e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-arm.tar.gz", - "hash": "2bd37ce98732a1ed5d4103b93e7cf425be111ac5d24f10bddf419e285090ead677411c53635127be64531ba0c51d18daf16d320afeda8a00517f0a2e92ec2b84" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-arm64.tar.gz", - "hash": "ef000de231a3aecbd84c500404a0fff5defef4f6516f389f2dbe424cac27dc9d37c4f1856bba7afd4ab796dc39b2d90c50b7637f3a9aa268c2461583dcef18aa" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-x64.tar.gz", - "hash": "f78778d9979ed8443e10f575b97a7189cc632e1023b56710f5fb9acd030267e1a92ac66d33d4400fee22e5e36c8ad5d59b7d1101857e21170eb7fd5403524e0b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-x64.tar.gz", - "hash": "f9140e141d731d37de9b6e1eab0b25726f0b9de24d2888a4200649880e9e43671ebb3897a249f4324c214d56eb3e7f0ef0cfa56b32850a9c03811b21e6377bca" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-arm64.pkg", - "hash": "bc32f8eb7068baa6e9a3c8933773ec6df8a05a0d7dc8cc9ccd1c4f9933ab1b585048194db2377d54415eac6855f0ea29481a0441e5f2b91335a82ec169574221" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-arm64.tar.gz", - "hash": "57f3d64fcf03cfdcac4e4ce0fc8b553255dd538007b6e05daf7f425a286a044de54ff67b1ccca0e9601e67e322810cc059021ef805b02de83d5828b7872941cf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-x64.pkg", - "hash": "62ff6ffb4bb4198250e361ddcdc3374cf776f45392e631ecbd7c19fa2abf8f3c736327573d2506ccb23ea0ac1498d91e5f6cd2a26744c5f7c3fdeb5e39528646" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-x64.tar.gz", - "hash": "6ac0934c3801ce9dbb5892799348e802d64deeaf61aa56982602d9d2fde7d66bdd855bbd156696261b065f0c6ad4140b1d2942d7bcfef0c5a30c23bfd5ffd063" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-arm64.exe", - "hash": "717262aa4e966a5a99ca39fb89020c5791277527e70d385b00cf8a97eb7d9cd698ae4bf17b9b4f99714ed4598b7de370e0e737a6162d256e298e08960602c435" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-arm64.zip", - "hash": "0b700b21ff08ebfdcd6c4918e49fa2e4030d6b6e946f8b739f2b2586e81bb07f1220599452afe3b59e4eceafb73f109d54781d79911d351a4f4f380d7525e3de" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x64.exe", - "hash": "b673c764cace21443f31921412efef69c2b827041853c229c7e0b63f1975cb0c791b0b1b8a745b6d5e7e5070b73541c25d8432088883ec5b6463c50b9aaf76f0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x64.zip", - "hash": "dba55e7566acf4f33bf0dc4f2378bca891a3320070c11a24ac27e22ffdd6d1ffb11aac670d4b5f2a056d0698c72db23a787749e054c828109b6554b4062bc31d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x86.exe", - "hash": "e514018f1836cd62aeceecc59850da48c65ae4f12475971b3fd54233b2439f0ac245b12622426516fe11f94c2af42bd2652f086e9c79e48bf4ff33309c316d82" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x86.zip", - "hash": "76b75536278b8ee08e6b5eb919ba05534591a3c884881a0329ca78090b996df0fded2e6bab0502cc6d17dbee92fa75b986d36b2411b79a175ddeb3794310e825" - } - ] - }, - "sdks": [ - { - "version": "9.0.305", - "version-display": "9.0.305", - "runtime-version": "9.0.9", - "vs-version": "17.14.14", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-arm.tar.gz", - "hash": "771163ed363c51a1ab226ab142a1b0fdd09c675e2e0a979d02c6816cb542d09c26d353ef20121ba7a56d23534df96b0645cb94a061d7316a563e35bc3e73b0ba" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-arm64.tar.gz", - "hash": "bbda603d10a134e4fef4597203491937bb4fbaeee190f8b6dec79ee78292a1f528a842ed44b7a6b37b49517cf19c728551078cc6b21c0b2b2d6d811fc95f9c8e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-arm.tar.gz", - "hash": "2bd37ce98732a1ed5d4103b93e7cf425be111ac5d24f10bddf419e285090ead677411c53635127be64531ba0c51d18daf16d320afeda8a00517f0a2e92ec2b84" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-arm64.tar.gz", - "hash": "ef000de231a3aecbd84c500404a0fff5defef4f6516f389f2dbe424cac27dc9d37c4f1856bba7afd4ab796dc39b2d90c50b7637f3a9aa268c2461583dcef18aa" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-musl-x64.tar.gz", - "hash": "f78778d9979ed8443e10f575b97a7189cc632e1023b56710f5fb9acd030267e1a92ac66d33d4400fee22e5e36c8ad5d59b7d1101857e21170eb7fd5403524e0b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-linux-x64.tar.gz", - "hash": "f9140e141d731d37de9b6e1eab0b25726f0b9de24d2888a4200649880e9e43671ebb3897a249f4324c214d56eb3e7f0ef0cfa56b32850a9c03811b21e6377bca" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-arm64.pkg", - "hash": "bc32f8eb7068baa6e9a3c8933773ec6df8a05a0d7dc8cc9ccd1c4f9933ab1b585048194db2377d54415eac6855f0ea29481a0441e5f2b91335a82ec169574221" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-arm64.tar.gz", - "hash": "57f3d64fcf03cfdcac4e4ce0fc8b553255dd538007b6e05daf7f425a286a044de54ff67b1ccca0e9601e67e322810cc059021ef805b02de83d5828b7872941cf" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-x64.pkg", - "hash": "62ff6ffb4bb4198250e361ddcdc3374cf776f45392e631ecbd7c19fa2abf8f3c736327573d2506ccb23ea0ac1498d91e5f6cd2a26744c5f7c3fdeb5e39528646" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-osx-x64.tar.gz", - "hash": "6ac0934c3801ce9dbb5892799348e802d64deeaf61aa56982602d9d2fde7d66bdd855bbd156696261b065f0c6ad4140b1d2942d7bcfef0c5a30c23bfd5ffd063" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-arm64.exe", - "hash": "717262aa4e966a5a99ca39fb89020c5791277527e70d385b00cf8a97eb7d9cd698ae4bf17b9b4f99714ed4598b7de370e0e737a6162d256e298e08960602c435" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-arm64.zip", - "hash": "0b700b21ff08ebfdcd6c4918e49fa2e4030d6b6e946f8b739f2b2586e81bb07f1220599452afe3b59e4eceafb73f109d54781d79911d351a4f4f380d7525e3de" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x64.exe", - "hash": "b673c764cace21443f31921412efef69c2b827041853c229c7e0b63f1975cb0c791b0b1b8a745b6d5e7e5070b73541c25d8432088883ec5b6463c50b9aaf76f0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x64.zip", - "hash": "dba55e7566acf4f33bf0dc4f2378bca891a3320070c11a24ac27e22ffdd6d1ffb11aac670d4b5f2a056d0698c72db23a787749e054c828109b6554b4062bc31d" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x86.exe", - "hash": "e514018f1836cd62aeceecc59850da48c65ae4f12475971b3fd54233b2439f0ac245b12622426516fe11f94c2af42bd2652f086e9c79e48bf4ff33309c316d82" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.305/dotnet-sdk-9.0.305-win-x86.zip", - "hash": "76b75536278b8ee08e6b5eb919ba05534591a3c884881a0329ca78090b996df0fded2e6bab0502cc6d17dbee92fa75b986d36b2411b79a175ddeb3794310e825" - } - ] - }, - { - "version": "9.0.110", - "version-display": "9.0.110", - "runtime-version": "9.0.9", - "vs-version": "17.12.12", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-arm.tar.gz", - "hash": "ecc28ace3d400dd6048e4a1de4fedd0a3a4f344824048e20938599ba0f80afa6f4b61058437bc711069a5909eed88a0883b4da186e0ac104abec0c5a34983d0f" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-arm64.tar.gz", - "hash": "3e26be2daf084c6ba5d932e6a816e15cfc997f0da8ecf7f2c4fc984aa25d5ca3841d2bf1a4bb948ab5e2b289ef27a37a4f3eab840d960eef686836c9d2557463" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-musl-arm.tar.gz", - "hash": "546247a48f8e526fd49869604cc03a6877458286e5f02e15e3daed7f631d4ed77cd2aced0c8b2d83ad677332f4ebc3d3be95bce553cedf5177aad66cc4a5f1f7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-musl-arm64.tar.gz", - "hash": "4ad3a49e4c6f0e82d131c1fd42e1d66759181f5336aa7054b2e503fc1e3f60c56914369da53ffc078862b0eb488dcc3f44854e5e9f64d21694d874360beaf093" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-musl-x64.tar.gz", - "hash": "9f7ae7204361b222197a48a796b8286cdadf588e972d7865664d84bf552aad44dec6893d07871c7bc431d80ee5e33c67ebe54187a543e3f9ec88a4ad1acd7f66" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-linux-x64.tar.gz", - "hash": "ed43a9425cb5424d96d4f4cc16554be86fa7a9ecd44cf102d77c75779d1036b36634b66fd885fca93380031818741b318f95322a3ca71e0d14cebdbfeb22e408" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-osx-arm64.pkg", - "hash": "0a146b78af624a042509ed78c131f3814d2558cb11828113b8dcf584e9b29f4c90010e81f384f36ac0137d50b2e7dfb776345639cc0b148c87be06c207facd12" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-osx-arm64.tar.gz", - "hash": "49cd598016b584efc9446fd6fc612799e5b462ac41fdc98799a6af8c701321a06199827e1e50d1269f1d7456e3932b11f604ff3b42f0d9a9c4ac7c20474a4990" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-osx-x64.pkg", - "hash": "87dc37c5b09e637dfedbd9ef9e17516904f517b6307860510650cfc194afdf1ffb9f86f767febca09929d9fce94f3d29623c0f0b7a1c73cae73de37c7ec41d9b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-osx-x64.tar.gz", - "hash": "de2feca53047b05ca171067fda1dce34f1367a543f2bbc6a0705174be680dd4d6bc6b99c7d8ccf68bfda822f498fc6459b8b0c6c3d23dadb8e30115191f479ba" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-arm64.exe", - "hash": "bd2e56ebd53eb221b3ac0ced14301ad517f6557cfb6b3da0dadf4cc93b6afd1224ea0a99a9410762a24cea286e49e76f35614628f7526d00a77545e3bdf1c782" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-arm64.zip", - "hash": "433a8edb4e6e5f17c9860527920f32774bcb7ac85fcf90e3911e78feb8606911b78ec00b1c75645974092936e3a6519bac78f06943d0cd11f2e848e615dcac90" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-x64.exe", - "hash": "74b403311e0dabaa5a374d11f1b20f0280ff60a7f7919b9adae0242a0a81078fbaa425f9857cffad54f576764fdc1ffa3826eeacccf231bb700aa77e36158cde" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-x64.zip", - "hash": "9e08c06df31d730b24620077bb19006890339def2da56aa33e428c6a889c08c24d16db37a0151ad6c077986f1375bb825a1008e3c72244a068819f539cc6c7c4" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-x86.exe", - "hash": "5e40e261e4a9712b90a205acfb7873b067490f2cfe155289c98eb5fa19054769e5fdc55c0fcf872ef4926aa4fa6ce602c7b8e1476463d035e7dfadf5dd6b92ad" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.110/dotnet-sdk-9.0.110-win-x86.zip", - "hash": "d14547b26ec89a74f769308f62b638729dd8694ef762d35bde021adca8f27655558141c2c213678ff4f917f3759784420a48ba826e4a01095bfcd9fb62e1fdd0" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.9", - "version-display": "9.0.9", - "version-aspnetcoremodule": ["19.0.25232.9"], - "vs-version": "17.12.12", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-arm.tar.gz", - "hash": "de2a52ea4a9b872adbe21709d6e1d88731e42057037b826f93db9c98b0ee8d10eb3159fbdc8421345f297cfa35d692a736be65e16454db2e4d340b3bb928cce1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-arm64.tar.gz", - "hash": "cd2d24e16edfdbd34287a4ae25e0a517aaf1bbfa0ffd4d3bc7eac63d85dd544d43b12d081aa2419af13ac27fdb524f918ecf2fdfa916039aed66d502318a72ee" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-musl-arm.tar.gz", - "hash": "8e81b6226cea1042e85c6f32fede5f571e19ab44abebcb2841b72529308fe7d3d84b677c19d12f573a37780fdc3b0fe7bc3922c3a01cf08b5d57a59c18eac31a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-musl-arm64.tar.gz", - "hash": "e32daa2eac3ed32d72c93518f32b71f3c0ef7ea5245f04e8e9e1d6b210da149340079670a10885cc40d8b122ae898f90f9c9eab62ac649503d9af132796f1468" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-musl-x64.tar.gz", - "hash": "ad90430b8fc49e5f0354af893e155deb3e7d9e650a08a81125956e55cdf8821408d4e9d602ae6d27b25df8705ed2a4ca8250da9086b1d3270ab5f7d0990e5497" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-linux-x64.tar.gz", - "hash": "7ff1b517c45b2c7720fc1be808842c5b7f644ff9138f221862620e23660db528b5961f791434aa75885c808ecb3bf9d213a33e8ff3eaa477df7d6256d215a6c4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-osx-arm64.tar.gz", - "hash": "1ed88d5288993ef7b81dcf662942684d3071d160b4a77a6fc2f0bcaf8b608c2aff862eccb81f428f1841035dbb14069e0ee5752572e32e6aab018a8d3aafce5e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-osx-x64.tar.gz", - "hash": "c25ec4a4cba1d867d6bd7907d0b1a8903c8b38c349cb2d71be70a072e91b59446b8426760cebd6a5f3871f35a9cc5de50e97f72c2045e03e65015e642496a24b" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-arm64.exe", - "hash": "4e60097cbd6018b6d3d9eef9ba9e602bc1dbb5f43fada3c5f9156c60d18e6090371d8a96f3d7db380d5bc722d8ce7155294406b1d4640e66e56b6d7a01e8ead7" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-arm64.zip", - "hash": "3c638153cc27e72ac8cdd6a4a7fb24618cfcdc01f9c9028bd349053056958addba61784fc41d7a5e717353a00f0bcc3bca5c33e7d45802fd10722385490fc51e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-x64.exe", - "hash": "60e15059839abc4bbfed944052dd67f9c30a064104f245ba5b38a84e7e7114ac6e5c480aa4fece2eec4dab5de00db9ebb95ab0ad4f43f73ba80f1540a98fca83" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-x64.zip", - "hash": "645258762a17c82372364a12dc4a201163a817234a75e4324176e1be4a018d1d5c751c324d044a291af4d52d9c5cba86992062a39a70b9b4397fab2836425955" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-x86.exe", - "hash": "83892f95181b8db3da791838d599fc6217cfe0b610bae6e36476f48e3bc05937d04bd43660e4e8d02498427b4bf3e3f2345e20a69a1fdd99b1f6bcb8fc1e1e6c" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-9.0.9-win-x86.zip", - "hash": "b3e81e4e1faba7a03cacd25d2cf723b6aabe320a5eec0b846b68a9cfc35df3db8524d2c9e15a4ef267ea4d7f0ed403e45e0650a57240b72a2363b4e0226cb1cc" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-arm.tar.gz", - "hash": "59b660c2cdbde3f6f585b01613f6afb2d6a472037921a3160a8877540b2792575dd91717dbd405d228e18d662a66156335620dd3e9d505ad65842450ec7da140" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-arm64.tar.gz", - "hash": "c539c434f0a344104eb778aded8a50f422e0aea73c2f3ae472c5a4981e4542dbf584953cecf1b74f9c2c0196493d79dfc8fd8e02ed5d52540544a72930fa7db3" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-musl-arm.tar.gz", - "hash": "791e0ce7cc8d6159c0b62e31d211b294aac6dd3a3e88c9e31fce4476ad7762e64120b72cc1e7e2e2387fb374bd7cc981e3b7df7e8e3afbe85fefbb6c332d91c3" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-musl-arm64.tar.gz", - "hash": "ff074fb7867be2681cff144ae9d1f1ee0d5adbc958e886ed40d349d8ef6b59222a3e3d0ed2a0aa7781e385559ac70d3f0277ff0428b493ae34caf2b66ac2fedb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-musl-x64.tar.gz", - "hash": "45858df9f0c0e701aeaf8570aee4931669f20dc027dd3f8c9bd412f36495fb7fcab0a16e7fcc710d022a42b4ea7d5556ea43b5cf19920f174f41ee7e0013a6b7" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/aspnetcore-runtime-composite-9.0.9-linux-x64.tar.gz", - "hash": "35bbeaf59e22ef67a67c4b2f846e8dc67be0c0c55741f8669565aad662354c0ac62fbf06df81aad1a88cece37f0ad1db856e786359d0d84042762c78f3e83609" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.9/dotnet-hosting-9.0.9-win.exe", - "hash": "c051245e1729688f38edddb398f32a23281d500fd0d15d4dab79ec1a1e4a71c52d0c96cef36f8a88c14b1f0908c9eb8d650a9571de4efb42e7e0427f547f5e20", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.9", - "version-display": "9.0.9", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-arm64.exe", - "hash": "02ab39de28a7d45d5d739b4a6d12b20d6cffd15400b12f19b75265c75c91facfeac3f528e7eca419b1633ea9978afbf5abef39cccd2150051a419b9c25e6f4bf" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-arm64.zip", - "hash": "03ee942ddc97a652960a7e166d52ff2452961c985cf932fbeed4c69ed97996825844c1d82cdbed6ed544dae71fb33975ba55dfbc0b412d20b9170a1f3f8eae85" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-x64.exe", - "hash": "edd24554a7e91333fd7f558f5d7d49ff2e26e72e07445cf7625352a2d0e91bbac93abfffee84f35887464e4d837ae3c32512363cdd7b80d23dcfa95d4f7efd17" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-x64.zip", - "hash": "f689da4538d62632cb3be26430f3f28e1c3d3c7fda3a9f3f531a763348f6526282ae132db17acb7b4b9ea23cfb42ebd2325f545335e70e655849986d00396b77" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-x86.exe", - "hash": "73d081dbc402eb8e7f9ea2cf931fbd052dcd8b55e65a42a090e36d5d0f61341e049cc55c393eb1da2b753268de3946dc8fb8169877f295b90a0ef8da582f0af1" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.9/windowsdesktop-runtime-9.0.9-win-x86.zip", - "hash": "26f6c3e000d49d211baf0967410aba6a667b3fc9f1f9a020da2ba1c4b7819350a8edc6cede2ed47436293cab041f9562eee86e5a7b5f918fd1dd0c8461474598" - } - ] - } - }, - { - "release-date": "2025-08-05", - "release-version": "9.0.8", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.8/9.0.8.md", - "runtime": { - "version": "9.0.8", - "version-display": "9.0.8", - "vs-version": "17.12.11, 17.14.11", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-arm.tar.gz", - "hash": "5e2b65c2039d66e1c6c9ab1e92bbd487fcd1bd7a6123c170beacdb1ce24688d7349e84ae8b386bd758bd2472b736d18edea8370cc63eb55fac0aab3565880fde" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-arm64.tar.gz", - "hash": "3015e95ff0c373b8d59491cf1c320c80f4ec7418d63400bf6508d4e25e71a47db2854915348ab186e58a92d5ac2f20fbec13d63df5c5f601ff4af5f29c3d9cd3" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-musl-arm.tar.gz", - "hash": "b1087507720f6429a24a285454ccd54a89227c85dcb1bdf0c2342477230947c91ce3f1665be76261136a935c973d4bed8c5d1cec0897f86b09316baaee1dbb42" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-musl-arm64.tar.gz", - "hash": "018417215e7c0a82a19ec7e119a438bca918b9c448f384b27dfb87f981a988ac214c576f28aaefec85745b005cff70bfd299be31bf24e3195538a4e91fa6efe3" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-musl-x64.tar.gz", - "hash": "a008185063d8f34635e40328313af31e7bae239c8da24726b1ff2012ec930c32ef0dc0d67292aebc4d8530d2b26fa46cffb3393cf16bcdf66c10ea883458ad71" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-linux-x64.tar.gz", - "hash": "f7696ea2a30a12bad0c8f7321ac42843ced307184d894c94a64c85289b3cf30936df373ff58543ce9b77605a80243d1fc777bc959575634aaad9caa880fbf866" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-osx-arm64.pkg", - "hash": "36e5d1e2cf2f6d1aa98351608b450a5f612914d377ca19914fd68f065a5ad9ea7a62695320f154fbcc000a7c59f7c4e5b4d48fbe8e49fad47d44152bf785163a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-osx-arm64.tar.gz", - "hash": "fa7ed03cd5a5e0555f65f8f0101c7762e6bfda005fa495afa126518d4d41c9734c657fc359cf80f90bf6fbf186c26af03819dbadd5251e97ed4cbd048fc27b38" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-osx-x64.pkg", - "hash": "b6067faf028de11f35c99e4119251da19725e07bb961dceff61618b25d192aed152372a866cffbb7ccf76a5071584c5f6ab0d7774f854a95ba302837721a6840" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-osx-x64.tar.gz", - "hash": "3398f1acac7647e25cd2476804c5ad264ca18e152d0e22b32ebda6bd5d7744c1e932aa9086aecd3794b8db4f2f725ed20ffdd44ff615e7281a0ac5dd95073b9f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-arm64.exe", - "hash": "d6a2c0afab5d9de45a0d6ef9c7c5a9b8d1564be5cc330f5150dd62201e3e464675bc6abc4a57bcf6f8c7967085ed05b2c43ae78e011cc5fd8bddebe5cee3cd91" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-arm64.zip", - "hash": "b038f7e950c698df774749f52a446bdc93b506332ee6341553470f00e954b56aa6faa121bc8bcbcf78534a0aec5fdb702afce9f028609144757419c0704573a7" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-x64.exe", - "hash": "d3ac5cce3e17afb14f9fc3acb6cab59f6d9a701c007d224b149f721ba4dd097affbdfc515af94ba31b0a65261eb2daaf71d69aa42c4613e7f46402e776452905" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-x64.zip", - "hash": "664509ef8da97d5965278a5aa18002c31a0bdf0cba1315913bb5fd61870e4052ad5f8180f361d1aa7bb3bda92dfc30222b4a5751e17788e950303e265d11ba8c" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-x86.exe", - "hash": "ad1e497d0ec3d02ee027f5afad54f321c24d5d9b5b5be68f365d1e3c089dca8466855b9d829fd635be2d8b3b7edb52077aa9d064b26da763a472657080fe4996" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.8/dotnet-runtime-9.0.8-win-x86.zip", - "hash": "b198317b9b9acb1b92052881c4ce22e9a0cdc3d6659218cd98eb2af3ff8f18d09ccec1931ae9f055ac58a405e4c88eac06b88dc0407e9e25f91bd54d9309460b" - } - ] - }, - "sdk": { - "version": "9.0.304", - "version-display": "9.0.304", - "runtime-version": "9.0.8", - "vs-version": "17.14.11", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-arm.tar.gz", - "hash": "d433286ec78115271107b5598fbccfbb9667590e1331852fbf31ec1487629cd606ad3d5c2fecd0ad94ccdb029317b7b29f3f55308b384ee72babdfda0657b6bc" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-arm64.tar.gz", - "hash": "5ecf4b7cdc2fab6f7fa65a748e6e2f6bd5d04e160e57fee356d32253a88cacf97319237da1236647085505f706990cb616257d96caced1fb7686322e3fbd8f1d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-arm.tar.gz", - "hash": "f1e9c8f386cdea6c9467ebb66abb58eb1cc977e6257826101fc802199365d961c8131724a62b1b0d4e9303e8d2dc121a7e036a4ce8034cc345c4889ddee92dd0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-arm64.tar.gz", - "hash": "b36c295b6846c7c7407ab87bb6d858ff5ee5de877e8da5ed3d1d970ec02c9be38e2427ccd54e1e10f517c0928ca7bdf4b2f5d91c0b3b468c442366e0fe8820e5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-x64.tar.gz", - "hash": "d46bd4421e34b864882b4508eb6d6c175f6b50cc5d2f3863645e931ac398f2de666bd414fa86dd53094e7958ef9b71b3b3c8484386198c1420e9516f9d42c8a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-x64.tar.gz", - "hash": "b087828d595d0c6886bf652c69f3910303f455accb1ac956403f795080c55caf59732f3be0e31fc744aff13591a92e1efeb646ef3ca6165ed17a3cd12a67b229" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-arm64.pkg", - "hash": "a44ef0ed5d76c1e0c27577e80c3b664d25d80c406e93ffb746b34e1f4e472e6b305d6ab013dffa6e81f78a8bcb00316d15d3b2c696b6d485bc3ce0852d5824f3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-arm64.tar.gz", - "hash": "afd4e2581ed5bc53de60c10c5dca571588a51d95cc90b832e5892ba7dfac78e3812b75a132b53c395721737092935cea71ed0f40aaabe9d326457043c750598d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-x64.pkg", - "hash": "93679e135366d0779d28fe0168d67bb67d0640769afaac2f57edd31e18e268d81f36f09f53662a8c7e7eb17993a270ebd003ff0e1137824020597bcf20546303" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-x64.tar.gz", - "hash": "30d25fa84e31dc3852bfe3b0c0f1c69d5313682e17d8d571b13f89ba8ba2b44ff092c67c3a8657781bb0e8243f54bc51841b0b45e264e86df057e79ad45d356f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-arm64.exe", - "hash": "e2a2ed6ab753281f3a9f956164fa1f42a9ebb3785b2b6fb80af4dfe11177a3af3facdfd5525a291f10f3fc9cfdf7fa9e85fcbccdd17b95805aef61d1a11ee702" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-arm64.zip", - "hash": "cabe257a201d421dd6a4b9d4127659c89ee76ed64541e78ad4ab94aaca779997ccabfe8a517ee7d93aa33361b4b35adc8e9deaef231f751040c79a2fb6c739bc" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x64.exe", - "hash": "7ba3dd303d76664eb2a2c97f0280ae2d5b1b6ff0f144a00e87a3cc8322ff21d5fa326409cb73dd2aaceb5869f7588685b465c86d9e0ffa8fbad31b8b2044dec4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x64.zip", - "hash": "252db975bca487d1f5abca021ba79a067d42072464f7b336651a74f623b47cefc898d635f799ae0a63bafb823a5dd741b0c7bcd9078d0467235e8b57e0101f02" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x86.exe", - "hash": "836a88f5ef4ddcea3f4a7841fe51f8234d6da6d96c99498ad929a08ad7a4fe9c9ab1e2a1b71b148874dafee7a8d649f12ae264b1753974d4c0d9e5027550b1dd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x86.zip", - "hash": "b8a98a78f02d9f5034ea586b952534b7e453e7dfefab5dd21ed6d77e01f51b95b75eaab694be985f4c39dd6f196b325476d6a768413e408a5dbc7b50129270e8" - } - ] - }, - "sdks": [ - { - "version": "9.0.304", - "version-display": "9.0.304", - "runtime-version": "9.0.8", - "vs-version": "17.14.11", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-arm.tar.gz", - "hash": "d433286ec78115271107b5598fbccfbb9667590e1331852fbf31ec1487629cd606ad3d5c2fecd0ad94ccdb029317b7b29f3f55308b384ee72babdfda0657b6bc" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-arm64.tar.gz", - "hash": "5ecf4b7cdc2fab6f7fa65a748e6e2f6bd5d04e160e57fee356d32253a88cacf97319237da1236647085505f706990cb616257d96caced1fb7686322e3fbd8f1d" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-arm.tar.gz", - "hash": "f1e9c8f386cdea6c9467ebb66abb58eb1cc977e6257826101fc802199365d961c8131724a62b1b0d4e9303e8d2dc121a7e036a4ce8034cc345c4889ddee92dd0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-arm64.tar.gz", - "hash": "b36c295b6846c7c7407ab87bb6d858ff5ee5de877e8da5ed3d1d970ec02c9be38e2427ccd54e1e10f517c0928ca7bdf4b2f5d91c0b3b468c442366e0fe8820e5" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-musl-x64.tar.gz", - "hash": "d46bd4421e34b864882b4508eb6d6c175f6b50cc5d2f3863645e931ac398f2de666bd414fa86dd53094e7958ef9b71b3b3c8484386198c1420e9516f9d42c8a1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-linux-x64.tar.gz", - "hash": "b087828d595d0c6886bf652c69f3910303f455accb1ac956403f795080c55caf59732f3be0e31fc744aff13591a92e1efeb646ef3ca6165ed17a3cd12a67b229" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-arm64.pkg", - "hash": "a44ef0ed5d76c1e0c27577e80c3b664d25d80c406e93ffb746b34e1f4e472e6b305d6ab013dffa6e81f78a8bcb00316d15d3b2c696b6d485bc3ce0852d5824f3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-arm64.tar.gz", - "hash": "afd4e2581ed5bc53de60c10c5dca571588a51d95cc90b832e5892ba7dfac78e3812b75a132b53c395721737092935cea71ed0f40aaabe9d326457043c750598d" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-x64.pkg", - "hash": "93679e135366d0779d28fe0168d67bb67d0640769afaac2f57edd31e18e268d81f36f09f53662a8c7e7eb17993a270ebd003ff0e1137824020597bcf20546303" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-osx-x64.tar.gz", - "hash": "30d25fa84e31dc3852bfe3b0c0f1c69d5313682e17d8d571b13f89ba8ba2b44ff092c67c3a8657781bb0e8243f54bc51841b0b45e264e86df057e79ad45d356f" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-arm64.exe", - "hash": "e2a2ed6ab753281f3a9f956164fa1f42a9ebb3785b2b6fb80af4dfe11177a3af3facdfd5525a291f10f3fc9cfdf7fa9e85fcbccdd17b95805aef61d1a11ee702" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-arm64.zip", - "hash": "cabe257a201d421dd6a4b9d4127659c89ee76ed64541e78ad4ab94aaca779997ccabfe8a517ee7d93aa33361b4b35adc8e9deaef231f751040c79a2fb6c739bc" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x64.exe", - "hash": "7ba3dd303d76664eb2a2c97f0280ae2d5b1b6ff0f144a00e87a3cc8322ff21d5fa326409cb73dd2aaceb5869f7588685b465c86d9e0ffa8fbad31b8b2044dec4" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x64.zip", - "hash": "252db975bca487d1f5abca021ba79a067d42072464f7b336651a74f623b47cefc898d635f799ae0a63bafb823a5dd741b0c7bcd9078d0467235e8b57e0101f02" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x86.exe", - "hash": "836a88f5ef4ddcea3f4a7841fe51f8234d6da6d96c99498ad929a08ad7a4fe9c9ab1e2a1b71b148874dafee7a8d649f12ae264b1753974d4c0d9e5027550b1dd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.304/dotnet-sdk-9.0.304-win-x86.zip", - "hash": "b8a98a78f02d9f5034ea586b952534b7e453e7dfefab5dd21ed6d77e01f51b95b75eaab694be985f4c39dd6f196b325476d6a768413e408a5dbc7b50129270e8" - } - ] - }, - { - "version": "9.0.109", - "version-display": "9.0.109", - "runtime-version": "9.0.8", - "vs-version": "17.12.11", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-arm.tar.gz", - "hash": "40912d5f1bbf59b071d2e1d31ec1d9abdddbf3ddc64b3233e7c7e91696b023e1fa7a094725d3995b931c880038425ecebc05f013f7596327bf4966929e9801b5" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-arm64.tar.gz", - "hash": "29dffaf2ee22402c601c3e1cbef36829ba30fe32e976b31f247df605a145efa29a7e23df509ed81fa9a6d13f1e55815e2a592203aa79c2e76788d901a6e1ab58" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-musl-arm.tar.gz", - "hash": "eb690196dfd342679b1e6d0cc3f50067be1d0f2a6ef91171feb712e4c4a491bee381e3500638290e1e59e933f77f57cc64bed92cad6eea1eb65676ab8a4c66a1" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-musl-arm64.tar.gz", - "hash": "099f9b8740a3c7584153c296160fc96fccbc18c7c24678eff7e6425d602c770d534c4f2db563933cd4fe5c9eb2d40f7d03a1f69aef5e9b94590f360cf6a14281" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-musl-x64.tar.gz", - "hash": "1689cbb3ac17b374903b214a173f24160072ae57cc5d1307f5b26051b6ff0405772b603b6a6c7ef1952f737b18c9f3b976f7354b84b89ab6bf15be20dd0636b6" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-linux-x64.tar.gz", - "hash": "cc386a8e7009855a6e9a3a8a153da1b5ce54c2e0b7b7ae305445ee9f0d5735518dfeef0d8ff32a444782e35f34a31675724e040536001a76c9dc1b755b5a2605" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-osx-arm64.pkg", - "hash": "438e0c8d281f006036a88447fc682173cb5cb767ed6aebc53d770b02a5e47c37b66addd7b48947aa2a1470353e69720c7277947d08af150b2356abc2d118bbd4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-osx-arm64.tar.gz", - "hash": "ae2ebc3f7740ab880af56e36d3d2a1ee5a54fc112b6fdcc2528f2c8c59808d36476d5fab5cdaa7d25819b0e4a9011745f3a9e5c72692cd932b300eb6fd85f5af" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-osx-x64.pkg", - "hash": "ae58c2ffe19eddcf286909e1a222d858093d6f4fdac5b246d913c600a55de9d4ce62cdf0b664b80e37802d7f0a5608711baf005daebee79bacaab7a7f7822e17" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-osx-x64.tar.gz", - "hash": "3b72ef979468633022b4d222da31a73f8e738d1ea7d443408215de7311824e4f25c9c6dd193c44014c26559228293895c164a51934f307e153d927e70cb6f3b7" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-arm64.exe", - "hash": "523de0df56ccd29778e100cd8139c098da3670735b858dbf906c2bc450ed9a0d7b5174aabe6909c67f5aa2a408b5bef1e7fc32b6c2f0f1e8e94fb738ad886ec2" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-arm64.zip", - "hash": "3890aa142b8a02d2bddcf18ca4c78dc80fcb897cec6d14d8465ddc51308861db7e549b6347f7ce66502b5f1ac21e4a1c1e5d3ad987e5033a854b8985fb485930" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-x64.exe", - "hash": "fb13c7540bbc93aab4ba42325507be6b280b7ae8db9bd4a4bcfdfce1d909561cce343ea33f6b55db1a31275338e30db4256536d018ba10a08673e9bf36337e45" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-x64.zip", - "hash": "a3bf3d0cd3f721527ec16d21e9e724dff7e8edf7e53171eaa9c694903ccbfa35970fe9135581d993cb5a614e26fb16009918b80488998da3428980a0a8aa4d91" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-x86.exe", - "hash": "89977b148ce5537bc30353b4abf60eb9bde915dd6a8e01fb167a5cc110f8f58b208cb21f1cf4eadacbbd22a06ee6da9a47ec92eb0a243fde1ca153a50b761c87" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.109/dotnet-sdk-9.0.109-win-x86.zip", - "hash": "2e1a346658fd43c31dd84975b18f24f9635e32c0c77ea3298ebe0f9731388db4bb3e1704bda1f168ed7bcd0bb861fc89341c4fe5547151d9a29920f4b6b14019" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.8", - "version-display": "9.0.8", - "version-aspnetcoremodule": ["19.0.25199.8"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-arm.tar.gz", - "hash": "a99444b1cba7af4acd12d9ad4126fe4acddf2ef0e02b999de0bc1853742e136effb03ed7adc2a0a47062d0051b3179320a47fd3d239d0fb86f9775b73de43d1a" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-arm64.tar.gz", - "hash": "cf1e72f4b327b93c1ac3f2def9ca83bee27a408e5b5913f84ed954cfd6c4639da1664fe3f4e3925883db77ed29fa5364b9ca8af3796f33ca73a4cb7484e326bc" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-musl-arm.tar.gz", - "hash": "44d0fa0d36f9cff993f7089efd3b2b3e0e60d403bc2b5a395116be7d6b43a82471e2abb44cd1702464ad302337bc3e0ce49e242f02fa14a114288f0f8a662296" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-musl-arm64.tar.gz", - "hash": "e44c705c46d14fcb5754f17ba346ea2876fc1bdb44bfa0372b48c09979199a768eb82766b8e7e22b9dc01a7c38b853ef1b53f8b2dc57def15b3dc25fd08eb256" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-musl-x64.tar.gz", - "hash": "e43dc8535b32f9fd17b6b81cfbb975be46f09f7793024042e62fe1b499db66eead6db112ca51fefd9a23c676cb6dcb0191c5985c2f53406981f4e15f0b6ef667" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-linux-x64.tar.gz", - "hash": "08afdf924d00f875b44cc4eff68b55fb9b63e4cc68e6b5cde873da2bce9c5b5f4120e869b6a1dfdea4ab104ab0ac8783ef1577b4d3275aae899a53cd88130f1d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-osx-arm64.tar.gz", - "hash": "4fea1dd65c42bd5a0650e1be9b62bcca05f48ca2c8d1b597e958c65f94df659666507c7eb703dd9d06f24ad007988fe92af7363fedb3db49502b8a5c54f9ad84" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-osx-x64.tar.gz", - "hash": "70e803f3e0449eac56438de12f8771f322607296ee53e0e6896ce211f5dafe083f5f33f9e2c76c54012c93fc1b951e0c1630c97447777dc468bef9fb11949fc3" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-arm64.exe", - "hash": "79c6ed074b6a7dc077e6f493594ead0f0cfe9c4fb006e00884b767e33b749eb40254daad474c465605c93f2cbc0bfd462e8c07595c52f9ffc4d7617b6b6bfc53" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-arm64.zip", - "hash": "cad772ea52c6f50763269f67d99ecbb319b6e2f36b17a55c32291c624c0f0a2934d68aba8ab625f00c5511adee3445dfc0927263520876a2df50872e38555996" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-x64.exe", - "hash": "ee7ed0094d75b8aa72ae4389f705438569927f3cd57b57be71e93f8947a725c1e2877925f0109ccd07a41c693d65bf591d98f810cb6edbd5bf7eea20be05d9fd" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-x64.zip", - "hash": "771a3d90c9228777322c8739b341ea9b144c64e510eeb13aee0533609135054312edc27c2bb059d5a89c2532a9c398c6098c5a668894df8eb50b378177a73df5" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-x86.exe", - "hash": "e26fe236ad8c3cb54fab4ad2362a644ec931ade7c473de9e3ccd0b9203b66236453dee3953f958bb0237260f0a2920395cba1967e979a2856f0184e92ef2468b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-9.0.8-win-x86.zip", - "hash": "c98a32e019192e7aa64b8ee7a93d6f7109569eeb3f569e57763643e0391f63b21c55e2963ef9df269e8d01fbc86deab080e44fc6fb92accfcaf369bb93e85877" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-arm.tar.gz", - "hash": "234483673ef2f2f8b2a93958945d2e5eeff6aa4ca46967763e8907ffcf2872794e63cca6f2f446ba92d6a7a9acbd3717b7f9cb0e5e57a11242fff579cf5b1cb9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-arm64.tar.gz", - "hash": "c223fac55580aab9ca0e346e89fa664034877c9374aa9490d57f43acce59a53a3d39299a0ef118a32b0e3882a6b32df7f0c19e7605c39c0ae2c53788c0569a4e" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-musl-arm.tar.gz", - "hash": "02915df76e85dd619f4821b924ba2ca776d26763ce728b2dedc554efbff7114da61ff14eb3e0746a68f7a828ff940522fe4a18f13647b721ce6376565751e28c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-musl-arm64.tar.gz", - "hash": "fb8b90274307f91c71368a56d58c5fca72f935f2ae590c8c3c913d7d5b7d01aeef2dded471237b88805c7138556b087fa39f73bce8cb37900e34e77c92617543" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-musl-x64.tar.gz", - "hash": "b7a85ac169cd7b1c3b7a1d34bd46d4f0e1cc49e8458abe982e3543dcf8967b7bc20e3968ebcfe420073c99d5804770debfbce03176a691006bc21230f73cd33a" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/aspnetcore-runtime-composite-9.0.8-linux-x64.tar.gz", - "hash": "9a4e82d8b7fabdaaedf68fc73161d01c74f65d206d94ed3c6c90b5f1b1ec78b1921c86fd2eae3e6db3ef2e8eb06e7ba42cc8260fb62724156d9aee35bde53c4b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.8/dotnet-hosting-9.0.8-win.exe", - "hash": "3b9b9014be356675cd627a0093f6a4170f0714dee3397faf5da066845285701d6e0da6bf716ae4ace8b88e819bedc79f8c781e7a097e32d2b059b95b3103ad15", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.8", - "version-display": "9.0.8", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-arm64.exe", - "hash": "6ee88e9fb4f139d8ed8214a81d89d7738e54ff7338a3bfa4c887472942472481046002a25ad765e2fb7cfb12e4931cda9b808c04dcbe010c498ca8bdbf0f992c" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-arm64.zip", - "hash": "9fe41aac3c82ee0dadc99e2a1475580fab7480b606196ea02e25e73a114767197bcd5b43ef38405523f8111c8953b9dec255f7198c240aa7369f0adaf19b2feb" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-x64.exe", - "hash": "14eeae9e47137f0d550e4ab73ada9c8e253f9c989ea975789d70d9f605bf946f4e9cddf0d2bc8028ca3ad10d9277f51181db94cb3623798fb876e637d283f93e" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-x64.zip", - "hash": "ffe3055f50f5e57aba41ad7790044e32d9d73f526a0a0310664e8d936bbbb60cb84c90e4ff0ec12cb726bfc157df105769a768306b4191fc1d6cc22173f20771" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-x86.exe", - "hash": "8a9c1b6de95330dc339b3211c52bb8f75ec73aef6e0361d58090faf2c66e4e831e7de53bce95346091a43a4102e4b480ade7de3625240e7797901d3e3b8ad5cb" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.8/windowsdesktop-runtime-9.0.8-win-x86.zip", - "hash": "09a6d9a8aa4ba944c59d8a57703cf1c42ccc86263b7fb07d1d21848e67254623a079cc5599eb5c7e03ba04faccc3a0e9452706151af6b7c0a2e75f725befa2dc" - } - ] - } - }, - { - "release-date": "2025-07-17", - "release-version": "9.0.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.7/9.0.7.md", - "runtime": { - "version": "9.0.7", - "version-display": "9.0.7", - "vs-version": "17.12.10, 17.14.8", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-arm.tar.gz", - "hash": "85dcabb44d79feb3f022e65733b5c3b144169ffcbab9654580ba7a1efbf1458daa9316395a6dbd9cc1dac39b34eba3929e63a1cec84fb6e566ad11011fadd234" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-arm64.tar.gz", - "hash": "e5cff39d8c24d1e114106ea51563f0c640548268898e8349a30d43f06d22c77595e06725e28073793dd023b612af115812345906e26cce2c788f06af613d4252" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-musl-arm.tar.gz", - "hash": "fcb64c59e4774cd270d856e7e056a5023567c84048f01254046b7764b6a708d582c4ad548fb5d231ec4b0b3669ebe9ce6ad24d6e7ac6951b50b49007b8ebaea1" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-musl-arm64.tar.gz", - "hash": "f5c24256c70bf6a412f22118e84129ef810a63787159e34fe0c8d21fbbc1fbed23a816ba957c653546e8c2152beca2a6a44193949c0e87d6b6a6451daffb3bee" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-musl-x64.tar.gz", - "hash": "07409c808da9cd19a64e525e6129bc3f8de4ef32b308701e97a8b1430781edb3f863b0ece9afad04887271ee33217100f519f96d89fed94200b06112acfac44a" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-linux-x64.tar.gz", - "hash": "e273b592ae9e1c75e91ce3be6f4f2d23143276900141e29c673d46490118d0115f6d1968ae6cfed598ca300fe889ba20fa060787ebb540308433580a3c6c5cd8" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-osx-arm64.pkg", - "hash": "53e40d3120e7bfbc9a318c19708a424d66a218c7f9534c08b22cf63815664aa744986f3c660151d19d80d37448c50284933926b93e33e4f41405b0313b03098b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-osx-arm64.tar.gz", - "hash": "0deb23ac714dad69bf7d0c67e4253256d0845881b805cc8b9c6f2051283d5f9bbb000d363058523dce4c7361c2b460016a865b6d6baa5843c9263591d539eb20" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-osx-x64.pkg", - "hash": "e66f76f1299a5230c7d025aea2c450273444b29897dd06861f1a57bdec3bbac5e9a550166e0692678c6f159015ae106674c487d7d7ed5c6fb33fcbab3dbe9e3e" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-osx-x64.tar.gz", - "hash": "70eb472ab24f38a6a6e930661e09ac6635dda0cf054899040c25cf3332f24f1cbb3eec19e1cfcf2214b466d000f6ddc7d49448a6c6106c3b70fd0bf7063f6e6d" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-arm64.exe", - "hash": "f7be49bc64c6ced107621367a9d98305dbc39afefad1537104db7a8d533eeb40a8f57fdd2f03daac7512dbee8c501cfe68ccde84186c8b0238a989bb91f7817e" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-arm64.zip", - "hash": "1ec08d23a9ffc1feae0403c5bca79fd785541c3b5358689df16a6b072fc24c85ffb9767850dfb305c96958a42d311c429f3dff18604aa9e417c2c898d0ee5c58" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-x64.exe", - "hash": "b62882656b63edd10e8fa4f44d8a67f2265991bb7eb5c614c7d87548802adfce034795a5bb17e0705343151e6f99c5be3104926f1aa5d1a6fa22279de0c08518" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-x64.zip", - "hash": "7259b0a49bb800bcf603cb4797a7f20ed0abcc29ec9effdea03748a2ede7559dacee9bc21d578152b14089aa2a7385858327c39e86202f3ecceaa6f0bc00ea58" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-x86.exe", - "hash": "09e200897e8260aec4e5984e49aa27ea8bc2e0b12576df55a4c753a415f61b28f5e6c28c411f5e316ef49ec256079adc0ca6ff407f51363bb17009420dfbb137" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.7/dotnet-runtime-9.0.7-win-x86.zip", - "hash": "5d6aaf64bfaac3afb8dcbc0dacca61239b5690ff6d2ab6690417203d6afd3fbd5ac2577887772150bad2fac20fb80994ff4f8d6feb6c9963aee65a89737b44d3" - } - ] - }, - "sdk": { - "version": "9.0.303", - "version-display": "9.0.303", - "runtime-version": "9.0.7", - "vs-version": "17.14.8", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-arm.tar.gz", - "hash": "6d25cff8f67e68af98383522fb62285b8e0f835aa874b91d61d5bc35b904cb4f1bd66badf54db2e11bd2f72fb7d9541b900e243858a69637e172e1547d5cd66b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-arm64.tar.gz", - "hash": "8257338282e5ad9ec8530e6b1b70a5e235d9c4ab9b9be6d0548f61cdb0a55e715a9d766b55203ee01036e20ae9bd4e74ababfa1a7c94d45e89b2f314e90e999b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-arm.tar.gz", - "hash": "1a7df1d98f8d686369be16893c02b7f5e17b64785c4bb3d5572f23047d9c7c252ba7c1a6712013ffe274e39f60707a1b0e2ea00f07691976d279c8099238bdbf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-arm64.tar.gz", - "hash": "3f4b91e35a06d95c737c00673dff296584d7b33ee911ce3344136248c65f841581be39227fd43a00e3c036ddf3a553cf01f33b2e973ae2af5789bc6e504558f1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-x64.tar.gz", - "hash": "df6d2a043e4b31be78ca4360727a1e6c71243d40cafcf83cbc454eb4904cb838871adcebe2181788540ae36b1e0a29deba296387617dd23c4abd93afcb700c0d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-x64.tar.gz", - "hash": "e11518c184ab4f80b5d6411ecbca3e07e244a190e949e51ef73d36c521420f06107987947ada924618a44b9142caa097bd03659d973249f463aa5e58417ebfdc" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-arm64.pkg", - "hash": "99cb9b97c1c7c8ac5f30c11bc3c07961d6be1bfb2d5a9c7ecf110a2701d32e17c2de26788a2c72a730f849117a046cfed87dfae05f2eb211451888016fab43f4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-arm64.tar.gz", - "hash": "410999907d6092c52155afc59c3bcac149811851db7318f6fe215e37b377ac1b316cbb595bb21cb526791f396da4cd439e4b2db76d45a825b57cc2f4729a2e2e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-x64.pkg", - "hash": "cde6001fe3a9bf4d5b540e93e3886ba4c1299e2f70a7868ca62061a10c110b17150e957abe148c755a6b0c2e0e6a81df1a07c6fd3eec4065a0e5e1bcc432d459" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-x64.tar.gz", - "hash": "030979078780f3bb0823633f0dda324fbd519bce153fde6d41b66f2ec53fb338328a501cd9e3a0425e5e733c430a2b197df4fdf6e4e14166f24bab0b5c37d0b0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-arm64.exe", - "hash": "83245a1cd4a46c7240e057251c42132139e275b7bc932644a56f390933ef1816dc64fde63ae6376ba62f178058a67ebcabda55aae636179afcb02ff162234845" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-arm64.zip", - "hash": "d87b06c2415b55b77b3272cf8019235af916f9b2b8ef8b25f1d4c858c51b6a188852c0711f4620757f6bfbb9894cb8645d2c3a5d861a9c77d0d9bbeca28dddd1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x64.exe", - "hash": "96653bd5906362e28bdcd35c9a997ef0c34dc0e26e79ab62f5266a2b619ad3d00824dc88de0ae61cbe96f5f2ab86012fac968a85868161b8583881b632cd12af" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x64.zip", - "hash": "43c7c368b9941f52290bda7117596cf0e1e93ed4e48bc0d0417c4e066c4792f9874d073068f78636707278bde5e0f5df6d7e1fb55432a134d9c56f9c2e1b7676" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x86.exe", - "hash": "c126b2b78b68b68843fecb197a3bb5592b57befd29729977689d11da80bf9356feefd3705c664578e1c7e5d554b060c3d1d8b1b3434837b562d524a1662085ac" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x86.zip", - "hash": "f8ab9d1ee8e6021113c7c6ea3e65a7dcd9eeb1b500e2573da97eebce18548027741e6ecb89dc4a232b76b5e6cf27eb8a86928f2fad09e5043800d630a49473f6" - } - ] - }, - "sdks": [ - { - "version": "9.0.303", - "version-display": "9.0.303", - "runtime-version": "9.0.7", - "vs-version": "17.14.8", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-arm.tar.gz", - "hash": "6d25cff8f67e68af98383522fb62285b8e0f835aa874b91d61d5bc35b904cb4f1bd66badf54db2e11bd2f72fb7d9541b900e243858a69637e172e1547d5cd66b" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-arm64.tar.gz", - "hash": "8257338282e5ad9ec8530e6b1b70a5e235d9c4ab9b9be6d0548f61cdb0a55e715a9d766b55203ee01036e20ae9bd4e74ababfa1a7c94d45e89b2f314e90e999b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-arm.tar.gz", - "hash": "1a7df1d98f8d686369be16893c02b7f5e17b64785c4bb3d5572f23047d9c7c252ba7c1a6712013ffe274e39f60707a1b0e2ea00f07691976d279c8099238bdbf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-arm64.tar.gz", - "hash": "3f4b91e35a06d95c737c00673dff296584d7b33ee911ce3344136248c65f841581be39227fd43a00e3c036ddf3a553cf01f33b2e973ae2af5789bc6e504558f1" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-musl-x64.tar.gz", - "hash": "df6d2a043e4b31be78ca4360727a1e6c71243d40cafcf83cbc454eb4904cb838871adcebe2181788540ae36b1e0a29deba296387617dd23c4abd93afcb700c0d" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-linux-x64.tar.gz", - "hash": "e11518c184ab4f80b5d6411ecbca3e07e244a190e949e51ef73d36c521420f06107987947ada924618a44b9142caa097bd03659d973249f463aa5e58417ebfdc" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-arm64.pkg", - "hash": "99cb9b97c1c7c8ac5f30c11bc3c07961d6be1bfb2d5a9c7ecf110a2701d32e17c2de26788a2c72a730f849117a046cfed87dfae05f2eb211451888016fab43f4" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-arm64.tar.gz", - "hash": "410999907d6092c52155afc59c3bcac149811851db7318f6fe215e37b377ac1b316cbb595bb21cb526791f396da4cd439e4b2db76d45a825b57cc2f4729a2e2e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-x64.pkg", - "hash": "cde6001fe3a9bf4d5b540e93e3886ba4c1299e2f70a7868ca62061a10c110b17150e957abe148c755a6b0c2e0e6a81df1a07c6fd3eec4065a0e5e1bcc432d459" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-osx-x64.tar.gz", - "hash": "030979078780f3bb0823633f0dda324fbd519bce153fde6d41b66f2ec53fb338328a501cd9e3a0425e5e733c430a2b197df4fdf6e4e14166f24bab0b5c37d0b0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-arm64.exe", - "hash": "83245a1cd4a46c7240e057251c42132139e275b7bc932644a56f390933ef1816dc64fde63ae6376ba62f178058a67ebcabda55aae636179afcb02ff162234845" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-arm64.zip", - "hash": "d87b06c2415b55b77b3272cf8019235af916f9b2b8ef8b25f1d4c858c51b6a188852c0711f4620757f6bfbb9894cb8645d2c3a5d861a9c77d0d9bbeca28dddd1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x64.exe", - "hash": "96653bd5906362e28bdcd35c9a997ef0c34dc0e26e79ab62f5266a2b619ad3d00824dc88de0ae61cbe96f5f2ab86012fac968a85868161b8583881b632cd12af" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x64.zip", - "hash": "43c7c368b9941f52290bda7117596cf0e1e93ed4e48bc0d0417c4e066c4792f9874d073068f78636707278bde5e0f5df6d7e1fb55432a134d9c56f9c2e1b7676" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x86.exe", - "hash": "c126b2b78b68b68843fecb197a3bb5592b57befd29729977689d11da80bf9356feefd3705c664578e1c7e5d554b060c3d1d8b1b3434837b562d524a1662085ac" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.303/dotnet-sdk-9.0.303-win-x86.zip", - "hash": "f8ab9d1ee8e6021113c7c6ea3e65a7dcd9eeb1b500e2573da97eebce18548027741e6ecb89dc4a232b76b5e6cf27eb8a86928f2fad09e5043800d630a49473f6" - } - ] - }, - { - "version": "9.0.302", - "version-display": "9.0.302", - "runtime-version": "9.0.7", - "vs-version": "17.14.8", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-arm.tar.gz", - "hash": "880500176abc263b9fe4d9fd5b3f77b975370bcc76af1453b5b776d835329a5a9f3e02903ced3ee3419ae6f7e0e99cb964b585bb430da75d6623dc2965c46081" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-arm64.tar.gz", - "hash": "dded437c836b201219ef8cb1993e50c3e96a9d09cd2541ffe2c0810530e737dfb44adb8dd766caa2f02def0d0bc2ac9c563a189f1cb1ca6a64d9f71251a94141" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-musl-arm.tar.gz", - "hash": "f42092ae79719b3ac136e9f634bb81251d75b73551e0d8661e8be8b5decb23633f0877ff1e1fc60b16509483e20b49dac9c7a4cc6093848d1e9da0f7c6a93c37" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-musl-arm64.tar.gz", - "hash": "c84b1b419aaf2d778b080e019f0937897dc8a64d0612a3c2203acdcbb1ff598847a87a3ec3c688f3d03accb2180752b3c9b10043a60478347151bab3655ded1f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-musl-x64.tar.gz", - "hash": "01a0138fc5e6b05f6bf77f51b225cbb73606552f121f7c947e4a9c5db45775d4031d79a4ae1fc6e6b3b5d6388ecd2b0d503e5447b2e892fed9539a0728e624dd" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-linux-x64.tar.gz", - "hash": "fe46a96e794388b345105e47896e4e91099ffd907a7127ff2cadf76adb3a7be0b43f0cd8d2c376ae455283d08f4751f7ef11890fd2697304ef114447ae209c88" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-osx-arm64.pkg", - "hash": "a602f84c272caf0324daf0bba420607723afc0aa3f298f9f0923083b623faf0fadec4060adee0175e1e4305cab31902dbca02e0a4b9a5e830d8cdc824514edac" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-osx-arm64.tar.gz", - "hash": "07e8178659437d782301693a4f8572e4366ddd66ee932b309a8d6f02ea2134cc15bdc2a0f1d1924ba756dce4543d74e8188d9c52de0a17d639a9c393b4f4f194" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-osx-x64.pkg", - "hash": "936fc6d3d031d57ad15d9ff150a49552422d5aabc0255d77e27fd2f1d79f9b92174e1813c888e9ccb55122daac4da1ddde56e6f49655a3464798caa4589d4a5f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-osx-x64.tar.gz", - "hash": "10a863ef08020510625958471cce4d8b470ded38c5fc9bcc72295c6066bc0a5aad9ad22c5b4b5ad015e8d5dc3db328dfb682e90766300cd9502c171b5d930247" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-arm64.exe", - "hash": "cc1c0276e8b900e25a2cabff14ca78bbc21c5712c1bad9e4d551aa2662dd77a666b2926e193b9b598cf2d9f91c1c9e1765371e6b29f68d76c56702ceafdf34db" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-arm64.zip", - "hash": "fca48a6d06e122a9a0d5f7824469c323e8a57ac9ed04b8cc12af475913ef09b79df67d329b5c0a612bebeeded2bb659d17f280556caab4549cc73c446f109e38" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-x64.exe", - "hash": "0cb87affddb63171f9c79033386fef2b1fbef209a7381de46bc94876f4aee475cb2f71b6a074708c4a5a94a0a1a464cb5ba424c572f2550ce562ad0705e3691e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-x64.zip", - "hash": "68e639c38d772aa3d59763991a3db6950e80be5efcba7bdb913f661aea21cd8f6c93fe36c31176f3f91a0c54af61b361daee98883aa0a344aef3e5b3506a2564" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-x86.exe", - "hash": "018ebbced95ab79dad05f38ee72b3808e0cbdda0ae84ce358250203798fa50e7f78a45a509bcda8a17bf7b3eab0dcea8f6113bb19400290816f54c919667b7d3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.302/dotnet-sdk-9.0.302-win-x86.zip", - "hash": "f21dfca00c5920d378e1cbfd02e8eade70dde8c57e0275b7f49586f85cd8c497b3a34154995834fb925b93f6a1b0e2ff9baeadfef14da341e2ad6e6b77d7541e" - } - ] - }, - { - "version": "9.0.108", - "version-display": "9.0.108", - "runtime-version": "9.0.7", - "vs-version": "17.12.10", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-arm.tar.gz", - "hash": "16588a9c6d0308e0b692acb854764c42f1ae95dcdda4379b44a2d93c8970c5c9745b46fb4084eec2961e927aa5a3123b7dd3b546d00fd787a9b06cdaebf986ff" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-arm64.tar.gz", - "hash": "95a3f8a66296b23aecd86ca296e2bd147cf396e2f6a7b6c6be795b70df2411d6163df15e28a6bb26248e20b619c1794ddc5bb1dfd2f0a7d5e1e58a9d2d453982" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-musl-arm.tar.gz", - "hash": "41ae685627a9d27fc4b19a26f0e760115384903abb2e3919c4f8027ba3e75a8b4034b2e997565f7799eae19385103fda1e131b23c176a1605788bbcbdf5fc111" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-musl-arm64.tar.gz", - "hash": "2fc78667affb757a707175a3b0c557985e2ce930a7503f4aa84f20b082d9886a35a0f0df54ba1902d78b02d618fb7c8899dc4ea99698ead43c7cc565cf55ffd8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-musl-x64.tar.gz", - "hash": "0a6079d484a1d104f6faf05fece25350e9c18b494dcba33868d9294c7c2e6c936e7a19e882c65a7577b3678c421e40dfb691ea9504a67d65aa8d5b892b97318c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-linux-x64.tar.gz", - "hash": "8c2d988e998b906c71684cbe9aec9cbf2b65cb31ed8c3eb15a6e65f961b031faeba32d71997f50d56e04e6f0081f860480722dc1693c6b015543eb61acdb5876" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-osx-arm64.pkg", - "hash": "13ce93880628bd3ab3ca44e7ed85bbc7998140b7388d3086983142787279fcccfd23ccfd8d3f2052e526054630ee166fa515cbf2e6df236d78d1c4db8a1c8bbf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-osx-arm64.tar.gz", - "hash": "11e64b86a7ef8f23c0b0b7681357fffce8e2ad9a38d9280378a61b9f1525b2c37541370cd5598bde2bbc12451fb5b9f39251c5ecb20e4606c1343498bbe30710" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-osx-x64.pkg", - "hash": "72cd0ed1a0a3664c405659403b203346ee2cbc99fb820fa2efd0571ea5c30317c6aae65eabc6107d746aa761c9b6a4ed53ddaea32e50e222f0112f3ed2d74e3f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-osx-x64.tar.gz", - "hash": "927c5ae894db1bda5285cddea02f73cd55ad3ee49f1348aa15e3288963b1ca695012fce51fc7fa0c25744efb72f9cf11cdcf67a81cd9e04008f8dde083bcdf62" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-arm64.exe", - "hash": "8dbe0f5a57ceb1f54ce70c77a4fb8dd421773499769eb544b62d69a4e07a48f697fd27fb8837e860d660f2d67310037144b89a495202b3e2334de2522ba790db" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-arm64.zip", - "hash": "7f3990a5fd14b461aa0bab274bf246079efd1bbc46458d40e917df6e0c78a5aeaa7402b071cf3d42a1478899172ec5dea61f06f00dc9682a05f039e26b5dffc1" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-x64.exe", - "hash": "0b7bd571d3467f69edba7273fccea054bbe108919158b3b551d68af83e3cd0a0d8233c47be3a2d6d4566fb1e9d3bcde52e45d2e419b3a4b1fabd48f518165f30" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-x64.zip", - "hash": "d747807f8b88a9ada8502d77cf19d78a39369b289fb3287c5d86f154829b7807a6ffe36b0d39ed5fcbae36b7d77dccfd509f4bbbdd4646d8422b14cc3a9897d7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-x86.exe", - "hash": "a72a63986fccdc331208e45c4aa3716b9b93fe2e3810c7c07621dff4efe96e733cb042712ab1405eee492cbcf03a4a1b3284044acf10399cc9d750b252f65e06" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.108/dotnet-sdk-9.0.108-win-x86.zip", - "hash": "0a4adcdd05c8ac438bf53a35e5a3e2a970c13e9de672c9a6ed9438407ac04fc455544de920b7536e18f2ce60952b5d840c1400ab0b4fea15f2ea2c985d880e20" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.7", - "version-display": "9.0.7", - "version-aspnetcoremodule": ["19.0.25168.7"], - "vs-version": "17.12.10", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-arm.tar.gz", - "hash": "74c42351be40dd6f20656cc2f40533d5f45d759338fc49cdbd69d83fb4cf4e4157dc493c08083c4847444bc46289d033f93c978072f9de72bee7a541251aba0c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-arm64.tar.gz", - "hash": "79b28df2bc522d47bd0ea3f8b4aaa447102f92019d038670743fbbc1e6b31dd206499ff6dfc2d31623dedb64a9e2ca23608c7ea7225f1f071745de72c9f81bf4" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-musl-arm.tar.gz", - "hash": "34977c4f34e11f52abdc0e48f04dc95ab0d1bdfd641dd40a4c5390c090d242ec45ed50afb176139fced6a5a5346b25345fdfabff1ea438b8594b52692f14a3ad" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-musl-arm64.tar.gz", - "hash": "d4b6b5439957f6ad31c1f893e3e75b4e8cbb3f2f1d9a7fa21ae9229ae6525fcf98d643bea4cb8e78db1c509e3db75b786b1239fd2def2328e99541a2b04e57a9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-musl-x64.tar.gz", - "hash": "ac7fc51b80bcb92c2822520838492cc908c08d06011482db38776d6aac442004af10a50bace25e2dd986c430b61cacdc188caa1e727c5821ceee669a0bcb0e95" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-linux-x64.tar.gz", - "hash": "b175d4d0578f9f5d735d59def3f44459462ef36b4bd07d9ca0ed9853bf42d90c7bace195ff264a9dcf6dd4d6d452c87059085146268fce3540ed58eaf39629eb" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-osx-arm64.tar.gz", - "hash": "03665ff6dbdf7805bfdeb4ab9b9d51f1ae1fa86e5cc8a42d3efa8f88d1402be27d67d1788a1a659cc427af3417d8fd572e0d9851c04d4b2cc374e2682b122039" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-osx-x64.tar.gz", - "hash": "6878af369c72761840edf2dcd66d58cf4cddbca618c9fbd723a6d6d3819cfac6150a8d72c99f771129b54c2ff3e6ff25805c88e70e5def301e2428458b7ef446" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-arm64.exe", - "hash": "a74a03f39f2e24c89dd93aef340bfdc8e09f73627d017ba7af6b45060862b175f9adf4e227d8c510a8a38095bc1596261cbe120e6efc917742adf93a388d9ca2" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-arm64.zip", - "hash": "dc9f21339e0588331e3213be6a2e72996ae9ed23da6a1ed41c1b5f51f59bcd71c8de0781892195ed509799150c7ac78129c5ccf1f4ddec859dca6b6634e3e239" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-x64.exe", - "hash": "9da921bf5582d6c65ce8048c517b501096f75d432b393e9f044eb78d8e6b83f79dd00cd79a13812339e7e64281302430863c91eefe7d48f5c2e616b3421d3c8b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-x64.zip", - "hash": "9c5bf0a760af66b5053d5d759185af4faef310753e6916cd309eada01f8caad1d898414fa9d1409d752bac0bac40464c13aa30d462f751cf8d1500987024abdb" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-x86.exe", - "hash": "48aa3c9f8b7741299811372c42ffb1dfb73a80456c5cc2a6e6f649f04706007df764cde42b2a237aeccfa41c39321cc5a6a67bcffc23b4bf95dcb20f5ded0c1a" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-9.0.7-win-x86.zip", - "hash": "56d8e89a02431fe3b76cb363f85b54270b3ea2fca9394dd1faab192cbea3ce3f567fe66d4edf82e0ca776e9e58ddc5d765ff91ad9787ac66986ef37e9c3df4a7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-arm.tar.gz", - "hash": "28ed0b5ec28032c11306e7b472ba5fb7678437514be8ed9bed2649ad20381ddb6f4d7216c62100aad6968badddc4bf9c2b4b91ecdd84ba905323674d8fd440ea" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-arm64.tar.gz", - "hash": "b60d925e5a6010be309d8768c8624e2efe2884c7b23f510b91e3d2d5a53dbb5bf5c986e64b4f5aa8cc66b4d9ef48d1565a7c81b8ab1bcf40839b3312b20634ad" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-musl-arm.tar.gz", - "hash": "55f1c3b0f9896eabda9e7abb87efa692ed670fac5df132c1f935916ef5db3106d86ee53c35e48facf9cc8bdf3c292718b887a66c49c1cf3420cae18472587a2b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-musl-arm64.tar.gz", - "hash": "603f659d8b07adc6ddd76119e4a3afbccc003f32b96e04a168d2ee0df2be7c52dd537d7e22098c7e1443d9286d9f653c223b47e2b67c5da7c77c4d7b670e607b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-musl-x64.tar.gz", - "hash": "4a2793eccfba8261928d9b3b6132cfe03273236d0b242bb180f1ccbec10c9a362c1601d5b63607c326538455bb4fb8dd789aac5c3493f54bae6485b6950d84de" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/aspnetcore-runtime-composite-9.0.7-linux-x64.tar.gz", - "hash": "76c3a9333db56091c21e7d9d59600ce5b4e4d9bf460ff4e20e78f595d5ee0a0a8f9476e516e73b70043b8435b401375e9ed45dbc05e0bc4883a850beeacf1953" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.7/dotnet-hosting-9.0.7-win.exe", - "hash": "4c26a2d2c23679605dc519075830416fe96204804bdb9bd3f2e2cac786a80645fba528f5bb0432fa19b2f6a3e5d618bea833bfe859200eee099c3a728402dcf2", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.7", - "version-display": "9.0.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-arm64.exe", - "hash": "e1fe0537a073914951d1c34e1b8e4d676ab9537b947b33dde054481c0325d7e364362079b5d1ee4af9896f232db2d0eccc60a06df163e76d5b7cd6bb17df6686" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-arm64.zip", - "hash": "ca1b3bfa248e264d7a14a63f2cafd47c3b1e7fda2f37e2875413fd03a6a34b4c3b2f10cf4cb0d8eae2b7c6c76c261f84cdfc851a776e3e4b5959b79779adff57" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-x64.exe", - "hash": "b8c565d401aa1ed0ac8e531660e7b67dce481af7f9113816852a24fbc5ed06210787ebb8a47e576b57a8cd746279c2203569d11b2b4affe66ee0f80e26c64ae6" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-x64.zip", - "hash": "c68ecaf023bed339fb533fbc67c239264f17d0c9e0c10b765deb43af299c6db941e6589ebf4d0411f51fc783010e5af607e21f58c9f02871d2ce32c9c987ceda" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-x86.exe", - "hash": "a73bed11192173204263e12efa0ae1892f0768f3bc6230a06c9cb3d418c8edfbf17b1d92423d7606d6ce0849bc6d0e13c28210ee39fd7c4167e5f457df24c84f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.7/windowsdesktop-runtime-9.0.7-win-x86.zip", - "hash": "33f9579cb163e48968a8675234fa813da56c494f1171380657001b877fbe928f755e6ccd84c4ae55d68c30f52ccb8817748cff8848d1b2ea6898e324aa35cb78" - } - ] - } - }, - { - "release-date": "2025-06-10", - "release-version": "9.0.6", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-30399", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-30399" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.6/9.0.6.md", - "runtime": { - "version": "9.0.6", - "version-display": "9.0.6", - "vs-version": "17.8.22, 17.10.16, 17.12.9, 17.14.5", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-arm.tar.gz", - "hash": "4b54965aeb85d08c79580885c69d41b7ba0fdc478618f40e3a08673d77e5987022157b28eb0442be0c2ff4f6e659068ea3d3e39670109de68207d3b706ba0663" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-arm64.tar.gz", - "hash": "24ab41d34be7f6718d7a9489e21983e857e7348c914157e8fa04a6fdf010d43a942a9757c059d88c863efd3aeaed6781f928da355021c50b965e8d0915021ea0" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-musl-arm.tar.gz", - "hash": "a7979a10bf8124f83510b68d9f5036bd92a21e3b625fe334cc971b79ce2168bde265ef76c92d5f909e2539fd443ad7f14265270647c98770717fc666ad15bd9e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-musl-arm64.tar.gz", - "hash": "47900f24b161dcb27a6a0c4faccd372a40e0c0c5ebaae15faea1790ab3a23414f7eaff338142b34509c0bc61ec632952a07bc0bad5137d3871fc8553a66cffc5" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-musl-x64.tar.gz", - "hash": "70ae92ffc4cd1cf074468d8671a6b97ce44debccaf724bcb517af655cd2e75d7f9876389e3d83ca4e745df51e97c2b2209b739ea29cb24dd68b34db12f58827d" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-linux-x64.tar.gz", - "hash": "bfe257b7a6dc05053a784d3ac966ca7fdb7a2efd5538e27c3ea822aabc9d3a20f44af4486df10021a5f64c893224c2d947efd06492d1df3705556df76737126f" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-osx-arm64.pkg", - "hash": "276ca2249af6aa49ff31bbe342ac6662e02e48129132c76f0c88de5ba5b1d7b75d47c4c968614084ea8b1c64f4d982c80451786647f50c4e6852b4791ca43415" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-osx-arm64.tar.gz", - "hash": "da7c9947e7f812a5a7431cb5d5e7df1b2f84c227cb7c48a6ffaf41f2c69a9b736194822070a050ba9e5166de759a815f43e06d99d385e97737057ca5b351d455" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-osx-x64.pkg", - "hash": "65fefcdb01ee7dcb0f7c3532460383d102442a93dd4ece5ed418f7f03156dcbc63cf84a7a0f07cb381b65e6688dbf9f34e8f7333bcb6d45275778d30792087c9" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-osx-x64.tar.gz", - "hash": "57683698240016cdcdc8d5302e83d148a820e882e521ee1816e0725db77b5af1d52206e70149a0a7629bb119a8e7f794f8e80d3b866f4316ea9b8ba8153d566f" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-arm64.exe", - "hash": "08a2a0a2e1f45378f9910fa3b38bfa9377c8582bcd24b561b6d3aaff2f659e62d7f51e3551c6e21157e5c15f44c4d0328b4057abba5e9414fba42cc9cc1e5f57" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-arm64.zip", - "hash": "0f7e0bd2b7d0348af894288b6f4a5d5a28233d7e969a8ca48acf15091b62b512eb3132840d035537faf13530ed6b72ca4fe2f20cc8b99358d1d0ff57077dbc17" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-x64.exe", - "hash": "fb8f9e17062a5ccd89c3040f0595fc334744fcc9c0d9177ecdbb7a8365cc99dacaf0bd19aaca7da29f18a1ac3597cc675dc406b4e843831461521415e97d5ec4" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-x64.zip", - "hash": "dbc510d2391b34bcad62a622b65ff32c1ea3a210a4d80e084e93cf0c47bbcfa53a5aedbfcfeb9641f23a90abc63eb31da2107711ff5bde0d48d51645eb12bece" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-x86.exe", - "hash": "73a4bf36f239e2c7cfd6b07201e07d8a842847fef4ec48e3faf90dbdaeb92a2072cdb9c47e2e0a34133e98b8aec952ce4d8e42a0f5a74938ac46538d422a7485" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.6/dotnet-runtime-9.0.6-win-x86.zip", - "hash": "d379caf8963163a8c867e4955510ebc5169f784f586f1c02fb7cad0ea290394b5363b2bb637546e2cfc2851317aa785343a30a2786f32047456eb2be841eccd5" - } - ] - }, - "sdk": { - "version": "9.0.301", - "version-display": "9.0.301", - "runtime-version": "9.0.6", - "vs-version": "17.14.5", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-arm.tar.gz", - "hash": "a8bf2ddb358ee2c7bd7afc040d18426f5c92206cace0572798f9ce6925c910dd1a493ed3e35304c9a8509b2621a664559ff445d3014ae0a039559c78ca002b41" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-arm64.tar.gz", - "hash": "24e2329c40cf3e42cd1e8753d88fce454bc4a9abbad2b01e80f33130a801123a531e227673d381cb9710b715805f188fe0dcb9833fb7d04dab2cd937a1f480ed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-arm.tar.gz", - "hash": "d01f9c01ce6ed6cba40b4381b1276eb80caa658f1ffc8ff3ae41369cc4aad031739fde31e63cb427503f1b71274700cfbbb8d54f3a6f3ac45055d9260acad15a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-arm64.tar.gz", - "hash": "b782638f6f0d14ab910de395274b169664c652b534e476b39d219c55a46d6314ee51d4a2ca4709bec045ac1eb277f389b290eac5c9a6b75e501be42c071563f7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-x64.tar.gz", - "hash": "8205f0654bd1722364543587e9d2ea43b0a96ec9925c3791f2e7f4fb04f4a5a348ca2386092ea1564a727e0034e46775d4294909eb8405358d62ee8333d5dc8f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-x64.tar.gz", - "hash": "7415a264843d3df78bd57fb2f17074e811e0b193976a45b4d6778d3ebb9266854c4e037c3cdf4b534de7b8c64799b0e58dce9fac6f3f3c6cacb3295555d31d4f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-arm64.pkg", - "hash": "581f818597d2e4f64298930996577f3cbb7f5e5ddd48268140933b9b7218e97173dc1b3d7491301c153aa1dea0003a2d5ff7d8bdb073a387195bcfab24471a55" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-arm64.tar.gz", - "hash": "36f1aeb7aff2aac117919f57abad725c89dacb879a3c3b8d41b01575602ceb2d5cad805d3c6d67a0fda0208b2477d0d58668c133215392ee65bf88586571e43c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-x64.pkg", - "hash": "c6e697b944d6c92c4903883a1976b916628e0110c9ba08985d2bcaca448f55ab81a1c0e8f62009c6d8838958bba32ed2af9e2ad3f4f6d0aad1afe7c7fe11581a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-x64.tar.gz", - "hash": "5bba401f9b6450c0ee51ddc3943c79ab92ed9188e1d4208001ff97af79b2fb51db92435548c47fe943f69fa3c2e88ef8e9408c7821a59d8432b843797777065c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-arm64.exe", - "hash": "e11e88d7b09fe7d30f47ef81f36d9a6d0521a55a27d066a2739045771392c61dc88ea2680e104c61fa89d539a0ad4d852fc688829b39e078cd2aed3605f6c364" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-arm64.zip", - "hash": "b930cc5127d1e36df066296a902e124106e8ec640d763e4b287ba747e393887ce8b9ccbfff15d5affcaf7b563baf93e7c5b821b8c7036aea50aa9e57994cd388" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x64.exe", - "hash": "2a7a1d35ebe1c6911037ba36ecd041b16401985bf00d19280fae5d0780bd9fc3a69186b77e7a204bd51f07ac22dbd898f99adda56dbe8f89a8d42819763a4c55" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x64.zip", - "hash": "f5b4a5e0c27d3e8cb6ce3524d99ea4e02c2d1f17a9b2a219f154bcd788455e25c45f3b305bb0b25468626b392f3b14e92dc7c628cc4299f7a7dd74c3ce1b05cd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x86.exe", - "hash": "9ae1a83e988c847c8720eb2015c9735983d3a922d3fcdb7d71f479df16071b07c0bbc3ba7bd22f5559e1e3e0b2fc37acc189295387c398638c1c3725bb6deab8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x86.zip", - "hash": "aefcb682f3504dc73b2e5140b67e4af861cd6cb707f79138b969d7d4e966dc598a6dbbcc4a3ceac034c3ec5d4509aace4fe4ab4cf1bc47735cf2d0e1e1759ca4" - } - ] - }, - "sdks": [ - { - "version": "9.0.301", - "version-display": "9.0.301", - "runtime-version": "9.0.6", - "vs-version": "17.14.5", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-arm.tar.gz", - "hash": "a8bf2ddb358ee2c7bd7afc040d18426f5c92206cace0572798f9ce6925c910dd1a493ed3e35304c9a8509b2621a664559ff445d3014ae0a039559c78ca002b41" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-arm64.tar.gz", - "hash": "24e2329c40cf3e42cd1e8753d88fce454bc4a9abbad2b01e80f33130a801123a531e227673d381cb9710b715805f188fe0dcb9833fb7d04dab2cd937a1f480ed" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-arm.tar.gz", - "hash": "d01f9c01ce6ed6cba40b4381b1276eb80caa658f1ffc8ff3ae41369cc4aad031739fde31e63cb427503f1b71274700cfbbb8d54f3a6f3ac45055d9260acad15a" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-arm64.tar.gz", - "hash": "b782638f6f0d14ab910de395274b169664c652b534e476b39d219c55a46d6314ee51d4a2ca4709bec045ac1eb277f389b290eac5c9a6b75e501be42c071563f7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-musl-x64.tar.gz", - "hash": "8205f0654bd1722364543587e9d2ea43b0a96ec9925c3791f2e7f4fb04f4a5a348ca2386092ea1564a727e0034e46775d4294909eb8405358d62ee8333d5dc8f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-linux-x64.tar.gz", - "hash": "7415a264843d3df78bd57fb2f17074e811e0b193976a45b4d6778d3ebb9266854c4e037c3cdf4b534de7b8c64799b0e58dce9fac6f3f3c6cacb3295555d31d4f" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-arm64.pkg", - "hash": "581f818597d2e4f64298930996577f3cbb7f5e5ddd48268140933b9b7218e97173dc1b3d7491301c153aa1dea0003a2d5ff7d8bdb073a387195bcfab24471a55" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-arm64.tar.gz", - "hash": "36f1aeb7aff2aac117919f57abad725c89dacb879a3c3b8d41b01575602ceb2d5cad805d3c6d67a0fda0208b2477d0d58668c133215392ee65bf88586571e43c" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-x64.pkg", - "hash": "c6e697b944d6c92c4903883a1976b916628e0110c9ba08985d2bcaca448f55ab81a1c0e8f62009c6d8838958bba32ed2af9e2ad3f4f6d0aad1afe7c7fe11581a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-osx-x64.tar.gz", - "hash": "5bba401f9b6450c0ee51ddc3943c79ab92ed9188e1d4208001ff97af79b2fb51db92435548c47fe943f69fa3c2e88ef8e9408c7821a59d8432b843797777065c" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-arm64.exe", - "hash": "e11e88d7b09fe7d30f47ef81f36d9a6d0521a55a27d066a2739045771392c61dc88ea2680e104c61fa89d539a0ad4d852fc688829b39e078cd2aed3605f6c364" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-arm64.zip", - "hash": "b930cc5127d1e36df066296a902e124106e8ec640d763e4b287ba747e393887ce8b9ccbfff15d5affcaf7b563baf93e7c5b821b8c7036aea50aa9e57994cd388" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x64.exe", - "hash": "2a7a1d35ebe1c6911037ba36ecd041b16401985bf00d19280fae5d0780bd9fc3a69186b77e7a204bd51f07ac22dbd898f99adda56dbe8f89a8d42819763a4c55" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x64.zip", - "hash": "f5b4a5e0c27d3e8cb6ce3524d99ea4e02c2d1f17a9b2a219f154bcd788455e25c45f3b305bb0b25468626b392f3b14e92dc7c628cc4299f7a7dd74c3ce1b05cd" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x86.exe", - "hash": "9ae1a83e988c847c8720eb2015c9735983d3a922d3fcdb7d71f479df16071b07c0bbc3ba7bd22f5559e1e3e0b2fc37acc189295387c398638c1c3725bb6deab8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.301/dotnet-sdk-9.0.301-win-x86.zip", - "hash": "aefcb682f3504dc73b2e5140b67e4af861cd6cb707f79138b969d7d4e966dc598a6dbbcc4a3ceac034c3ec5d4509aace4fe4ab4cf1bc47735cf2d0e1e1759ca4" - } - ] - }, - { - "version": "9.0.205", - "version-display": "9.0.205", - "runtime-version": "9.0.6", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-arm.tar.gz", - "hash": "9000324aeacd355cb17802d02057925b6095b98a7b31bd06d6c49e71f932d4b121c759a9fff77ae40e4877e475b5b70cb71fd149cd35d0ff7fc3171c6ac0b224" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-arm64.tar.gz", - "hash": "ca4c89c4fa9b3c2d0966b1289e4a0a1a926b3778d974f4e32124a2191c2bb9952b80c3d36235eee7310310023fc9f479e05b84fb4a8676b97e1b4f739b7e1a10" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-musl-arm.tar.gz", - "hash": "d96b553a6d1d90c1382c80dda68dd4200fb57cc340f38c127580653ae82675cd99ef3bb65b7f153f439d42341025ea4e01162944d88da50b8d757bf6a8716cfd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-musl-arm64.tar.gz", - "hash": "9782e0a33726cce01bf68a8431c7fecfaeebaade21796ef00417c2f90721ff4d39e7859e91e8cd66eaf4c066e9019f7c0bcaca9844b37014c2e9ce41624b9646" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-musl-x64.tar.gz", - "hash": "ce6b03fbd955be22a0551c8614f56c04ec80de214375e6a5dec2cc9b6c64f8d6d30f185ad8d8cef42d055cf899aa588217fd74c6fb0d51b138b6a327f803e490" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-linux-x64.tar.gz", - "hash": "df8e2d95a617051c44a524471137300868d52b523cc41e8f8d31aade968407ae406d5b6e47f484f603be52c0a6e567586f0f9c16ffc25944f3a8f42f88c3c781" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-osx-arm64.pkg", - "hash": "eac0e6384d62e2abf1553393e64f398bc1670e45b0115d4227bf42746d6ebb03ebf9a6c117da7c3b4efd4a4689d140cafb18ca594543a817c2f5a361a944384c" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-osx-arm64.tar.gz", - "hash": "9c753021c26a0178cfbb4f7a2cf4be65e2ef1c6ce68912c5936c7cc992b0260f14a4490077314c363744f52be96f432f169838a2df4b5dd00bd3d3ff9855b4a1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-osx-x64.pkg", - "hash": "a07f1d39a5b6bd0fc54f425da08f67e5b4d5d5a0bffd82e1a59fccc4dcf39a7d5c6ca99c2dad29d9982855a57758bf75c9c0a088e66c2fc4581d76b23ac1417f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-osx-x64.tar.gz", - "hash": "ee4b8d1b61b08fdcfe98cdf6d1cb46354ae8203b12560c73e7986489dfcd85c5c186eb085ee44d6af90a0a702cbd0c5ce1d9eb4f1e0d4933eb043eb3b6f63b28" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-arm64.exe", - "hash": "422db669140b34992caac07c563b8ed2797911d7ac915fb0d7c47291cc5438a2f9964c7ee7fe5bf8661d9a0bbf74371991e424cdad609d510f66f2ce599ef436" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-arm64.zip", - "hash": "6f9989e5428ead881b0d906cd422e559af8664838550ae6bc3b735b09268b8091495513d6d6898bc4c812cd929624c97600d3de2b99b400c6a7c5749c08703f7" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-x64.exe", - "hash": "6282fec0fd48d892bfc98d08de94f041a9c268037939912e7780ed6b75b3bf16cf547c8afb399546585a020a5025bf3aa6d102e1e313326402a39ae65c197128" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-x64.zip", - "hash": "2764269644241a01e392e0b53aa0689948a5d238f0a87ba4ad5452c5e7b6991c9b8406813d25ac8abc72839ab04ed399c3ff3166a310715306f4d5d977b4fdd7" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-x86.exe", - "hash": "c1fee2d649b519f17244c83e863145f49d53580d0484049d0b01444a686ec233aa1869cbb06ec05dbceb91811f5e33acc76557f5fda5bbbcf936686afafe51d8" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.205/dotnet-sdk-9.0.205-win-x86.zip", - "hash": "e780c68bd3b6de61b0e31f7cf3f8be7a61db8b2aaf8cc7fef205cb4a1ab401cdfe9d233a4742731285fd82efa67515d2158eaeaefb0ee12303261ac6f9da5d13" - } - ] - }, - { - "version": "9.0.107", - "version-display": "9.0.107", - "runtime-version": "9.0.6", - "vs-version": "17.12.9", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-arm.tar.gz", - "hash": "35eb6bf4ab5e258e535072274f70aaefd1fb295eb44d32b5b42086f7216152394fb0a82a7be11cd883c1d5740ad7f08809f2f9dbfce8bc00e5a24d746dc64079" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-arm64.tar.gz", - "hash": "fa3e89b5b69a50038e9ec2adb56a16d5064fc5a0801ba8e5676a2e102a6bb220d4f9db84be49b744214b38e583c8298633244ebb4f47c864fd7e87eafb137685" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-musl-arm.tar.gz", - "hash": "6867bebb28cff32e1efbf82e9383f5998d1096b09ee5ec587517b52c07009904b4b4b2bcde54abdd105741818e6a50abdc3b155816ec82c61d5593a7ce913bd6" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-musl-arm64.tar.gz", - "hash": "8c17745f71b7c599b09b7546cd0e209bcf6fcfb47dd487b59434a67bebaf54f23a95694ed307290256de780f2257d2f5a008021931f1da4cc990a9f5007cd586" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-musl-x64.tar.gz", - "hash": "270209a577ead9338738fd7b5a55e62e83c73a923f9fd81f49771d0ad36df1f41a0fa4e1924757143e15f1b410522a22d1592c8b1696ade855447f1e68821274" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-linux-x64.tar.gz", - "hash": "588e8603dbe514c230edb0307c98522cbd6150a374242dc6a6167f9be879313a8a2895305282865784eaa296c8dee8cbde0a679edb8dcbf7adaa6c1f7a0b6206" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-osx-arm64.pkg", - "hash": "30455562558f51757620f763a4ce2964d23b5361eead163d848427f1ef0d0b495402e2587a581a008616f0d844539421e08176c47bdf22bceab22fd70d6097b1" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-osx-arm64.tar.gz", - "hash": "0c11882a8e720ce7a473fcbc5906192aa14ee8747e1a78acd55cfa0b0a337194093e60d53a87527fa3e1e7d420aabc332d3ab6ab09ed6ebb5cc6bfa179cef571" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-osx-x64.pkg", - "hash": "66dc9b713548b69c8435604818a03a339762575fad5f9744105a4a28c1dc9ed57f091c71504b1ff7b6bec240b13b14a485b9b0554a254a2dd5d2bb26f3c1c643" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-osx-x64.tar.gz", - "hash": "ec30c31a6b62cf0dce36a6882b71364fe74e6d635a437b0ce9ab80f54770e26c00cacebd62a146a1e2545913bad75c8bc538e5d5374ef4da7725d9292c3e29df" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-arm64.exe", - "hash": "ef0efa5a8943d92a9ca62b010f7a6a79d97c7a0bce04610c5fb01635ba2962ce7c32ab50bb79a15a8a2344c461588b96842c7a6ea383be3a278d29a807955513" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-arm64.zip", - "hash": "7ad1011f96400562fe07f4f7e17cd6a09bf6cb3962badf85fa6419b1d3fbb7b3b4386b7afd82e75f4a259170a550ed43c9b1ec123e61910ac1e6ebb11b2b274a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-x64.exe", - "hash": "1723fc3c0bc7519624d36d8bd8e74d72d264c208547d6427e4cc67f39f2a12b13c2255d471a1b0aa3cc0ca7d96b0940060fc1c99b41ebabd2bce368af5edbe64" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-x64.zip", - "hash": "bb9595c0b4d0094c7585f9948a0c5ce7e1c3841fd0b2098092828ec45439bcb240c56f14b1fd6015e63a731f174049a6e7b78c6b5f40a9f869835bb74cd477db" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-x86.exe", - "hash": "8825baf408532d942467e15f29f81deffac50a76954252d542bdb039721d71cb9cf68891fabf0a50a1b9fa5e1351a6663e7246f7ebe5af403162c2594ed5cbf0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.107/dotnet-sdk-9.0.107-win-x86.zip", - "hash": "d5a636d87c8ca6a446800517e7f6cfc15eb717da16c5b1ee12911d3b6ad0bbf5b7598538b8a3351e4e4dbba60d36d4ea71dd997a60961af665c1c0391a03e815" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.6", - "version-display": "9.0.6", - "version-aspnetcoremodule": ["19.0.25137.6"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-arm.tar.gz", - "hash": "435f1e1d199d8b490155a4da35241137d171196b22dd19c233683d0431d848e13a4244563f4f4384997459f40a767af7db4db23f6da722cef9a11c73250a9dd9" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-arm64.tar.gz", - "hash": "8a7024bd144254f400c0758efd5c39854eba5d7e3187fbde2dc857cedd9012ae93aceeb1683bf6bf390cefba40c50f95cc3295a1a8eb83133a8e01b91289dfc5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-musl-arm.tar.gz", - "hash": "f0e7eb3a1782efd88a60c5c45b89f244068fdc9cfb19e0ffd0b4760a0f7125f43f2bd00eaaf69ad5ed2b5f2b74d2847c916ff79579c77628a7d35865d72baac3" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-musl-arm64.tar.gz", - "hash": "c61f3490e7f6c2d43bd98df9594a38a9913c9f601688bf0631bbe21d55329a5f5731fcc4c0f6bf60db4d8e99f0b50700b1886d342d1f899a8ddbe9e9ae96f0d0" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-musl-x64.tar.gz", - "hash": "db67082a6bd12d268dfb393dac12df316268e52401066e46aed21adcc55a69d3102d57a0930bd5b0e5a20e5abcf64d49eca99518b2ac912d779a0047d36c45be" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-linux-x64.tar.gz", - "hash": "54c122c4c6127ce7e0f0ad0479a101db1455484c9e5bffa8fdc0dd72d2db028be86861f331f2c7c1cb2eaee9a92e741e4e5da567795533e46af27e4e481c0451" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-osx-arm64.tar.gz", - "hash": "8934227df76bd88ab9d276fda8a9ab981cb8b3202017c4e263a44bc01ce8afe5f53da8ba046cc5a4841a3de0f721767d90964559797d0397144f4ed146ff691e" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-osx-x64.tar.gz", - "hash": "49a5e42299f22bfd2aa416f66977ab9c8749d2e04649255915e6d7ba0989d5fd2539b5fe1ba415e1f3b5d3ab15281821a07a35f39dd1c25db49ae8cad12427df" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-arm64.exe", - "hash": "e505d2def09364a0d6359ba26a51eae3de529dc77320da0105e789eade9b5dbdf0029545e5b5c45d65d84b36fafc88fea404b058308d97251ab2742377c82ae6" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-arm64.zip", - "hash": "6a0e929a7ee7b3aae605ce5f4c49ebfdfadb3423866b1d845c3ac00f2a248cc608627203fa1ea31888025a84ebc04dc880ad1ff2825dd45127c421bd8b4f73bc" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-x64.exe", - "hash": "08c5ff52b247880ea0050ca0bd42df73269a25e4dd408e75c4115b97736fba02b7e922367b610a6ea6dd54b7d04e7456d19d55ac70d5a2b273c25114361d77e7" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-x64.zip", - "hash": "fa60842bc0b069390e1eeb8409478e38a54b1c0889b828a20f3a6f70166b121d58afcdc02c5a2e092bf862c0d3644416303f0712b6ecc6dc52cd805c8822b8df" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-x86.exe", - "hash": "1fc880f391d1620374a0d4055bb369966bf7791d74e09fbafc3791eb40380d6267511a11da91941f695885d5540639cd42f37e80575ecec941eee90885f05f5e" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-9.0.6-win-x86.zip", - "hash": "bdf8e882fa50afc444ff213dfbaacb824156319f724cda9a5242d7b49459281088fe49ac1f64bbd1382486a34bafc2c237f9ffe84eff02f0b1ad000bceaa550e" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-arm.tar.gz", - "hash": "6ab4b011d6b6c47c2224ec83692a8df06a23e3a87c4e8aae767b9e55db563ac7765be016e7a57b06237ec0b3a9783b341b96c25b1f3a5feedad297a6a294d81a" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-arm64.tar.gz", - "hash": "c50e71360bfc0669e805e02cd5bbae66735415ece09480ca9ebba91dedddf817ff0265e6dfb22dda9b1fa9bf796ce24b915475e837017f4fa211782e5a6477fa" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-musl-arm.tar.gz", - "hash": "9f1e39593bd4846574435bb7f492e3b5930ce7c3eb064437635fa207a130ce2283ebea08284141191c7635c67ae4e791dac55e7560dec1f38695056323e83f64" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-musl-arm64.tar.gz", - "hash": "7f411c68d72a0ff54263c15f3665747dc979b519401b893117bab5baa5599af51cc02d2679bb9a7b8f25888021b899557179a2d0b6f87dbe6a251581770185f7" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-musl-x64.tar.gz", - "hash": "4b36300b9d40feb9de34468898780c4f1a38f2bacb2664ab3fcba11aa55282e329cba0deb09704c0ff5f4e0d713000533fcaf8f0a34ac4cde4833bb3224de782" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/aspnetcore-runtime-composite-9.0.6-linux-x64.tar.gz", - "hash": "c2e0b1ff54ae60c7a4dd59c8d458f7db362f40bfff31d31279aa544fdf4ba2b0eae704fee62c28cf1e38d9768cefc1c0a9f8522bb9abcbfc0df3603979a94860" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.6/dotnet-hosting-9.0.6-win.exe", - "hash": "38487f64a8d24b823836f1ff5d26ce5347eb6e7e7508293a61b61cc102f2d9f746b1bef62f7aee0f1cffdc7aee02550eeabd832f9d52bb121d229f967d787c3c", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.6", - "version-display": "9.0.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-arm64.exe", - "hash": "5c0cdcb09fe9172a2781b17d70c460b5c6f1668d3f11a95bde52b7d7885e764a594709408787b62565bed00b52a1cd7a7398bef0345acf949de763a2984039c3" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-arm64.zip", - "hash": "796e8af582c7b75b2d2db3d5d06d8cbe6ce32449fc98834e6d0d60f2c531625d5e3853c6c9be530ab62a9df6b63ec85e079467d1a7c8d7b46a4bb2608a482b7d" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-x64.exe", - "hash": "dfa66f36919c740f34a7cc4a10fc6191da289ac8bd7f5e763821223fcd8308f5dfabf49129a4f4d9833a401baf9336f25d6893385bbd97555d13cc578100b685" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-x64.zip", - "hash": "331ff7ac22fc54f99a896a7b4244713a9d36d8ad4bb4469bdcc2864c5ac4605dc1c35eacbfb30080e664799e227044718a6de084c558015e2e8bd3817ec5bf07" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-x86.exe", - "hash": "8aca513e9bbae321bbcdadc00fcc58a110e2df92ffc626136557c6d498f4d0db2a2bfcd6eda5b0b349954899b276bc2141b1da8f0800ed5d34a400cfc81de07e" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.6/windowsdesktop-runtime-9.0.6-win-x86.zip", - "hash": "c792fe4a688430dbc5ffe20ce0440107bad02cb5fdbc51d94ee1e4b22c3d82d2121681999a9857d9cc2b0ced02ca44457f6fdb216b2c944ad58cef54355df97e" - } - ] - } - }, - { - "release-date": "2025-05-13", - "release-version": "9.0.5", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-26646", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-26646" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.5/9.0.5.md", - "runtime": { - "version": "9.0.5", - "version-display": "9.0.5", - "vs-version": "17.12.8, 17.13.7, 17.14.0", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-arm.tar.gz", - "hash": "00aeb600c0c57c50348065d858cd85ec65b72bb1c1378543f9108f3cd2b5f33d52f3f034e142f45e92c76c171e33090c2544e3661d01ea8f0e2bb20f11d5b994" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-arm64.tar.gz", - "hash": "ffd7f6d16bbaa21494b71b692c54a5e398f31cf600870e028234bd07612cb6d43674c6371fa8470bd7f11b40a68443d22e39a84157cab8e16f52c5c5ceee3b83" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-musl-arm.tar.gz", - "hash": "cce09a24c0b9870e329389ab2aae2e76ec22bb7838654850ab17b56951fba00b15ca0692e363cd5e1e5d10d1e1df5a68547d3c2161436b857078d0182befd22a" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-musl-arm64.tar.gz", - "hash": "dd49b3b7ee415be566d74aa99f5e75949f64e70140d4d10e1eed3548f5382e625d5e17e9b3b41ae564329215e3c1682110ac1732f313f2b3a90c087f7a5a394d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-musl-x64.tar.gz", - "hash": "81a26dd91953a474208b4b43cf4174442e9f9502437f257e66ecefe4f9b9ba3ccf5b3899daac061e3a0acc141d5be207c03e2b11136f4791b2911c3ef3e24889" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-linux-x64.tar.gz", - "hash": "029f1df580c47f21aaef3ca40e5c1fb8e54854978d13fe88570df7c3408499ff0b9db96c492c03ecdb43a82aa24dbbe81491de811913592ac62ac58dee975b0e" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-osx-arm64.pkg", - "hash": "dcb7edc7047177922e6a3b915ee83d308a52c84921e3c73960e5acaf46226069f8b8155e7e6dc78bf5b8816e1c1a587110982197d3680da5abb69959eea4bbf3" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-osx-arm64.tar.gz", - "hash": "12a1de13d1a72c2e6c5198e83a178e1b9325c7c468a7387c5c8a29b0857160be5139516023485ce9108e26e91a35fa8252a8f2c0d59d4691b1ce46d66aada57f" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-osx-x64.pkg", - "hash": "1d386e1da3f2b4e16aa0d7718c781b0fa3d77ccb6564219c48901def119daad399024d5403fd77e53830ff9997dc2ba51346ce28b523974baea6f9d16f1c0670" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-osx-x64.tar.gz", - "hash": "8b3e8db4c4efaf94ad6d9462d4a703f59bac390b917787799d7f8be7910798adc84a9683cda9efebfb39a27b41a530e9b5a082ddd19fd884f43d167946c7cc44" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-arm64.exe", - "hash": "c6767ac3d397d7b42ea2abea32decf3a07c274bda92fe6df47b95f232867220b319b7b14d8966a8ad3abfce63efdcfd71f2f08af360c3216ecda8914393d7dee" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-arm64.zip", - "hash": "1ea36921e4789a7ec7800659c83e84ca4075d4eeefebe31ba80d629438bb65483dccb5a9a35fe495bd8119f283fbfe9f842b6303af8adec8cb1e204e6572a42c" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-x64.exe", - "hash": "122bfc33930db846c85b811d762afdbcc15744c112eed1a7d356242e7fe66d3158a5dd9c105a6620cf71e93a7c517a9fda5c2b9a7d8cde5add229fcd254ebf70" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-x64.zip", - "hash": "907dce00c1807d7b5120885a860747a55bffd843f0b3e26a7ce5f4bfc13f36bdd56d16341db74946ea29b1b9a67d038f0a776bd697eb27feb1af722957d459f7" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-x86.exe", - "hash": "b6e61405c8a34c3333691b88255a7fe3d5b7939bdd53aefeea042d4d0c78f65d0ec26cd7aafccb66c495068643e460d79c7d1e401e8252702719ca052b6e3aff" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.5/dotnet-runtime-9.0.5-win-x86.zip", - "hash": "aa2c68edde03b2dd9b92e9b79b9616fe71b826ef90027ff724a966ef5835c8d77b6a22dc15645fc071b898f16a5c8f0484b634eaede87ea167bd9ec04d5a8830" - } - ] - }, - "sdk": { - "version": "9.0.300", - "version-display": "9.0.300", - "runtime-version": "9.0.5", - "vs-version": "17.14.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-arm.tar.gz", - "hash": "ca20957d3f4a09bffb86bb21b1379ff19bc62907b50d37090bb705f28064b064131aa01ca4328a29ac66365ee5539fd3152efe79c61294ad7958b19e6114d4de" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-arm64.tar.gz", - "hash": "c3c48b256eaf0a662412dc8cfbfa387bb97f3af84ae9cb1aba53f2d34afa5ee735c87b979549ce97eb3aa451c12bd3b10e6453eea6d4ac096d9eeecaedaad540" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-arm.tar.gz", - "hash": "e19f4f7bfce95e73112afde42e7c16c897c016195ebb36f4e411a3bf1aa939f4c1456f9d4abb968dc8eba75531c8edaeb673df0e9e570d8dc5cb725ca57700d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-arm64.tar.gz", - "hash": "0d9c5bf285f13ac3206ce327effe384fbca11af739c82c222b274654866c58d88338d66b91d4517906d7abeba33e97dd869c75b52b7cecef10af3e6e206eadb2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-x64.tar.gz", - "hash": "a03fd3f772f288c501ae0cb950ac9a3491785d0f39660fb12814a9fc40d58f7dafb835a3ffb8e5e4016a9d199d0dfb960e053bbb695b54a5803967f1f2f2fe33" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-x64.tar.gz", - "hash": "dcab6daef3164390d09edc169d4bf8ec3480af1288e9766c07d20d3c7b70517d263083c3900381fda59c3a7f0aef3fd75ee4f604173c889e8222d6449091d843" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-arm64.pkg", - "hash": "13629de49c305bac8aad22045545584af24fa0324b822a3271bbb08446f0adec0f97a55c3ed8aec2eb0524a302e9419af4e56b52d937adc42098dae3fbfffba3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-arm64.tar.gz", - "hash": "fec528cc70edf43e6d91f16f933c54b943776899e7c2d4de7efdfa581173d46793b233abf5bc9ed566e9d9e8d37a0f96b543783fdd581f63aaf18678b82ca426" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-x64.pkg", - "hash": "56917c946a902ee991e4fbe93cf74613498807f807fd793f863e484e216dede522fd7418efdfca74e2acd1288547da03fd98d7a51cd2129100e9c8a2d1f43d46" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-x64.tar.gz", - "hash": "36ff37eec764c9b509fecea7ea47e4ad3d723b40eb463158de85a4f70dab6583989c4cb7324a8e00fde727dfa77b7ff63f489c255dbce87c1ee725ae445eef62" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-arm64.exe", - "hash": "b1a6230cc18be4828e222d5ac8f38e9045d627988fd94f4e477fb4e032733e6bb257e52ee38df9cd347741f3fe535744e170c13edf20f992e0559cafd7eddcc3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-arm64.zip", - "hash": "8929b044ac5e073bfdee8f31eedae9e91f54a65e748b5fe3a9cc24fac969622429541bab9605191d583fc0f3c2ab3641387c961cce30b31bb4716e7bc8507090" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x64.exe", - "hash": "5d58e5b1b40ffbd87d99eabaa30ff55baafb0318e35f38e0e220ac3630974a652428284e3ceb8841bf1a2c90aff0f6e7dfd631ca36f1b65ee1efd638fc68b0c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x64.zip", - "hash": "52581e558d9aa8c74a3907095640f23c7827e10a1b6ccbb7073dfc17ac7b4f4daef4f008c8f967d8db46283ac1c97cf096fecb688ec721ca67cfbbe54f190407" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x86.exe", - "hash": "0502f7f8ae2f7b063eaefb6f7533e938f3f365078d2a9771d3d85c492c8b4fdd8c522454865522693dbd79a022968be0d84133fd085ab7e57f44cef6bdbd06cd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x86.zip", - "hash": "0608d4200d1b913bc74156872d367213d8b2e0cf1cf7ca411d8d77e82a1f17299fb862f920498a6aaa0dac14c20329695b71d729c75c22f0b06b4f2c591be89b" - } - ] - }, - "sdks": [ - { - "version": "9.0.300", - "version-display": "9.0.300", - "runtime-version": "9.0.5", - "vs-version": "17.14.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.14)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-arm.tar.gz", - "hash": "ca20957d3f4a09bffb86bb21b1379ff19bc62907b50d37090bb705f28064b064131aa01ca4328a29ac66365ee5539fd3152efe79c61294ad7958b19e6114d4de" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-arm64.tar.gz", - "hash": "c3c48b256eaf0a662412dc8cfbfa387bb97f3af84ae9cb1aba53f2d34afa5ee735c87b979549ce97eb3aa451c12bd3b10e6453eea6d4ac096d9eeecaedaad540" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-arm.tar.gz", - "hash": "e19f4f7bfce95e73112afde42e7c16c897c016195ebb36f4e411a3bf1aa939f4c1456f9d4abb968dc8eba75531c8edaeb673df0e9e570d8dc5cb725ca57700d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-arm64.tar.gz", - "hash": "0d9c5bf285f13ac3206ce327effe384fbca11af739c82c222b274654866c58d88338d66b91d4517906d7abeba33e97dd869c75b52b7cecef10af3e6e206eadb2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-musl-x64.tar.gz", - "hash": "a03fd3f772f288c501ae0cb950ac9a3491785d0f39660fb12814a9fc40d58f7dafb835a3ffb8e5e4016a9d199d0dfb960e053bbb695b54a5803967f1f2f2fe33" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-linux-x64.tar.gz", - "hash": "dcab6daef3164390d09edc169d4bf8ec3480af1288e9766c07d20d3c7b70517d263083c3900381fda59c3a7f0aef3fd75ee4f604173c889e8222d6449091d843" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-arm64.pkg", - "hash": "13629de49c305bac8aad22045545584af24fa0324b822a3271bbb08446f0adec0f97a55c3ed8aec2eb0524a302e9419af4e56b52d937adc42098dae3fbfffba3" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-arm64.tar.gz", - "hash": "fec528cc70edf43e6d91f16f933c54b943776899e7c2d4de7efdfa581173d46793b233abf5bc9ed566e9d9e8d37a0f96b543783fdd581f63aaf18678b82ca426" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-x64.pkg", - "hash": "56917c946a902ee991e4fbe93cf74613498807f807fd793f863e484e216dede522fd7418efdfca74e2acd1288547da03fd98d7a51cd2129100e9c8a2d1f43d46" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-osx-x64.tar.gz", - "hash": "36ff37eec764c9b509fecea7ea47e4ad3d723b40eb463158de85a4f70dab6583989c4cb7324a8e00fde727dfa77b7ff63f489c255dbce87c1ee725ae445eef62" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-arm64.exe", - "hash": "b1a6230cc18be4828e222d5ac8f38e9045d627988fd94f4e477fb4e032733e6bb257e52ee38df9cd347741f3fe535744e170c13edf20f992e0559cafd7eddcc3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-arm64.zip", - "hash": "8929b044ac5e073bfdee8f31eedae9e91f54a65e748b5fe3a9cc24fac969622429541bab9605191d583fc0f3c2ab3641387c961cce30b31bb4716e7bc8507090" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x64.exe", - "hash": "5d58e5b1b40ffbd87d99eabaa30ff55baafb0318e35f38e0e220ac3630974a652428284e3ceb8841bf1a2c90aff0f6e7dfd631ca36f1b65ee1efd638fc68b0c8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x64.zip", - "hash": "52581e558d9aa8c74a3907095640f23c7827e10a1b6ccbb7073dfc17ac7b4f4daef4f008c8f967d8db46283ac1c97cf096fecb688ec721ca67cfbbe54f190407" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x86.exe", - "hash": "0502f7f8ae2f7b063eaefb6f7533e938f3f365078d2a9771d3d85c492c8b4fdd8c522454865522693dbd79a022968be0d84133fd085ab7e57f44cef6bdbd06cd" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.300/dotnet-sdk-9.0.300-win-x86.zip", - "hash": "0608d4200d1b913bc74156872d367213d8b2e0cf1cf7ca411d8d77e82a1f17299fb862f920498a6aaa0dac14c20329695b71d729c75c22f0b06b4f2c591be89b" - } - ] - }, - { - "version": "9.0.204", - "version-display": "9.0.204", - "runtime-version": "9.0.5", - "vs-version": "17.13.7", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-arm.tar.gz", - "hash": "3f9e9cd85c05d2acaba325ea24de758ca303bef8d12fe352d6d85f48d3eba913826e7754f5aff40a6e68e6bffa491ace8ce52d41acffec2b84db218c23bb4dbf" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-arm64.tar.gz", - "hash": "b2fb883a60e68f41e788a93b502a7ceebba78f0144812c365f6fc4d29aa562a16dc4d0ab2b496e8c816791fd6a864b6a563757d62234ae97ebb92dd48499a22c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-musl-arm.tar.gz", - "hash": "03efedb9851fc0fa5a9d671247fbec346ed1d7f55ecd21b329cccbedc6d1ccae235c94e93a6fb4215adb6a185639fb0ab1a79b8648d3758cb90dbd374aab81cf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-musl-arm64.tar.gz", - "hash": "3dc8ea0919c1105c62ea5452bedfa41938286020e2d531ef9bb6999b5df3fb19098a3dff59802fb9d39b6c8a6a6e5653cb357fa2c4eeceaee039be22be0d1b51" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-musl-x64.tar.gz", - "hash": "029fad79649e1f3b3074dcee5baee83a011317c2173b3f27b0fa23090e24d7611c91f795636cfb3bfcc5f492b5d1edd76d7253e1202349b7e28c76a59aa13f2b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-linux-x64.tar.gz", - "hash": "f32de3dcaff13cefce4e124c2eae4864178a74cc9cb3ce293241c9a7ac4a3b460af1655030ef0bb5c393deb9f075dbbfc3772e09c06c427f5f8cfbf411749dc8" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-osx-arm64.pkg", - "hash": "c5d7942e5a865e758cddd85e7c953a5c84f988553cdbbb8e843a4546df716aa304a3dd3a7c270509193beb137d44724e571168a4d1abdd3700e00a8cbad5d991" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-osx-arm64.tar.gz", - "hash": "c352d8cfc4bc50c5bd6e3bac204c2648ace7ff2db9f7e3bd9fb1944dc8452ea457a0acb5429098eb1d33224ee897af0e2c89a07e0e7c8c5a0bce8ca9a36f1da9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-osx-x64.pkg", - "hash": "03287fe9682d91e8eb78cc6f0c2373d1f6ece223e26aa0de9baffc9c7bfcbb8c43c7870c303247010025b6110bb2baa7b98457144c43254c1f93cdb8a4369db2" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-osx-x64.tar.gz", - "hash": "1d04e16d3edc2d661cd00261a87b5584b4e91a539f0aee7c622882b7b27065023d4430270b2527843ed977b9eceb429ea985ffda0c2aa48f1e9d57c1784e9165" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-arm64.exe", - "hash": "beb647e60dda44283db01d0749c651a1fffaf429c471bfcbb1dd4bc843a6a81f242691d6260a51f5871bd6cbeb06513eae2693e2ee8c8170e5ccb02f86ecc665" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-arm64.zip", - "hash": "71ddc32bc2ddc9a7188f8ebc5000efe84aeb85640ccf0123ecbdee31802e84fcfe250466f5d87c159da25e1c597a2dc34fdbe721b0e405b74fb429f5f1fde306" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-x64.exe", - "hash": "5f3051433a18ec2a3a5383dbaec73604dd4476199dc20cdd14efad04fcd75638d772b3f75fddb5d35433227d906a9279c09d6ce38ca3ac90b4119e1ba67f792f" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-x64.zip", - "hash": "f739b580af73fd69509c0ac8369b868f5558e2a457b4a0a3e0ae6c3f376fd78706dd96160b934e2df29566f208addb7e856c52b258ab51f430a64600cadc0b5f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-x86.exe", - "hash": "7fc096065ab3dd6c75ca8ccbbb980e9d195560abc5b4b30afcdf3e8f652127489a5605a1197cd58418c84d286cc457a7e8cb4a47b0d1ad3de112dcb7655dd89e" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.204/dotnet-sdk-9.0.204-win-x86.zip", - "hash": "b471bb61dfcd22faba58e11a139658a46b55131aa3628fcc8c2dd02ca7ec5a2f1d64d7cff66ee6b38f6b561eaa26e119b1b938326f226fb880ce114d7e23a595" - } - ] - }, - { - "version": "9.0.106", - "version-display": "9.0.106", - "runtime-version": "9.0.5", - "vs-version": "17.12.8", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-arm.tar.gz", - "hash": "2318c85784c7ba43a243e0f5262c78cc2984a95fceef8b7855035853d9c7b420b7eb681c8df8a23969926d6652c6937cfb1b1c2961e0a155c6f145302240b4d3" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-arm64.tar.gz", - "hash": "18063ed539efcf97a6826b3a367b92574338663e815e4c7ad273a17524a7ab5e35d407596f5cd6b1c0a37e695b17a915620c1445ca89bb851ab0ff34acca34f5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-musl-arm.tar.gz", - "hash": "2c9aaacdc43e2da8bc64db517b4ab40f387f912932dc26e99f43338bffd2ced8674725ed185e60ab3178f0e4e723ec5fc29774f62b337acd47521bf389ae16cf" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-musl-arm64.tar.gz", - "hash": "834d136255e2c220e7c0327bc47e89326b57e0352b6ab01abba073cbda4d4d2933cbc6ae4440f2b9911a52ad5d05bc0f7ffb36e790f9ea4561567dd3e22bd514" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-musl-x64.tar.gz", - "hash": "28f5adaedca5dfb1c0125c323789485c972591a65cbd518fb5d951d73131de1e7a92ff09713622788d02acf78906fa7412538c6c7e9b3c4bf6715f6495ff826c" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-linux-x64.tar.gz", - "hash": "f977c90a5e56c3db7b7d4e23844cdb496ee966bd31ad63f8b84363a7eff28a3fb14109350381bd836ddbc67d6750f3f7dd55471e4c5d00b0214341741856fb2d" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-osx-arm64.pkg", - "hash": "49d6c34951caa21f672cfcb38d7036f159ca8830c8f358f2dfe4f36f8c08dbbc6c556d4372ada86a69f5c7fbbee6c167dc4626cb8aff15c8fecc1abc2aa40c6f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-osx-arm64.tar.gz", - "hash": "db5e39cffd32be99b9a0ee28c6ede90637180338693701d11a702d056daff505bd82d4e7c8f0cb341e20fa02b9765612ea8808af40da3ebc6a16cd6d3fc1ea3e" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-osx-x64.pkg", - "hash": "7dc83502664141ff598cfe930ab69a9cd5001356668bbb690c5bdf4c0bbc7aee56ee2f0787001c3f26993a4f618a0453c8f84acd573d8bed7e0cd7fb8f886d83" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-osx-x64.tar.gz", - "hash": "c1328302f90b2d8d123aa0b27e208571dd7b2cc2304e07b1a997bc06644c5ea30bb1d089fc0d3f14efa41ff4d09b9140d58aa8fd3b6a1987975d56e750bda80d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-arm64.exe", - "hash": "3cfc10ff0fd10120e3a84107a4f5d8d2ac7f94d4ef130ec0a09dba5cf34020622615c61adc3772206ad869ad14cbe9d8c312e739ffa52ea1e4732973d182dde6" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-arm64.zip", - "hash": "bcbf53a5226a4d90837548db3af6209da3f37ce93867f2c161edbcc725270e9dd93a4295052c429bcc8972861b9a486e3b5f25f18e210eee7c1e0f531c6e36d6" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-x64.exe", - "hash": "91c9c01a29aee09666151243cfafb6d6ac38efbe5cd0204d30186520321173c9f98c2e3abf94d823fc9386aaf03c80afb81d8c56056ec8e51e4a6db14f082477" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-x64.zip", - "hash": "58e65693a889002dcd67e7e9c317f2e8ebad5ccb2c12791e27772be9815f42b67ebdab6bc7cb21e9d39b9d47fe3ee1df435444d55f1b7b81cdb144701da35eeb" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-x86.exe", - "hash": "2cc585c047de55a8f1f43e16f738332a2abaefff33a420d9bd9e6256dc8f51d316133bedecd1e2ac9e697b33b90cd02eee2f630863955387c28ed977ec96791a" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.106/dotnet-sdk-9.0.106-win-x86.zip", - "hash": "aa5631d9580ba00d7a0b60f79754beaa0789e9e8031da49627b35471590fd9901cdf606ade683d73f0b73ac0c141270bd0e502e44d0c081d0bee59ffec070d45" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.5", - "version-display": "9.0.5", - "version-aspnetcoremodule": ["19.0.25119.5"], - "vs-version": "17.12.8", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-arm.tar.gz", - "hash": "7885f86dc8cfd555701739f47e1c4740accfbb2aaeeef629c29fd75c211ca556edf8737c942718cf8b7cfa888600dd7ba8193a2be1bbbf0754ced952d76217c8" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-arm64.tar.gz", - "hash": "bd1db145a29b2eef440eba0491c5b70bf29e6793ebaab453d2939bd3ac161f7c33e3e4b1e65a734dd4fd44151357b4c150a4cfcb5ade7249cbf2d03266d6b32b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-musl-arm.tar.gz", - "hash": "62bca149538035454e52122e506572dd26ed13b3707ec77dcc0ad7ab39ed38d7693170676e38eebceb2529e8b56afa5878f1c0874f3b0d8391ec017d263867af" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-musl-arm64.tar.gz", - "hash": "12e0502c11879a93e5a568d19b4a3b50a096425b924720cfdc4d2ce532345118542ea2ddc9cc409f9d3b706f6cac2952affa3d25317cbf240bd69d43159e1ceb" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-musl-x64.tar.gz", - "hash": "880d6c516af46dda0686c0e56a55cad5d8c34bfe3cacdbee68a9d21a5ff9e9ee93a6c427ef0aabd4c45ab95aa772edc9b89927f38d07619db6219c93e6f6e43b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-linux-x64.tar.gz", - "hash": "b60b8b5fa6b4538065166cd1266d075c64c464b281159d98bf03132bf363478ccc1185a9a51738cbe37d86752820f6be4add5208120a80dfb2bf4a8b58d22cc4" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-osx-arm64.tar.gz", - "hash": "b7c53870182ad2d24e0527c3bed6d462676b3ae15fa84e397ee68c84ba7a22baa7255adf68166f41c9721378169c63864dc2fdd07a33aaf016c23a87a168cec5" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-osx-x64.tar.gz", - "hash": "6629add0171b8f054155b70bc3b8dc6ce99f1d95c6b6556825641c0e8a61cda81f21d07bc7aa7d993ff51f9544ef699a27eca12fd2d5eeb46723ade2fd26f99a" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-arm64.exe", - "hash": "135c3446c61f037016ea827eadd87a32caa971b6f321ba62cebcd0e3b689f30bfb33aabec8c5e4df8886028368d520ebc32bf77eb3afc32a11d485c6bf51efc7" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-arm64.zip", - "hash": "2077625869c4751b68efb6e19d5e810b9c2ae9c7da9a4c23dc10c24b921d5d302ddc5f60b7a36dd4b52fb2b88abe643f5650f10fff7452a8138229bf32c4649b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-x64.exe", - "hash": "d276ac751d778ab67691e4ddaa95a3c5dc9037d010575859dbd2c8fb2b037f28a8e1095d8aee1b34c5662d6fb8cea13a5c6205a454ba1b087a1f69d2af0c221a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-x64.zip", - "hash": "4304a5a28816bb620ff54d49499c687e3dfb2484cf1ae4d0b07f441bdaac490708be5f71efd491dfda096a487dc145a2ddf9873229b863e61ce787776da4c4a3" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-x86.exe", - "hash": "d4e3b982d7de38f1ac82831815a9aadb23dfb12b7e461d3ab47691b1d2e6e3ebaa87a5d70b4e53601aa7912a10e12242edf363a3f9be84d919c5c5ec7c49621d" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-9.0.5-win-x86.zip", - "hash": "8d2f4fe27f346a91ef788c625c9d5de5613ab3172eb51174ad96579006abda57bee2b8e75c8f2e36b3c4abcb70061b8e5849bf5d85f66fbb6d84091350fe9907" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-arm.tar.gz", - "hash": "63d84bb21a402d43b9d6536806898049d3d74449618332d067aec79816547cc900f28dc21bc50f8d604ba1a08d7269910802275b7937d576c07bede35ac6377b" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-arm64.tar.gz", - "hash": "62643dd45a9dfd2dc1c1e2209937db8601da488b792813e93901408a2aa9808d4a78060a3ca7e0b247a255c9b0f84fc71a57b17d6806c8727bf7000f347d7434" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-musl-arm.tar.gz", - "hash": "5b26f728509405ac023bdce1d6631dc02aeccc8eb2c9933097e46d8deccc603087b8e8192ce23fb2ce5b076a65ac6b40f8addf1bd8e1cc40864a20e0292c14da" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-musl-arm64.tar.gz", - "hash": "e5e48492742c58c984fb8dfddb496032cb74cb28ef0ca227b12c8b09bf6b149e84a514c97cfddb79b8e1427f4bfbf35ba3be9e7f44dd23562951e62033ad2e51" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-musl-x64.tar.gz", - "hash": "a5f7073d46a07d7b25297753aad34152ed07d65129b16a49d0974cd49474af4ea0ca3e9d51b3e939df719ba5fd08d6aba65a33e143b458420e2594c9f1622b4b" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/aspnetcore-runtime-composite-9.0.5-linux-x64.tar.gz", - "hash": "ea05c3afd230d55e05845b6386abbdb2826600e5dc611c950b25af9d86ce42ced8cd7a1ad0f36ebb5177235cc6557602f4d352afcd5128387b2a21583bde340b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.5/dotnet-hosting-9.0.5-win.exe", - "hash": "1e1c5d4ce7c15d52a11d8b9f384b778b44c36435c113c5d4e0035f32ea961d3d530fa570b9e3ee7d0e065ee71198b630ab10dc50adb3ee12aa3c0c5af278ad7f", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.5", - "version-display": "9.0.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-arm64.exe", - "hash": "12ddb80b4d5eca3d7b483563bdf5946d1205faf54d635d3898c1c027db4933942cc77cd7c1f7414fb604e0a1b36925208ac943b75ebe3678c6823d110f8c67ee" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-arm64.zip", - "hash": "3ff3b192b75253478aeb75548c73070ca8fcef72e24d381c1d97256a295b9346788e30b561cb645f48a9471b585525f2faaaa8141554aa76ba70e8dd50450148" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-x64.exe", - "hash": "89b536b45d2497489f3e96b1d956cb03df97fca14758fcc5b96eb260338036e3d3c8a242d98627e47219abaed65a4b2765226dc71e3753869260701a5a76171c" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-x64.zip", - "hash": "1a761ebcdd5726a2d6dd0f1d0d8aa98e6cdeb033f9474d96cd95f3de3602f8dbeae85174ec8dd6efb9a8c426c9e347ea6b1ec8af741ca74ede1444931fa758d2" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-x86.exe", - "hash": "a19d271cbf77504077d31af88c2532d18076ccbce1685fbc88d72efa38fafb0b0e8c93ea3c6c49a29b31214bf8c9e8ef0230f6fc819b484438d803cf684b6752" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.5/windowsdesktop-runtime-9.0.5-win-x86.zip", - "hash": "5e1cba873ebd9d0aae1993eb7e63b3e277aa50c2740fc7bbbf63b71057a1e5eb171f4b5d7a3a6db7d0e3436ca1e5907789bb75893c1a701deddfe709d1a63639" - } - ] - } - }, - { - "release-date": "2025-04-08", - "release-version": "9.0.4", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-26682", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-26682" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.4/9.0.4.md", - "runtime": { - "version": "9.0.4", - "version-display": "9.0.4", - "vs-version": "17.12.7, 17.13.6", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-arm.tar.gz", - "hash": "aacde9722446e37c8bede60cc3d6dc14d8104ca9772cb2d7b05f3f78f2216af2ed642f97dcd4f2f11c0b7567f3402d6ae08c3260c0fb105f664b4a92a024ef18" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-arm64.tar.gz", - "hash": "90865902fd1babc49d288efb61cd78ca63f43cfb9bbd9343f2871ff0da023f80129b3a9c26edc9583fbbf8a91932efbad3c823ad8622fe389b20b53f87254f1b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-musl-arm.tar.gz", - "hash": "152315bad4db61f6de20e47103e0804f64e9dbc3adbb8cf874c3e979a0d19b4b26f5fac07f1cd224a8881f4afdedb3c244f970a7d647eae1aa44ac2604c43526" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-musl-arm64.tar.gz", - "hash": "f91cb422005c64c92c804b02670526492446cbe368633579dbf670a4a6d679c74ef012b8ee73fea672ccd85f0aa44c7164ed20876772af15052fa7447c10e255" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-musl-x64.tar.gz", - "hash": "a5e597643deae25a998759bd9b0eb19b933f13a36b1d7f2e4696068a9a9e0324bfd43490e8dec222168b8c063b6827fbee80181e4700bb4712550acc1801048c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-linux-x64.tar.gz", - "hash": "fb421fdd87ac2b4143b5746a049f802d11430b770422bf60310ee4e8e2e6a2c943ff8870d4ddf689c6e0f05bf5947fd4b9dfeb56783e796bb4f4f0191a5abb2c" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-osx-arm64.pkg", - "hash": "0645e17b8dcaa3cf99d0c9b5b819adad7e6948ae57bee33256c09f7f9d668cf09a2639179dc09d40927f436d1c0bb46f82b88e39c7155e8c197f9467a014a9bd" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-osx-arm64.tar.gz", - "hash": "ce4a7c9491a631ebc19bac75923e8d94ba5d699f07318580408bb1bdbd67cb8a42bf6e87397f26803580326c47c3d04839bc762ec9d843320199a1587ea078bd" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-osx-x64.pkg", - "hash": "12bd18f22c326dc71ad3e52655e42d0804069b162407cc9c2a707d6d70cf208a30da3498ec536fde0475e52bb3d7a08acc0aab754dffa1b2d90adb023894072c" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-osx-x64.tar.gz", - "hash": "a227905ea8693d4e6af30cd44424c2849804965ce2d8e5807cde900d4e84b23ff263795ca2cf68376382863b0bb5e6aa27ecfd55030d2ac5012b5fc118ce0fcc" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-arm64.exe", - "hash": "6a701b6bdc42318c342990ae2f6f968e1063334f26eeebf8f2bdc6b5cbe3f360e97411eb43e6be250438125808a26f1bfa9d2a5295b48b71440e1d6c1c17c5b5" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-arm64.zip", - "hash": "4ecf516da62b4f1e523d062170389087a5c33adb5806ae2119fcc4d1b53a2446753c8b30030e77fdb616b6e728ab8b7efec53c95b6cd8650c5731e1f5991da3b" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-x64.exe", - "hash": "cc385d981405bf8c62dac62550c4dbf1e4420d7375848326055dae18e89f252e0e866087763ad5c8c42ebebf8e51a64ad5a66834b24465eab9769753203c383d" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-x64.zip", - "hash": "741dfaac5ff4df3bad55eb1b891c96d051d7225928e83a8891528023a0aa1252ad33015d5888ca142fcf3b1ce9cc1a915db92408c107766c6143171e3fc86e3f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-x86.exe", - "hash": "432a88e38c3e033ee6b1b3ea6394b4d661030cf1c25b07ef8e6f68ef4e43446e3f805b4054b5ca0a340bbda4d3d3bf8a9e85cbd69aae896d723d1ee046356e77" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.4/dotnet-runtime-9.0.4-win-x86.zip", - "hash": "a01453aa8435bf06811983861d95a60ca206c8dcff5dca9eaef4e5e911a5ddd7eb94fb82d3e529406dbc2f1c73a9fb7bc34b7a2d30af37c9fc8f943b105eee2a" - } - ] - }, - "sdk": { - "version": "9.0.203", - "version-display": "9.0.203", - "runtime-version": "9.0.4", - "vs-version": "17.13.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-arm.tar.gz", - "hash": "7b0969a09148ac8dddf1fdcd41948f163f17acccaa68787195d2935e0e69554fef423291d60579bfb94d676aca8fd498eec49f8555fe750f0e88eadf6317eb37" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-arm64.tar.gz", - "hash": "3070ecef0d6c550a80c3ca497598d09e9a97a264bfd72e86f7c568d2f39368bd7db837681d64d9ed187a8923915d964d02b02f5bc6a493910a18184f5321d233" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-arm.tar.gz", - "hash": "4d43cb65e398dbeed77613eea92ae0c2ccb4720b7b3db47afc144e310b3e76cc6da42e2a5415d9f1b98617240bc7331961b5a83fe8550dc7df5e06010a21267e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-arm64.tar.gz", - "hash": "e21b7c01fadc6d26337d64c89adb96d2914080f02fe57130b927b0f67945c6b5adea63e4c38e681247961d85ec36e6bb89cc7475c791219fced6f18b5bcb7c9d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-x64.tar.gz", - "hash": "83b0c47dca699b57c5c7b51d33fad61eb74bdf4285a992befe8d5ff8ea35c0f241225ff2fda709816b66462945ebaead6ea4ef2fbfb28f6194468916ce608d1e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-x64.tar.gz", - "hash": "67d62c3274aae593b61780db57f07ac85a50da82d04707fdaca66f25889a1cc01eaa95bce173247d1a9f566a92eb7ede71a7306b5af6a17ed84ee9525823ddd3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-arm64.pkg", - "hash": "77cbf7a4b6e8d80426b07395dff67b33a3c1ffd80fd87b10348a06628f142b47acd9605f61852e7cbcb4e36d473bd9ad91a411dc7bff5ac25486a60bcbf84b4a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-arm64.tar.gz", - "hash": "50a7e19b0d55de868a9cc52f6ebc1ba39b9b787b3343df5581ec50cce27b86793bb1c63168b5e8843479605e35515b49d1aaeee3a469611c2e2fc966be8c3ae5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-x64.pkg", - "hash": "ef5f0a16eccb7b7231c8d3cc788bd0f84df8a59bda669fcb70d9dab1fa903bc10140b5ae61c9e80981feaf789fea0cea144bb827693f70ac2e90b0887bfc1888" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-x64.tar.gz", - "hash": "837f6fb8ca30f443d7678c73619f7a004440f809e7c339932616f377954c6e1b4a6c9fef1434d75df991641641d62f9cf1a16d5aee6640170cbb27a1b961632b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-arm64.exe", - "hash": "d1420d062e4f3d130a2ebfd0bee7ed870552a1c5ef901fe18f6eaf4c2534ee85121e3b7a40eadc2f6af164a41d322dc65a9ef896c2e909f4d89f179e6607dd65" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-arm64.zip", - "hash": "379cdd811623966b25418af2b87611fd8c359f3db2a9618428554d77d05f73e6410f67c425c45240613e556de9ecbbc89695d036ac2f73c7d71ba9de704f3fb0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x64.exe", - "hash": "77b87bd1785d5272912d6d8b732871ce3dd2f52a481aca24504c19e247772244310f89d686c9cdf50d518c1839238aa4775417e3a37ca33e6310b4ea01f05f1e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x64.zip", - "hash": "5fc935b55c8a72ad274b1f5747efddf64712d80992424347fc2ad8b303f73a5b9616d41273be48505acde2691aacc97c9bfa07ca3a9b1036835cf5927dfd7526" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x86.exe", - "hash": "dd47554df1f1d217429924bad81ccf22a7533b511473fdb1e019c5fecc63c6ea67ea2abd870130864d6a6c63be0bb4f005f91f67e61bfeb314fa8fa639d81821" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x86.zip", - "hash": "7f72a6d9923bd4b7e0a8bfc5f395ebebed452a92b3ec1097bbccb3adb7ab00356bdf9869c770248a44033f4672b3d4157eb430261fed7e219893e10d91d454bf" - } - ] - }, - "sdks": [ - { - "version": "9.0.203", - "version-display": "9.0.203", - "runtime-version": "9.0.4", - "vs-version": "17.13.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-arm.tar.gz", - "hash": "7b0969a09148ac8dddf1fdcd41948f163f17acccaa68787195d2935e0e69554fef423291d60579bfb94d676aca8fd498eec49f8555fe750f0e88eadf6317eb37" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-arm64.tar.gz", - "hash": "3070ecef0d6c550a80c3ca497598d09e9a97a264bfd72e86f7c568d2f39368bd7db837681d64d9ed187a8923915d964d02b02f5bc6a493910a18184f5321d233" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-arm.tar.gz", - "hash": "4d43cb65e398dbeed77613eea92ae0c2ccb4720b7b3db47afc144e310b3e76cc6da42e2a5415d9f1b98617240bc7331961b5a83fe8550dc7df5e06010a21267e" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-arm64.tar.gz", - "hash": "e21b7c01fadc6d26337d64c89adb96d2914080f02fe57130b927b0f67945c6b5adea63e4c38e681247961d85ec36e6bb89cc7475c791219fced6f18b5bcb7c9d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-musl-x64.tar.gz", - "hash": "83b0c47dca699b57c5c7b51d33fad61eb74bdf4285a992befe8d5ff8ea35c0f241225ff2fda709816b66462945ebaead6ea4ef2fbfb28f6194468916ce608d1e" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-linux-x64.tar.gz", - "hash": "67d62c3274aae593b61780db57f07ac85a50da82d04707fdaca66f25889a1cc01eaa95bce173247d1a9f566a92eb7ede71a7306b5af6a17ed84ee9525823ddd3" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-arm64.pkg", - "hash": "77cbf7a4b6e8d80426b07395dff67b33a3c1ffd80fd87b10348a06628f142b47acd9605f61852e7cbcb4e36d473bd9ad91a411dc7bff5ac25486a60bcbf84b4a" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-arm64.tar.gz", - "hash": "50a7e19b0d55de868a9cc52f6ebc1ba39b9b787b3343df5581ec50cce27b86793bb1c63168b5e8843479605e35515b49d1aaeee3a469611c2e2fc966be8c3ae5" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-x64.pkg", - "hash": "ef5f0a16eccb7b7231c8d3cc788bd0f84df8a59bda669fcb70d9dab1fa903bc10140b5ae61c9e80981feaf789fea0cea144bb827693f70ac2e90b0887bfc1888" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-osx-x64.tar.gz", - "hash": "837f6fb8ca30f443d7678c73619f7a004440f809e7c339932616f377954c6e1b4a6c9fef1434d75df991641641d62f9cf1a16d5aee6640170cbb27a1b961632b" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-arm64.exe", - "hash": "d1420d062e4f3d130a2ebfd0bee7ed870552a1c5ef901fe18f6eaf4c2534ee85121e3b7a40eadc2f6af164a41d322dc65a9ef896c2e909f4d89f179e6607dd65" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-arm64.zip", - "hash": "379cdd811623966b25418af2b87611fd8c359f3db2a9618428554d77d05f73e6410f67c425c45240613e556de9ecbbc89695d036ac2f73c7d71ba9de704f3fb0" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x64.exe", - "hash": "77b87bd1785d5272912d6d8b732871ce3dd2f52a481aca24504c19e247772244310f89d686c9cdf50d518c1839238aa4775417e3a37ca33e6310b4ea01f05f1e" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x64.zip", - "hash": "5fc935b55c8a72ad274b1f5747efddf64712d80992424347fc2ad8b303f73a5b9616d41273be48505acde2691aacc97c9bfa07ca3a9b1036835cf5927dfd7526" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x86.exe", - "hash": "dd47554df1f1d217429924bad81ccf22a7533b511473fdb1e019c5fecc63c6ea67ea2abd870130864d6a6c63be0bb4f005f91f67e61bfeb314fa8fa639d81821" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.203/dotnet-sdk-9.0.203-win-x86.zip", - "hash": "7f72a6d9923bd4b7e0a8bfc5f395ebebed452a92b3ec1097bbccb3adb7ab00356bdf9869c770248a44033f4672b3d4157eb430261fed7e219893e10d91d454bf" - } - ] - }, - { - "version": "9.0.105", - "version-display": "9.0.105", - "runtime-version": "9.0.4", - "vs-version": "17.12.7", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-arm.tar.gz", - "hash": "904aedeeb9a4ec89d5a6a9e5c5c060f20b9ad9a2e67b01c6f10bafcf75b333e797827ae55c3e0f2f3df3f1a7265eb31bd678a8674bb467d71e87cfb1e060c331" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-arm64.tar.gz", - "hash": "6e184a6bf7f6b6800996f34976fe83ce0891710a95407221cdf53df7185f21dce9893efafc8cf1e7104f05a02ac55fe21aec3b1b6d161d7b7e086d729458056f" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-musl-arm.tar.gz", - "hash": "6e6cb0b8fdc71ef3945c1734bc85d31a961c0492856a762802f1a5af43590a898f92f717e8df29f0b585debe7e13afa11ed482b611821116c0513a246f239bd4" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-musl-arm64.tar.gz", - "hash": "e22b57ffca4b5b17a97902e8cfa81be3bc9575e9762765b2f93c9e7f156f9a888c76f7961e0f8942080076ccac25cfecf17138e016a45758a4ffd8c5d7f21651" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-musl-x64.tar.gz", - "hash": "71291709bc0defc461f291d96f57f0626540c7723d82d300d1401d7a3fcd150b6ce78ed4b4b2996b1c4688deb2f75ddb0fd2b0ef221ab3d56bc2cf8e852c7de7" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-linux-x64.tar.gz", - "hash": "f795bb35f432b71f940eb62bfa4ca3df5d708f497467ae16a67d2d19817a8f7e8cf5e6faa791412eb0da017be59ff93a2ad723675b3f3152f39bff64d545f4c0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-osx-arm64.pkg", - "hash": "1ea09c2c1b84e6c76ec4f51f848c35321fdea8a92dabde20e4ab5fa031854dfd500e958f39c31fec4e16bd8e180ebe50d924b4e332b7b33b66db18e378589335" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-osx-arm64.tar.gz", - "hash": "75fbdcc62d13596d1781e90a44aa83147f70d15f70b173e588a012393ee4db299d5342f13176d95314cf24c41bdadb32d17b27103283c3f412afb8778980f1aa" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-osx-x64.pkg", - "hash": "e44c0e09f3fb05a352b1946a39abfdc362c13495a4b0618841756fd15cb379438a8823283a60970fc0def3b98ca362f598c44e925076a0b623569217f6ff5ed4" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-osx-x64.tar.gz", - "hash": "0f0ccd8c359d37d026ce88c0e121cb69e9f8e9be61d7e28032d522bf046e5517ec0f31ea2830d0405636ee586db2dab54ae69b36d5311f99bcb2dc929dce48bb" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-arm64.exe", - "hash": "ce028ce05a84f96e6528a56013f07a333627d677d39605484f8c9a63d53d9b388978b2b8a92ad194ed149de2568f6acb8aeb3ee18fbb1fbf7061f73d68703505" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-arm64.zip", - "hash": "7e6e5a8dd7375c5adc0e2368a3bd8f10e1cebf788765c254f032b755104ae3525801b82d786a1f1f780bcbb2938ec7b6c1094cb6579661362fa96db2221ef620" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-x64.exe", - "hash": "9f72bfb85db1cc21344071703b6c20cd085534c2fb6d0e2be77863768e1525b8951241b10adcd6b88a4db253ec6772a1df965cea85f9ae2979e204cb527a67b1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-x64.zip", - "hash": "328ae0d73475f09ba46747cea055a2c40eb82a7ec2f7a730296b7fd506e1660177c9f3c365003c51d9dd23e9e0e5a9688b09b22d3a74c972251e95054846045f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-x86.exe", - "hash": "99dcff0ba8e252bac04df5bae9149a07107811ad5b3fc829e4d6e64a5ba807d59cd516a246a8ac46ef027f0fdf046b360308d464c05935451f323500504d92c0" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.105/dotnet-sdk-9.0.105-win-x86.zip", - "hash": "19d639426eab4011960a210f6d66b4c809e5a633f4560fff3c42df5f030d987823dcb1bb525606beac72b91021631a9d8eef93de88d8676fb92064565cf6381f" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.4", - "version-display": "9.0.4", - "version-aspnetcoremodule": ["19.0.25073.4"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-arm.tar.gz", - "hash": "6b3c1c5af12fb09910967d6485603d04c8a3c47a9e6bb11c7375a5ae1b76175b013afb4923cadd99a7a22b782ca4b8b824070bf5252c5481324ac023fe72cea4" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-arm64.tar.gz", - "hash": "7cca4084341c2e978e6d75e09cae308a35de7cd84c5b27d5246b9d1b3e6aaff200bae8de5a25b816e30c3ba354bef17b84bae0ce15144895518661e53af18331" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-musl-arm.tar.gz", - "hash": "11cea0b91ae542bc4d2fc451247595071eeb01f801d3305f9c9ccda7c04b4b1c327ee75a21452ac1b584a50a639e6d622272fc7ab9cbb744a8bb691b45baf2c2" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-musl-arm64.tar.gz", - "hash": "67fe12c34c4859dd8c50b57145e2fefbb929dbe2a729a5a8bfb1a53441689f68295cff4d93194ff3b9611212f13674c70e142b2cfe3bf6a57710fd4206722898" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-musl-x64.tar.gz", - "hash": "89d8a05c65f886e1708dbfa4ea97baaf64029eca2aee9b883c9e516129058c5636c313554f05bdeb52801339ab4e326ebeb708e14dcea75e3cd70ddbc5f81caf" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-linux-x64.tar.gz", - "hash": "f3eae8863634a050b90b672b14d466a44c623ca06c6501a3a70efea93e540995e2fa348ae5ef7a3f278110a9ba24043a651150a378e4e5a84c25690b73364132" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-osx-arm64.tar.gz", - "hash": "34461f12204c61c7f23ffd0f89bc769846de8ae902c15e348a672b9bf279183b26f2ca35d36f1c12a60529bc291f42253e127ec3464621d0cfedaa0e9a5d9adf" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-osx-x64.tar.gz", - "hash": "b07d2bef605bdb36f9c7ddfb5c183ba4965e6fcb3b4f00c148fbdcd62fede1f1eb405553d2ef84f57e057558c643b87102816ccefa28b2eb08500fd6b50b490c" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-arm64.exe", - "hash": "1d4d856c3f23b309856e3f9d2e08b3cb5c99b11dbab460ab7d3e9ffea7bb36ddb2a916ebf3bdc51ea936176074f0742b7573be52904b9efa6bbea059c3dad924" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-arm64.zip", - "hash": "080a49595409802e76e2d356a344f8293ebe1900c99cae17936c4697e05de4084b822b250713d5e1aeb54c3122bc6f9dce06dd49c92e21239e02f207963290d1" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-x64.exe", - "hash": "76b740deb1ce9332c094459f916245d9823e28d680ca9a1fc4f21826ad6155a58c5aec60fcd9dd0e5d698a4d746beea3c7b6d69906ef6ec3491c61e32b5a2b1b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-x64.zip", - "hash": "161a5b226b9035bb54f566f57a1f6503ceeef66e79fce463c55717a60129a0f4ed525e4179c7d8072e9cd921fb584d74bc600a85f9e976f80ce2f1d429f2c10d" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-x86.exe", - "hash": "82c7158cbf6488adc29b6568ebf9d05a2ddfe99319e019c077084a25d5d366a020bc98eb55882088f6c22a5a4b1ee2de7dfe289c1ea1ec95976633e5d42e5bbd" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-9.0.4-win-x86.zip", - "hash": "cf33e5d462e957e67b04dc5bc64b5c216a13a3a996bd2486b75a6fe760f6289fe8186e4b9d05ff9684473577973378350a64f46fb0697b060fcedcac867b5685" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-arm.tar.gz", - "hash": "5fd6b16fff9687ca350fbc81737ceb1861291a548ca75cd80c3a57bc896529da82e02cbe90d2ab8b9419cfecce2023f0af92d8180e90bbd591e8e2db01334a4f" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-arm64.tar.gz", - "hash": "f049a6674a6a38968c42920826f6f25fe0c6c0869ec6a9a010b67d0a25e2a6af4634a3f767f4de39785f7a4eb89037aa3de3e0ff3ab7f7ffcb062f59f2d26c72" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-musl-arm.tar.gz", - "hash": "a2e29106e1717595c447948424baa1b5e113105f328868cf458ab6403bb51879ed8a66fae706b51a18ca2d8130455d294f3e09be2619bb5c4a00345b51dafa37" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-musl-arm64.tar.gz", - "hash": "623b0c2bf6e1279694b7a0551d8b0527404ece523a99e196a00f9f236b01140e8776b788744dba53960287fb40ec614e7b5b1a0e1fbd617f11521bc8af5b10cb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-musl-x64.tar.gz", - "hash": "e061672712e4646108f8b36c1da61a9f993970db8ed598515a62d6e467305d4cffe53b654e7af6000bc93d0769f67c452f1b9523e91b63ed5c5e248163644c40" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/aspnetcore-runtime-composite-9.0.4-linux-x64.tar.gz", - "hash": "f8a1ec81def3954221aea5e2e24d6302aee8055d4c5811ff289c139cf7e08925279a75fdd557c33afb88d4948da1e2a38af7cf801ac5248039783c983a4d782b" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.4/dotnet-hosting-9.0.4-win.exe", - "hash": "e02d6e48361bc09f84aefef0653bd1eaa1324795d120758115818d77f1ba0bca751dcc7e7c143293c7831fd72ff566d7c2248d1cb795f8d251c04631bc4459ea", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.4", - "version-display": "9.0.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-arm64.exe", - "hash": "6209799b87d2f7d3b17656e3229420dc2870217f8efc0f9000dba85f1811e95a4098ffd1601e78041b17fb181a3f58a89b5ca9da8bbb02f736e1d8c023e6cb9f" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-arm64.zip", - "hash": "a2bebab263c635e9cd56adbb09c79ca2d905226429e016f20151e216c292a9c91583e72d623f4c7e1396ef7eb3dca852b03828df236e0ff3b347a87bb924d9e5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-x64.exe", - "hash": "c277fe5434b66c05f7782d40b90ab04dd2a9ac3d1570b2ab96a2311a58aeefff27761ca4488aadebe3b897e961b24b2f9c5a597ee27c2c4387d3cf0833f6cc48" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-x64.zip", - "hash": "ec38fab3d387ced97d55d28aef34d3979cadfed48f86bd01f44d2b3a864edf4339ee82df5ba4af535d2cf91832bd56b902f7195a4352641e6210efc1c4a70681" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-x86.exe", - "hash": "214a98c6d468566cb0d84898e7129897890384b1f3a49f1c59187f3711cea6340df588850d65c1b0c239fd0151806cfa7bc056551da05d9a0d94130b2e4fba7d" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.4/windowsdesktop-runtime-9.0.4-win-x86.zip", - "hash": "9516c6cb24e51a5b457de0d26992cf52ace1a96ea406f4f4ff37d4293d08717d05a39eeb19a844b815b4bc061ebeffaaedb17d964289ee5c66217e5054a26f64" - } - ] - } - }, - { - "release-date": "2025-03-11", - "release-version": "9.0.3", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-24070", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-24070" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.3/9.0.3.md", - "runtime": { - "version": "9.0.3", - "version-display": "9.0.3", - "vs-version": "17.12.6, 17.13.3", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-arm.tar.gz", - "hash": "22b35dca40dba8a6bc6663c63c04a3e6edf59f04b1db3bf792a1e64b573c3896f65e322cdbe8c1522009c2e81d94fe0ef85ab436e2961e81f4d7cc2123ba33e3" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-arm64.tar.gz", - "hash": "0b18859800c75d293b05b58938b7c3ebd9a7aa5d5b163c8d5a08aa84f95017d2d0114dd6f3a688bce9974c43dbd073a930977b7ccfe06577207a67f00319d20c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-musl-arm.tar.gz", - "hash": "bd807c994b02aa0c97e001492c16146894f6aa1fdef12d0979ffb0c84d809cdf955fd351016bb59d5098ec945fc3cce7958a6fedcd0e301ef28159700e380278" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-musl-arm64.tar.gz", - "hash": "2385114169e32b29b3a13b275a441af1edbb4c14ebed52ff8f45f11ac8a571efa2984be2ef91e38e670038c8e29db8c585ff12d1e05502f4120e4dd05e98b72c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-musl-x64.tar.gz", - "hash": "8533a061f4fad61135269ae7987d9bdc8000cbc4999e00392f0e9d234d40e20a4f4e753dd5724373772349a896f2a84e3ba86e876d81a9bf068888e421afb13f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-linux-x64.tar.gz", - "hash": "4b16a57e94592fb9712421ed90c025fc3b4f9039faea37b432b6d8a3e8caf192dead732fb84bbdca9dfa4ed40ddb46078dd3c2710801c92aee8e21c084bfd664" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-osx-arm64.pkg", - "hash": "e465ac53f042de610dd2897489b3c199043bf56c72c57607e09ff484dcaf8c8b2414fbe0a8fbc47b7593fbc254535e1153ae0c99e02675dbd0b6ca77706c6bbc" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-osx-arm64.tar.gz", - "hash": "b6808f69704b22d56b8af4afd4695997e20fa13c9e0116d28b5d8f3022d9c039c3af75910d2532873b8331526997d50ffd1b5642d36f1e3edd6485edc15d8009" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-osx-x64.pkg", - "hash": "abf16ef042bc18d550524f0c2588f2037a4ef56cfeeb822c5f9e31f0b8e7765bb8c2c8009987168a7b3c9f9cbf3b7a131283e345049a4bcd6854d4e6837dfa22" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-osx-x64.tar.gz", - "hash": "f60688f3c747d0e75c3f2c24b9021b147d7aa4ab4b5aa939b861d5584a590bf9b1d6e88577bd08e9ec23437fcaa295da633ef0406591cb5d14ac6659f8726164" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-arm64.exe", - "hash": "dc4f1af15338302f44e9a1ed219f6786c7f81e3d0ff3a2043a07a04d357450984391f13185a9dae8afdf0bff251aea9857b5895d27bd4122e73f1faeb290decb" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-arm64.zip", - "hash": "d3a2e5574f95d076baaaaf4c54278ff4169e604229aeb3c5d45d420c1a8fd5be4704befc8d86d13495242f5a47e25b0883f060384ea585779c8645223c8100c9" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-x64.exe", - "hash": "f4730f354c10898908ac43c455364554273bc10d367e5221b09d3ac41b8780ead888496f4a1b79270b53239d666a2fdb571b683105bea4c453ddf233f937f834" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-x64.zip", - "hash": "61e33b0569b5727348d3e74e3dba5d814a8c017292abaa5deaa79c41e78e6b73eb6ee8f09568ee805f8537b81d978f3e54c1c583e85df29d85fa6c87fde442eb" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-x86.exe", - "hash": "ea82dbf00bb91d2b66e3c06dfb6ad2a6f3443d75b575176113576e128878baa5760755e164901ad4ef69e3610fceecfc316be294a6ad8661fccb8388a2abafbf" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.3/dotnet-runtime-9.0.3-win-x86.zip", - "hash": "6848d49fcbc499d679112d07db68662b7b253c627fe8baba8bf8296388ec1161a356f59306b2234dc6c622a534c6b3aadc5cee2cce8d56d7b97255ed7581d56a" - } - ] - }, - "sdk": { - "version": "9.0.202", - "version-display": "9.0.202", - "runtime-version": "9.0.3", - "vs-version": "17.13.4", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-arm.tar.gz", - "hash": "2e88683ee3894b72581ce3829efd2cc5214968f0782e17f504a79bc80ecc31efe9d5360303545e45537f992f5ac8c47aaec8eca5ea8a4efacde9742de6c8ffe0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-arm64.tar.gz", - "hash": "6916fd37907c6563baebb5c9f82a6761d13d53a0442451bae73ad62a36a72744771017a2d3f665eecaa5c76f6a0036ddd503c2e195a8ea307973a292748b87d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-arm.tar.gz", - "hash": "38194d67497dc72ebf7d5a7ea6764624d1c524ac26261ce888a10af940ab661973306cb00bf8909a3694215c0c134ae90195e6ee11818046f920e0ff65a83662" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-arm64.tar.gz", - "hash": "21071ff46853b4155569c5a70fd8186b8250759db1d7945198e523023be3cd0e97058499491f1f2d2d77156a61919b6287c70df5520b4ec012aa9ec172889f6d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-x64.tar.gz", - "hash": "8b6538d3056dd9f231d964daa2d07ad71409b4e6eb991d406ac1f07626001085573726ba35294b54f2e8596d3a77e018d72ea5df4ec61fbb79faa04510a49fa3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-x64.tar.gz", - "hash": "0eb52300023d9df6494aadfbd8380dddf84e2f217d444ad9fe880292afbf378be3700d7fbeca3136ec95962ba355e44abfc9f8a679cd0d08e68f85cb0320ce73" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-arm64.pkg", - "hash": "cc49774082e5a7f5ca9a18dc59a5a91032e35795c66f452325cf89df52d5c22293983a80d98f0a8409f7941eb75536403d48f9eb9e24ff749ddbb7507731e6fc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-arm64.tar.gz", - "hash": "63badde1614aea8a7551f8e56c4b7ba379b15f37e6c008133e22c08df0607eab8c3c2f0306e441e9fe60c2166dec953272a0cbd150eb5b0b77dac5b287880115" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-x64.pkg", - "hash": "0fa362a500aa054d45620bde593c407cd8217d2423e795f6e982587fe7da12c8f7b8010d8ba1a3c5c135c515806c3cdb979b46092d1e7545efa3a8c945a77051" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-x64.tar.gz", - "hash": "fa47b5712462a704aeed37a2399074111e6f5f6fb0377ca93bfaa9177b31f9508cdd7f492d5ea24e0cd3c3a0fb977bbb5e582a0ebfd84baa0ec4d0a7abd0518d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-arm64.exe", - "hash": "24aebb2c523ad1306ea5c05b829a9c5fe4c84da44b5923d68d4ca82a527efd716d69c93dce41f250403dae5e82b6ce6fa0f2a54d12e5f5d062f89dcf2a7b690d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-arm64.zip", - "hash": "92d25b151bac28920508937f944bcc01d2b00e478a2b3139421d5f58636a5711994ebc0f724cda5b2d012e15d6979dc184f09c72574136dde63ba85d110efd2b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x64.exe", - "hash": "1ebb3db377b96dfc73b271c65a7831b5ab91559fa4defd509c9978c947dc408ebf43b14b2fdb47a05b298fdb5747c7ada0f7005dfe5820226e118b65e5a276dc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x64.zip", - "hash": "caf88c10ff1e3f59d420b7556ed14f21c156d54e69b8288a38e6b0c470a41374c10d2ed84cd6434a89e2a23c6a1a2ee6cb762941706b85c40f6f047df0b8127b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x86.exe", - "hash": "8ee88e28132514734cde8bf1d1b0687716423347f39219a6b478b58c35f3d7732140f7f765348b9860df195f7df8caab1a7eacd111f5e54a5b9fc769053960e4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x86.zip", - "hash": "c0c586fa7f02901b3126c143f7896292d4d91ce3a1da2e26e2c7c757d809bf38db804f7da8424756326b1f51604ec948f9d004b967b83937c394a2e0366a7401" - } - ] - }, - "sdks": [ - { - "version": "9.0.202", - "version-display": "9.0.202", - "runtime-version": "9.0.3", - "vs-version": "17.13.4", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-arm.tar.gz", - "hash": "2e88683ee3894b72581ce3829efd2cc5214968f0782e17f504a79bc80ecc31efe9d5360303545e45537f992f5ac8c47aaec8eca5ea8a4efacde9742de6c8ffe0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-arm64.tar.gz", - "hash": "6916fd37907c6563baebb5c9f82a6761d13d53a0442451bae73ad62a36a72744771017a2d3f665eecaa5c76f6a0036ddd503c2e195a8ea307973a292748b87d5" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-arm.tar.gz", - "hash": "38194d67497dc72ebf7d5a7ea6764624d1c524ac26261ce888a10af940ab661973306cb00bf8909a3694215c0c134ae90195e6ee11818046f920e0ff65a83662" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-arm64.tar.gz", - "hash": "21071ff46853b4155569c5a70fd8186b8250759db1d7945198e523023be3cd0e97058499491f1f2d2d77156a61919b6287c70df5520b4ec012aa9ec172889f6d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-musl-x64.tar.gz", - "hash": "8b6538d3056dd9f231d964daa2d07ad71409b4e6eb991d406ac1f07626001085573726ba35294b54f2e8596d3a77e018d72ea5df4ec61fbb79faa04510a49fa3" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-linux-x64.tar.gz", - "hash": "0eb52300023d9df6494aadfbd8380dddf84e2f217d444ad9fe880292afbf378be3700d7fbeca3136ec95962ba355e44abfc9f8a679cd0d08e68f85cb0320ce73" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-arm64.pkg", - "hash": "cc49774082e5a7f5ca9a18dc59a5a91032e35795c66f452325cf89df52d5c22293983a80d98f0a8409f7941eb75536403d48f9eb9e24ff749ddbb7507731e6fc" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-arm64.tar.gz", - "hash": "63badde1614aea8a7551f8e56c4b7ba379b15f37e6c008133e22c08df0607eab8c3c2f0306e441e9fe60c2166dec953272a0cbd150eb5b0b77dac5b287880115" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-x64.pkg", - "hash": "0fa362a500aa054d45620bde593c407cd8217d2423e795f6e982587fe7da12c8f7b8010d8ba1a3c5c135c515806c3cdb979b46092d1e7545efa3a8c945a77051" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-osx-x64.tar.gz", - "hash": "fa47b5712462a704aeed37a2399074111e6f5f6fb0377ca93bfaa9177b31f9508cdd7f492d5ea24e0cd3c3a0fb977bbb5e582a0ebfd84baa0ec4d0a7abd0518d" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-arm64.exe", - "hash": "24aebb2c523ad1306ea5c05b829a9c5fe4c84da44b5923d68d4ca82a527efd716d69c93dce41f250403dae5e82b6ce6fa0f2a54d12e5f5d062f89dcf2a7b690d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-arm64.zip", - "hash": "92d25b151bac28920508937f944bcc01d2b00e478a2b3139421d5f58636a5711994ebc0f724cda5b2d012e15d6979dc184f09c72574136dde63ba85d110efd2b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x64.exe", - "hash": "1ebb3db377b96dfc73b271c65a7831b5ab91559fa4defd509c9978c947dc408ebf43b14b2fdb47a05b298fdb5747c7ada0f7005dfe5820226e118b65e5a276dc" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x64.zip", - "hash": "caf88c10ff1e3f59d420b7556ed14f21c156d54e69b8288a38e6b0c470a41374c10d2ed84cd6434a89e2a23c6a1a2ee6cb762941706b85c40f6f047df0b8127b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x86.exe", - "hash": "8ee88e28132514734cde8bf1d1b0687716423347f39219a6b478b58c35f3d7732140f7f765348b9860df195f7df8caab1a7eacd111f5e54a5b9fc769053960e4" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.202/dotnet-sdk-9.0.202-win-x86.zip", - "hash": "c0c586fa7f02901b3126c143f7896292d4d91ce3a1da2e26e2c7c757d809bf38db804f7da8424756326b1f51604ec948f9d004b967b83937c394a2e0366a7401" - } - ] - }, - { - "version": "9.0.201", - "version-display": "9.0.201", - "runtime-version": "9.0.3", - "vs-version": "17.13.3", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-arm.tar.gz", - "hash": "681218635821ad49586b20a0eeb03d029d15f2cf2c795074bd3e27a773f90a17a8b6bac9df44e083233cecf362bbfee7d0c6b83a24917e696bde8ad7e52f1155" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-arm64.tar.gz", - "hash": "4eb78c7608355ca2780990934592c49579ed59f0983377c4c2c99a4091970264642b8fee92c65e91baeb6c6bc22066d6958085eacd1a850055b52f6d04436d5b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-musl-arm.tar.gz", - "hash": "38dbe814f4ecd5281f7821059661ee0265fb219cde085facfccd59e9fb340c03818449064dfea4622de0c0c6e390ca1979515bde77bf30cbe7aae614c1cd4f2b" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-musl-arm64.tar.gz", - "hash": "0ca9d313acca194716ffadbf724e3257700428e92b5bd092055d9df631cd3a267f3c57ba755d75e41fb7b027848321bb0ab6dfee0374e0e45e54990b34bc67a8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-musl-x64.tar.gz", - "hash": "756fe885d5916040c77995ceed02e852a93eee94489fb2521d9613da80b1a066c0553526c5b3d6c24bcd031c10e9848ad80d27b75945e4699909e6adfd39bacb" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-linux-x64.tar.gz", - "hash": "93a8084ef38da810c3c96504c20ea2020a6b755b73a19f7acc6cd73a8b62ace0adda14452d11e6458f73dc7d58ffad22fcd151f111d2320cb23a10fd54dcb772" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-osx-arm64.pkg", - "hash": "a40cb08334a6a11ecc3bb1ba9a4b98a1b5ef0ec6b7128bc3f88533a60fb61ec49bed4f1b91e9b2d7b3d9dfcbbcc753bc7012351571a8d147c9d99efba895e677" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-osx-arm64.tar.gz", - "hash": "225dc2dc67f1fc41c05209e49a315651b20196ff0287f95ee083e4c932c90eed7b78f68287a889a41fb3ed11f48d0b75f6285fd0e81612f984b59cfa73d0a7c3" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-osx-x64.pkg", - "hash": "e86dbcdd0a1b6cd9a3f1768eeda5885073db5697a2a3ad496205adc035a3747ccc352b066108e63f1f78775b01c566ff1da08fa158c27b3f19e2de7617b1cc31" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-osx-x64.tar.gz", - "hash": "6b3183339a7b4fcd6975731f0c4079a7fa1a618bcf7a33583aa35ed8dbed5d841e5f17ce118416c21fea72babfabd0fc2cc04266f36af9d6c7bc8c5520cb5a81" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-arm64.exe", - "hash": "8dfc09eaadbe3bbc9c574b39c852fd027cea1ed9478b677c0bdca1f8ccb46acd2afe541ca47f6287fd13ea043379c1795d91288be21537319a8b7af18358e4b9" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-arm64.zip", - "hash": "0b3f8edc703110145cdecd37d1a5c3677b9cc1666f57a896da8bbe978751a673a6a86f3c04f16aa82c28bebbcfb00143b60253c10fcbc3340f442a6d012fa5cb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-x64.exe", - "hash": "8e3d95a6d22c27dd27412ebd886ff63e4c37484b2c1f3bde451b8e1329ef86eae75f0bfa9bb2acc54cab1ed942c343ab86d3c4ffe2ccff323e5661897006adf9" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-x64.zip", - "hash": "5a6d8eadb389e0ab4984bf36cd2950583ee5e3f3a20e8fc1c5a526a197029988052616e1be1662c4b9e13020b572685423d664d0b68a009b4b98661f65bf1a73" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-x86.exe", - "hash": "cdb0d9d8a4e628f892edb25c959ee131b6d7439b6286b432be05e4e2e2e1c175d57683b49fa7b9d4e004bea0e408bab9e89260f00850ae5b3b5bafd4c033b5a5" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.201/dotnet-sdk-9.0.201-win-x86.zip", - "hash": "b1b7b3db0fc4d2b3f8060938042e191cd1abe230d35c901cb67a5cf8f0472c1ed767226819c954cc6ae9e4fbacea1f634f507b6a88dcf9a543ce00128e66f64a" - } - ] - }, - { - "version": "9.0.104", - "version-display": "9.0.104", - "runtime-version": "9.0.3", - "vs-version": "17.12.6", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-arm.tar.gz", - "hash": "9d4d4a69a946fb61e9d3a0b3a575cf9eb87f419477a90acb002ded5c6a34c6eb746d14103493e330f0a43fbd82fa479591b64ab13bc1f92c619d735d0862e32a" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-arm64.tar.gz", - "hash": "bca55566ea5fd74a9e0f757cae2f572823c450469f456756042987b27e9d15fbe59e1993742532a82fdfc7fb21f26a63e74b4c80ed17e52b12f0738b461d70e3" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-musl-arm.tar.gz", - "hash": "50222ede71ae50fac4970b2457de2dd90ec3e6297c29c5576ef1e17d523e6dcb04d60a1383f86bed288d0206728273df6dc0fddde595cfcf832651cca3619cc7" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-musl-arm64.tar.gz", - "hash": "68a5e20a906dedd58e128c90116ce6f41fcbb3d6737397a3049eb81ff6a8ccc132326dd147480284535ee17a545be5e47b41dfdb482f50c15e76f5b84f31b9fd" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-musl-x64.tar.gz", - "hash": "e88d054c0b91209f41d009129d186c3188066ee0bfc5ff0569c6489602d375e63b52142beb756f7f09edef9c60fa70d5de6d05cf7b3280388fd83d93e82cca76" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-linux-x64.tar.gz", - "hash": "99b6b1bcd46d3cd59896139054bfd6c15909b7aead7bb2f19d3e97bbf87a425db5bce4506d5f77bf6f7f1249b0cacafa679c9bc9c3b1e4f2ab2e79cb5d0b2c79" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-osx-arm64.pkg", - "hash": "b1b7f692e7602740e3880841be2e5e061e577f10ba4e58c3f07ebc9df0c5d4c13330fd99dd4f54ddceab55781b73b60b35ff39becf21230e5d23d26329ca0ae2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-osx-arm64.tar.gz", - "hash": "2145b705149186444948a69d10a95451c579ff7314c78477555e06f7659a792172630db4a16fd27401f720f5e994e082bed23f437efef3c7198f1c83e5c61d77" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-osx-x64.pkg", - "hash": "9d1451e0de57e449b402937677110ab506e7e25773db9cfa67bb8467fc3eb0a876c7df9eff4369bc26f6456334c9dde276ed1e4d6714b377a0729494761f0c8a" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-osx-x64.tar.gz", - "hash": "25b64652440b8c600a387f126dcbba5bc6646ddb906a3c27638b09264aa3ff668749cfc6e3a1e53070c97288ca71a58c7e91f1d10a4f0f4169a2d04e5f86a4b1" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-arm64.exe", - "hash": "34bdab3f6a32baeb3e852262e132a3fddfe051d46ac5bdd82b28577ad3a9d2302821e990230a9684d89152077ff62887351b837d4a4d083871f3625ef368e980" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-arm64.zip", - "hash": "7ddb0c81f8f247655630883727d59d86800f8aa00d0f302cdce47d95566374e7687372fa51a12dde0c1e356efa24d11e65be5f8dc39005b2ca63ab4ab2ba3277" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-x64.exe", - "hash": "d6a9abfb2752cf51a583cee18c24ae340d7d8622b18eb846204cbf1a597ea80dc42d5189928cf27963f0fc649cf2a64a9d9565af8de82951f7b6dcdb0317a5a2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-x64.zip", - "hash": "a6609ab702a48c6c5df4caa4b5fb63c237238926e8952322e141b7de7d8a403fe97728727598b2c449be1de1a7e9cbe902cca365add8c4e59056f90b58dfd27c" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-x86.exe", - "hash": "f3f4ce834d45e8d26ae1cb729bc2d83a3bc5763f667910a918e878da95e2dba331488afcef92ba2d7f6ae05e591fb8956fd116aba88d188195bc24d4219281ca" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.104/dotnet-sdk-9.0.104-win-x86.zip", - "hash": "dac2558d0922f62585ff556488d6bdedef61f72cfb8244c7ba1fcc7bae92c049fc2303ead3d1ad81b59098eff2d16fa26c37e02d21b2f808ecb04666cfd5ea07" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.3", - "version-display": "9.0.3", - "version-aspnetcoremodule": ["19.0.25044.3"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-arm.tar.gz", - "hash": "2a7508de9795d8238a1d4ff7e74df819538ca47d6ff8663ddb27b5f7514dcf487e7eed22d8c84258cad3fb30066621a6c79e08f3b060f15d64e85145b376aef0" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-arm64.tar.gz", - "hash": "8a027078b46b6ebb3f4beda2b3f3cf7960701b71b9f2b6704c17f2752279c764755cadfd30f3e2f3e3ab26869e50a35c567c2fbd41fd98d77ae2f6fecde18b50" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-musl-arm.tar.gz", - "hash": "416bf072c817abca07a3ec5e3527d8baf01f798c208a9091599a4d1826f3e9adb6f0b40bbbec597548e0715283cc166f5e9ff61836426c2de5c726b45f5fc8be" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-musl-arm64.tar.gz", - "hash": "6322fc1a733a541f94e13db91cd27d976f55734689d40c3fdfbb10a057a575f7e02b32b1d4ab7c879cd599380fddd7e0a17d7f0ad0eb370db142f4f3c7eb5bdc" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-musl-x64.tar.gz", - "hash": "13585a919350ba2257f00a90ac2de0306b1e952ebba0c7f9039d7ec8da13554b2e3c86add01db83de4e647009b8a3ac66c3a68629e7701b463703b79db86e4ac" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-linux-x64.tar.gz", - "hash": "38a3b73a6c41ee6f67e9108ebf684ec082fc6dfaa941ea225f6eb200a1e34909c05fa47a087c35c18eab607350796ecd16c09f2e3774dba590083c93742e39a3" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-osx-arm64.tar.gz", - "hash": "0f91a731182071ed511755e8521d82dc0e0c9bd1baaee705e16ddb2f235e8b632ea707465b817a240799e5fd7c524b50e3a1f6abd7d9a5edcee9025e473f4184" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-osx-x64.tar.gz", - "hash": "32aacaf3ebd41990362ff5a1236bf83c7a9e431c88169a6bcb2a7e9322278b7ee613f565a883077c5343d217ea6ac715bec1f696e1c9e8119dc4da664919fdf8" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-arm64.exe", - "hash": "b468b96f39b7aa6035412d475c78eb820ed7f8dbf7257e9f99861ef1bac77f0fc56a4d8f53636116358470ee63d4ffcf27623db235b674b9340e3785b2652d9e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-arm64.zip", - "hash": "a5ed15e458f28a057040a1f8de3b0b83878847a8eaef40657b05b60db4edda4691b7a97b30f75b1130349d35c0a2291c15c4181d2a940170fc248b27a042586a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-x64.exe", - "hash": "20d2929c4cb85f7bac7b6875a79b877ca2ae5f59471c7b4c6ec089de33cb980584ef77042a20209afdd0e6128f1fc50c647813956675300aa19b6257ece90034" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-x64.zip", - "hash": "252866541dbf82eace90582620eac7550061de913a888623992ce947c31c364cc1965a6b25b9d3c5cc1cf4b24903f8c5b7a90f6f90b3eb4fd1ddf60d4f0159d3" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-x86.exe", - "hash": "27bf39dc5e116fe7f7f99c5a0d1bbcd23a5133ae903718c565e9b5470b2f598fc84cf6088fa3eced8456f34685dfd1e1dac980780ae76b57d744f2c6b4e57a53" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-9.0.3-win-x86.zip", - "hash": "a84d3a77d268a1a7752b2660aa723e3aba86504ae4d522aa5b2af963487ad99ecc09dc55c142fc58039151c46b55430494807079ab3bb4af50c48f96e9e7844d" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-arm.tar.gz", - "hash": "52a7478e2ae6e0835ca96f54cfab5e93e31ccbd50fa034bf478a0c1c0f83d2ec163e085218694de49fc252cbbe4f0601249a6cb344fad5d5c2c56b33beb5c9d7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-arm64.tar.gz", - "hash": "1b950c7b49d47618288bc570d4821c1ec56deb2364453c1380e778fc311fd00c1884a740743ad083978b94246b2bf33a3c64b5ed1ee807dd9ffac25ee03f0352" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-musl-arm.tar.gz", - "hash": "11b2a8bf1d615722a5ccda4a6fb09ceda98bd1c1e4b22471b6c1b9f38f7fa58c109aa290d5e2f5106b6c0d240cd80a616b4aa953658e6bbba0ef394160aedd2b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-musl-arm64.tar.gz", - "hash": "dedfb7919e127eda84454a0c6460a02840a4e96eefb2b7475e16dad61a737630515428e15d043e9beaa83f5e5f09cf7b1a12e4845b705ef38b81a249229ed8eb" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-musl-x64.tar.gz", - "hash": "61e271dc0f8ac14e5dc026b8021e4a9b56c4115a05f2ff04f042248105600225053dd7b1cb26aa4df4c070bec3897a05ae103ba3a257b4864a7ce964412b3ee7" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/aspnetcore-runtime-composite-9.0.3-linux-x64.tar.gz", - "hash": "020563a599541f944ef1fc42a710e025dbc86f40e28299316c2de9dd23e307d26ba7bb4a016d7423fdb7fff018955f333f267753233788a5c636a86e20aafda4" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.3/dotnet-hosting-9.0.3-win.exe", - "hash": "47ac3ebd0b58125d022215516b471e425af17a5cf65d63ae5b38b2ec55bf89c981bb56acbb6977dcab4f77278f12b5fdf9034ec20246e12343a65f76eeb0b798", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.3", - "version-display": "9.0.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-arm64.exe", - "hash": "1c6b40cd3e00ad441306c1a2e534c1970dd00d19856ef57e7c8b09a85e187da357e5825763e6cd6446ae317de212cb2ab7c92bbdf9faf7c07a079a7394909479" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-arm64.zip", - "hash": "abd07d1ee5d714b8583b5acbd07dc477c457b00f1d2ca6f80f1d0c80c9edb12274f8e3be342c5790993e22c3ed2eb7ff4c744d5596153735d39bf6e17541c7fa" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-x64.exe", - "hash": "344603c607ad8a73dbfccba08f3d5400b28d831fe146541924ef02a5f838c84405837a08eba5f9b4a855ddfb94962e625b24cf51f8d3860135e305baf9114e49" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-x64.zip", - "hash": "0dcdb04d054ef5e8871c7a70c1b1fd82e84797f213a5ba4fde6bdd1d1903462de0cf296a7165449492f8af8f19a1ef5b6bb3ea91385264d9bea8c1d782a4a0db" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-x86.exe", - "hash": "b482793c9daac8888fdb53123748fe6438a8952a7d64e0820feeb580fcadbdb7c2f6efd90fe0d5fda73deb6e3e9830939538fb262362705c3e495b5b404f1750" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.3/windowsdesktop-runtime-9.0.3-win-x86.zip", - "hash": "a05f65a29ec10ebc95536b3ab1a57809c998a8c05b32084884c0e5d26f681dacaf8081c53d89c5c552242a13f7e70ef33d8255aa8a4894d163e5fc87ef3a48c1" - } - ] - } - }, - { - "release-date": "2025-02-11", - "release-version": "9.0.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.2/9.0.2.md", - "runtime": { - "version": "9.0.2", - "version-display": "9.0.2", - "vs-version": "17.12.5, 17.13.0", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-arm.tar.gz", - "hash": "be31b790c8a5347c1a7fb75ecbbab16c675ff5e6352561631220b94d417f19eed07220d5c3972905123704dd6bd67d00138ff42484815e0def7d8ad916a30d94" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-arm64.tar.gz", - "hash": "460133ddc2582a209bd80673721e7b9add2b9b2967ef1503a7dc29be2777870870990ee7549351e8207c3e3e84dabeca6d5bdbbdea75e5e3e749eb16bd13e7ef" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-arm.tar.gz", - "hash": "38e03d8c12fa4520e311cf2d15fb2c2f0e019c7165b13fcbe58fc46914743ecea8e0ac4d914385b1430cfb5e0df3db6299424cfdccea6ffe469a681e2d9d93b7" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-arm64.tar.gz", - "hash": "0bb0dc7a4388c5b95d4fec9fe7ca1273f9afa502021c73eb946ed2928d6d6d0836414400f667eff30da97b83b04f66d3032c2344bb2587007b4001d75b696a16" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-musl-x64.tar.gz", - "hash": "df116ef9b7f6b717b7c7f057e826c9e1f1ed0d743fa6b26e9229fc36e500ab834d19ae1ab55ebc28b1c9b8cb4a7f41c62edd08c2dd2cdcb6e912defea2810ffb" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-linux-x64.tar.gz", - "hash": "dc4af24d5d298392fd53491a56c6d4e3d1e85e3e294cb4a848c7ac8f0dce287f11dcb274f18f95f7db7195681386e5c6b0d99500808c1b3e68b9c6097a3484d7" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-arm64.pkg", - "hash": "18e680670708b1230786c1433f8126c926d261d6516917f2d65a9038f819eb1deeea473e5f14e74020c68e6d67e393ef1f69c70f6220d1d7d0482802cdd6460b" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-arm64.tar.gz", - "hash": "5ad890311607a5fb14f9a64103acd76385781e4b75085a8e755da474ffc1d50730bb8064e8bafb117afdb9d04ceacbd58452539f1e0e63be0b9731e19fd65156" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-x64.pkg", - "hash": "a9bb2cda7b53410880cecd51ba9798f0b4872e4327f4f5a619876f6d85b24bdf83f134f523edfa547640993c1e87f1a61c4f42ad738887d10d665ca7b597ec48" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-osx-x64.tar.gz", - "hash": "abe0752f3437ce0e2415d1f70879b6b062dfda59128ef5b96db946639b506a54cac81845b6775d19014d52271abeb8dfaacfeb783452b98f66265c5efb1b3b55" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-arm64.exe", - "hash": "d66e00748adcf3d43124cfaff1bb6122dc984ee20a488966e1d6a36b3c83671b91100f985812d1553d52498e8b40d5eccbad87a4778c5aa4c6debe5ca59390d2" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-arm64.zip", - "hash": "2fa9ff1951b62399e3b201e8c247f6646e9c2099ea302bf5b18e5a00e156017f438c6c68d3c7b634f744c250d8acdc8eef6e17bab6f25982ef5f0e36a5f8be90" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-x64.exe", - "hash": "da1d1ba1973d24bb42cf511d12931de88fd1e73efe26690fef60c61d20a6ca63018fd59d5a358f5a7a2bc8219ea294e0fb2786dbcea7d6c05b0a007ffef76e3c" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-x64.zip", - "hash": "a8c9402fab7f9f9afefea433e2f35f894f8411ea9b7139321b4dd4cc1a39cce59c678158dc0178e376d5bdd11bbdd48c1c748b7d0fdf7cbea7a8c5f8b7afb987" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-x86.exe", - "hash": "d86fc1c6473d9a365a43b39da988b39a9a008f2c3fdde8b68cc6e0893af1e99a9fb5473a10128d55e3e02e808db088438431cce4610153fe3c4d0aadcaf6c7c5" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.2/dotnet-runtime-9.0.2-win-x86.zip", - "hash": "ed9cb618e20abe5a03a2d132e6ededd7ef1e4338e61edbc301063ab2d82287cf9781e1e1738d175e73de751f3359671ed35d36e76bc6688485e6b2e0a2bf9864" - } - ] - }, - "sdk": { - "version": "9.0.200", - "version-display": "9.0.200", - "runtime-version": "9.0.2", - "vs-version": "17.13.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-arm.tar.gz", - "hash": "476a9a686af234482ea99ef53fd1a3b6bd65e4ef5f24eb1e2e94b60f146e7b7e7b99519a66a896836682e702007027a04e10ede857fc4540c3bae56b16cb3780" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-arm64.tar.gz", - "hash": "c2d18644243d67d103471713f0e9ba659df0c0d5e098bd441310418dd03798d6a5a8539da7c8cc320d57085c193c753ff78bdff8a97a97c51f500433538fb722" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-arm.tar.gz", - "hash": "4297ed3b4f112e1d64a6617cb96191bfb4ebf6a5fbd01c75de6c0592897173f011aef3d9be7e61738e0c8ce8ba1815b06f28e0c251c840f2e0de2630d36616ca" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-arm64.tar.gz", - "hash": "f1a70807e0a2b5ee272bdd714535a2fa3d31bb8c2216b43c151a72cb364f64a6f893590baeebc7dfb2b78ff50e4ba11c3e4cadf11c75744404fefabdc7ff08db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-x64.tar.gz", - "hash": "96b032d5209a838e97522528963e2e9589f8384dff4292e567030b0da0849104a57cd6d0f05e5fb7e7787730f47c6112a014df17c76010864f55c110a971f216" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-x64.tar.gz", - "hash": "1af5f3a444419b3f5cf99cb03ee740722722478226d0aff27ad41b1d11e69d73497e25c07ef06a6df9e73fb0fbdc4b9baca9accec95654d9ee7be4d5a5c3ac23" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-arm64.pkg", - "hash": "5f7528922738e520edf714cee636d8e1b44c62d1af984804ca00508f22bff54776a232cdd1e94d386c1d70fc02219f8e4d05db9b449bbe7853fdce284e5fc8db" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-arm64.tar.gz", - "hash": "a45d5a6fe5f046e9cd0a4482a41f0884822903134bcd2f25face71e1322749dacc53221cee21f814c6171326da0f64f42204ebd79f633a3bd1075c04fa73d1bc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-x64.pkg", - "hash": "a9dd1005ae1ab833c0c95a4ca1850e29a01b712b224eddf1edae3f152ea2a212402abb61956dbc8e8804762b10ca980371ddb0735cc950422c9ce3ba08c6f64f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-x64.tar.gz", - "hash": "f38a641d17dedf0be24c721cc4f78784050cd5184fb5cc6c04c4b2e6f7602c55fc5a3c80dcf2a1df5ec59aedad42947720510f07b2b3c59b6185b91aff2010ae" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-arm64.exe", - "hash": "06d7c4133bf7cb6f72b60b97f11c1f8773291e888f556c355d45dc66e3b36e597ac5562359fb3221b970b28f02649f0693d5109467698310752e0a8dc60f6703" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-arm64.zip", - "hash": "3a996171562f30ac2f4a73d196bcf5ae3077ed5425c4d9aec562116e886dc3a9c20a227753501ac3741a5a8c7473d95a5861100e9d38fc2b09de09193e1bb00f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x64.exe", - "hash": "801d4a40a7bdad5c7b50e75c55c5ab657da44b5d779fe50da5683450e23c595e8b18e6bc9ffb80636ffb347b72e575379cd83c7554dc27f5ba75246169f327a8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x64.zip", - "hash": "e274e0e8a0d926c58a2199e020fc5b2c2867689772f51673f655ee853a50a9ca0e435ae5682bb4ae146d1fbc9a40f6d4a7ecff14d5fea24db8a3f67d0dcbf2a9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x86.exe", - "hash": "3ddeb620fc45c623ade58f179e80cea64b7af5b76b0b4b1f65b766df3c5614ce04809f40614ebeb98dd6b4662dc1c2bed38d1f78eadc489360d54e35b98b9904" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x86.zip", - "hash": "65daea90e55f93abe1484dd86bcf2b447d0caf20fb80734a361f2dba0e6ded2158b40d5a7834c192e51b108fb2205aefc856c2a1b34e363413bc371e3a7f2737" - } - ] - }, - "sdks": [ - { - "version": "9.0.200", - "version-display": "9.0.200", - "runtime-version": "9.0.2", - "vs-version": "17.13.0", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.13)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "17.13", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-arm.tar.gz", - "hash": "476a9a686af234482ea99ef53fd1a3b6bd65e4ef5f24eb1e2e94b60f146e7b7e7b99519a66a896836682e702007027a04e10ede857fc4540c3bae56b16cb3780" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-arm64.tar.gz", - "hash": "c2d18644243d67d103471713f0e9ba659df0c0d5e098bd441310418dd03798d6a5a8539da7c8cc320d57085c193c753ff78bdff8a97a97c51f500433538fb722" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-arm.tar.gz", - "hash": "4297ed3b4f112e1d64a6617cb96191bfb4ebf6a5fbd01c75de6c0592897173f011aef3d9be7e61738e0c8ce8ba1815b06f28e0c251c840f2e0de2630d36616ca" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-arm64.tar.gz", - "hash": "f1a70807e0a2b5ee272bdd714535a2fa3d31bb8c2216b43c151a72cb364f64a6f893590baeebc7dfb2b78ff50e4ba11c3e4cadf11c75744404fefabdc7ff08db" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-musl-x64.tar.gz", - "hash": "96b032d5209a838e97522528963e2e9589f8384dff4292e567030b0da0849104a57cd6d0f05e5fb7e7787730f47c6112a014df17c76010864f55c110a971f216" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-linux-x64.tar.gz", - "hash": "1af5f3a444419b3f5cf99cb03ee740722722478226d0aff27ad41b1d11e69d73497e25c07ef06a6df9e73fb0fbdc4b9baca9accec95654d9ee7be4d5a5c3ac23" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-arm64.pkg", - "hash": "5f7528922738e520edf714cee636d8e1b44c62d1af984804ca00508f22bff54776a232cdd1e94d386c1d70fc02219f8e4d05db9b449bbe7853fdce284e5fc8db" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-arm64.tar.gz", - "hash": "a45d5a6fe5f046e9cd0a4482a41f0884822903134bcd2f25face71e1322749dacc53221cee21f814c6171326da0f64f42204ebd79f633a3bd1075c04fa73d1bc" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-x64.pkg", - "hash": "a9dd1005ae1ab833c0c95a4ca1850e29a01b712b224eddf1edae3f152ea2a212402abb61956dbc8e8804762b10ca980371ddb0735cc950422c9ce3ba08c6f64f" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-osx-x64.tar.gz", - "hash": "f38a641d17dedf0be24c721cc4f78784050cd5184fb5cc6c04c4b2e6f7602c55fc5a3c80dcf2a1df5ec59aedad42947720510f07b2b3c59b6185b91aff2010ae" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-arm64.exe", - "hash": "06d7c4133bf7cb6f72b60b97f11c1f8773291e888f556c355d45dc66e3b36e597ac5562359fb3221b970b28f02649f0693d5109467698310752e0a8dc60f6703" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-arm64.zip", - "hash": "3a996171562f30ac2f4a73d196bcf5ae3077ed5425c4d9aec562116e886dc3a9c20a227753501ac3741a5a8c7473d95a5861100e9d38fc2b09de09193e1bb00f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x64.exe", - "hash": "801d4a40a7bdad5c7b50e75c55c5ab657da44b5d779fe50da5683450e23c595e8b18e6bc9ffb80636ffb347b72e575379cd83c7554dc27f5ba75246169f327a8" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x64.zip", - "hash": "e274e0e8a0d926c58a2199e020fc5b2c2867689772f51673f655ee853a50a9ca0e435ae5682bb4ae146d1fbc9a40f6d4a7ecff14d5fea24db8a3f67d0dcbf2a9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x86.exe", - "hash": "3ddeb620fc45c623ade58f179e80cea64b7af5b76b0b4b1f65b766df3c5614ce04809f40614ebeb98dd6b4662dc1c2bed38d1f78eadc489360d54e35b98b9904" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.200/dotnet-sdk-9.0.200-win-x86.zip", - "hash": "65daea90e55f93abe1484dd86bcf2b447d0caf20fb80734a361f2dba0e6ded2158b40d5a7834c192e51b108fb2205aefc856c2a1b34e363413bc371e3a7f2737" - } - ] - }, - { - "version": "9.0.103", - "version-display": "9.0.103", - "runtime-version": "9.0.2", - "vs-version": "17.12.5", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-arm.tar.gz", - "hash": "9b9ddbbd8a090ee78f40576ac9f3daca5a6845ee39448b10c3bb51b2b4f9e7e0a979b6a00c31da08f3e68601fa77a687a556d079c19d532aee4d7f25bc9f13c9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-arm64.tar.gz", - "hash": "32b5494e77689086e8d5b936434e4e87a8d88039f77c3381d96592757e7d716f58de1003fe41c7ef3a2089366a3205187f56d733d5f9d2f1505d83b1c16d3a0b" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-arm.tar.gz", - "hash": "663c3351edb0d38b25fa854be092a2cf7b6fefd568f4d7458ff40740b9637605390b48a4acdbb35640d40dc9efe666a6ee2947f10fe9c9a16b9743fd75bcf0d0" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-arm64.tar.gz", - "hash": "bcc5019831f9636d81a87369e1cf56e70dc52c2993eb64468f62029629a610333b23c2062e3f93647bebcbdf7de2aaefa7e9c96d6e96ec161e3a745766ae109f" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-musl-x64.tar.gz", - "hash": "ac4e2116f99999f249c290e9a87c628f6236f59c65eb7672bbb484cc1159bf739c9585dad80b50ff727335e4bf626e175913156b13a283f175dae7f6a965a542" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-linux-x64.tar.gz", - "hash": "afda487365cf2d082f1dc462ff01607eae10657de8281c53c4e8775df72f5ed5b31b427ea8afd0917886e73b104a25db4c607e0510f8be3a761de9445d797b75" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-arm64.pkg", - "hash": "49e9eb2a3ca79b94f9062b130201962415befa18c5365458c1584f52379ab661a3d095e31a4269d068f56feb30285e665b190a925e2c9f1308f5fd93ef5986bf" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-arm64.tar.gz", - "hash": "52f29d18f7789bc53d15b0e1e96b83b8811eaecb3eb6035dfb94e2d2f2bb1a011d08b46912805a2860c574913ad338f5f0808ad66310dd87cf78163c3b025925" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-x64.pkg", - "hash": "4f0e90596b5b5d9878f58b28bdadf6fae0e07ffc7903609bf00087a1cda91b6c8d32efd65949f44d77905b456a9956ac1a2d78f71471b5d7569a4b389c34407e" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-osx-x64.tar.gz", - "hash": "7acefa171aacba663589d5c9ead080a808ee60696b789ce89aff88e0626f2085d32a198154a7ec94a8cd5cd272f70bd57e199819b3ec89997ea52e3c0f6b96f0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-arm64.exe", - "hash": "b7a19c6c8c62c9db8605258b4fb21b1a9ea64646ab26f7b055bbe90154d462568d5ce202356f8f81b0cac1a1afe90d89252689f4ee6b65a4d4c27fa17a0e8f31" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-arm64.zip", - "hash": "e85fae99d88be4e2db63dedea809a97c29a9ff9cde04fb93247cad1feb19119bc7d2d9f4976075af534f8b9dc22af8df60b78a8bdba801a8eea67e521479b443" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-x64.exe", - "hash": "a4150ec3c57d2e1c77a889ef9eb6cf913e43c7aa6039a1b156fabfb70862187b60d43161dcde8b4edd606122f3b68e8583ee6438f1303607b7f9f29e9f926e56" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-x64.zip", - "hash": "9b691e4a4fc297ced20267975ee84641d4346052f6b5c192d27c05fb273b0a31966a2447277d9a7a948b944306bcaf7b8495ed1c15718d8bf2252e3adb43318e" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-x86.exe", - "hash": "282409ca8eb5e5f2e543a6450332436266e079703b8f0640f10f38241d42efb7def82f4509fe7d56a2545dd82cf7d657cb75b54f807eece55930c3dfce0ef726" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.103/dotnet-sdk-9.0.103-win-x86.zip", - "hash": "9c2b5e1e764792abfc4eadb51c3177e6371af3985c15022042a34ef300724019ed38896fd021be27980e535fd128fe0a78ab0cb893ea54d6294301769a92f7a6" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.2", - "version-display": "9.0.2", - "version-aspnetcoremodule": ["19.0.25017.2"], - "vs-version": "17.12.5", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-arm.tar.gz", - "hash": "5576751ea9414449add100cb60c917f72305209dc831ecd3698b8ef6a69e2a802850148b33caf5a05d049be66b19c7404531ea6ecd643cc1fd6ae61179e1249b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-arm64.tar.gz", - "hash": "aa95ed396e5012cb7815db25f07b196261b91e4ca2e7ba07352896e1ab351a96232fdb692fbde1d1ddd1c916987353d2d3382e9e16bd7a97ce4b411c6426e0f6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-arm.tar.gz", - "hash": "f96a66442f7db558e40491f1deba42a58b697286a8c592f20b9b17006040544c3cde3851dbe9d5dd0be4ff68666575a10a8e1225dc97069081a66726a9f0fc8b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-arm64.tar.gz", - "hash": "5e74871d9133c52389559eb34ee82ed7b8ff2ee990857ef80ebf2b27c405e0dee1ae951c9a87355168901d98acfbe37bd6d516d6a0b4f5f495c58326243c0630" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-musl-x64.tar.gz", - "hash": "ff070ebfabb1fa776df69ce6fb1e6990069ff6e4b795dd0ea0ee028dcceaa278500f695c9ba6b6c839310ee0d9aaca398e079ebd9081ec36c1e2d5a63c5bc109" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-linux-x64.tar.gz", - "hash": "48a39dd4bee3e719273a4e4404b556e2e59e7f659def49f89745ae575fc976f7ebf121d9263c3d009db6081976f8261ca82de34aef69b0776a28fd0485bb6d3b" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-osx-arm64.tar.gz", - "hash": "66fcd7a0589fb166d85caebd6f08c16049bdd0cacfd01ab3f199c442b98d54f8610c225a2a9a6f52bc4bce12bba8a3001e23689240996c697e2bc3a008957226" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-osx-x64.tar.gz", - "hash": "4e3b76bc423e9312b55449ff156bf65044f566445c4106fc47314517651d4d510c0418b1f8f17853b1cbc14769100b846f414f80d6a9cee5f95f5a6fb8547d9a" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-arm64.exe", - "hash": "2fda149e90311f5f5bda6be635bbbe23fdcaf95359865a9880ae56e14eb5fbf36e1433ea772ae6427031bd8192bcaf50dbbfaa900044769ef462aeaa2636ad2e" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-arm64.zip", - "hash": "a9612f88ae232e9dc517f02cb9a4faa605d2c0fda94a33897ba0ddb75979ee2eb09df5c49ad7ea93e90ba0dd5ff933af959a55c4ec9526eee06dbbdcd10a245b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-x64.exe", - "hash": "8a6e225a03319f5995c943b32482f73ae08bdcb20a0f8ad24a049162c5e66d3071f271cad6829202794cc7066391777caa8ad5bd3514ced213ba8093d1e5784c" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-x64.zip", - "hash": "0a5b0d4a0ac65dc0b11b104154143ef310e47b3aa92dbff32e7002d1ea6005b6444a6699eb03a5c728326c6ad97234a1fc9607972a133130727173247111472e" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-x86.exe", - "hash": "a633235f06943865b4176a919b1601d95618a4e43b3af6d374949700df68e02d0e71629c772a9b78c25bff609993d106621ed34a27856adce650bd47e9961e45" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-9.0.2-win-x86.zip", - "hash": "2b05a90bb7f59286ca2e6eb631ea49d999a66a8e2e7d3f13e12daeae412a71de073afeff9d1121b89133ed0e8b125f959b3678e5c4fdfa7639ad6eb0ff896762" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-arm.tar.gz", - "hash": "9008fec9c3cc98b9608eb6635f73cb86d37cb721d6f4ba3dbb8eaee4d7adacf832cbef6c223320895656743a82b5a81209c78936973ba469e551dbf05bc40ce9" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-arm64.tar.gz", - "hash": "8387f486d692f1299cc08f33c57e647000f986e6a69ccb4b426b6a207be28a0b5b6e636bd0d91fa2d9452d0c0bb00e48179e965612b7f66641884430675130e9" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-musl-arm.tar.gz", - "hash": "9240868535b83a81f2dff1226be734d5f4d31095988c286455679e1b56a2ba7a56cb7d30d4c6f74d645024ed2526a2d5a2a06dae4194b2ffc2d86a8fbf2a42ef" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-musl-arm64.tar.gz", - "hash": "cde805a00d9db6de6e57fb573f392df8bcd2f21ef029a6ac22f059b85af635cd4553d9d749d6391b637a9958f3cea3f6430b3c575d217c428758330f864e2841" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-musl-x64.tar.gz", - "hash": "7257c9093bb4fe4ce09e2169ccaa8500dd23008464aab7ae50f57e7ec187d8a0a3fad8c8d67fa0561801bce59300839f0d2044b0b4232b0e320d1305662fa465" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/aspnetcore-runtime-composite-9.0.2-linux-x64.tar.gz", - "hash": "b819c4421c1110ecadfa4f1e790efb14d9788e7456be016d26023b993dda40c47f22e356483c5c6f00d0941e0daea8cf2c5fe6aa405c7422ec911a46b81b552c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.2/dotnet-hosting-9.0.2-win.exe", - "hash": "b275c7f67f46d8d65da5fd07dadf52ab544d5f40aad02c12dc24c1460b8a92b6b5ba418101c4a5e29c29e547eb3c1c794e40fb8531a5e4d35233fdc8e12312eb", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.2", - "version-display": "9.0.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-arm64.exe", - "hash": "5c086ef4d49e510319bed586049d443c4861dc2b826f531e992855c0abe9818fd60d6ed5cb87a9ea3b21bfff76190337470428cf08dad49c4bb6a77afc4792fa" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-arm64.zip", - "hash": "5ad933a83adbfa72ffe8d388b6e9902ea91c977f11dce9ae7a6b033fc7cb5371fefa1ad8f9d494e291ea68e97bcda1927bb560854e479b716b08cb63bd1fb61f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-x64.exe", - "hash": "60958279f9ff96cc953ed6cf404d8deb68e554374d08dc31e8b62a226ea67ae13d6c9eaf1fb44f783fa6241862e83d1cb8c21bbbadfc9386200fbb0345714be9" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-x64.zip", - "hash": "7929c2a718eef9db6964b08657dda04e6ac2bd86a60d756b0c4497cd68209e2f7a41ca7f7ea163748870c6e86e4a2f4234675afa893f2d20db5a9d8724a9e683" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-x86.exe", - "hash": "798b3e13f0276ccdaa4c593c28e83d8c90652d454ffd0e8fe878bfb44b6485a5b21cc5a93eb0c72586d170b3632283cebeaab25c70c793eff30a73e6369c819f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.2/windowsdesktop-runtime-9.0.2-win-x86.zip", - "hash": "d868b73dbc79a36eff3500419fa0a46154fee80692c1dbfa8873ca5cd97aca49e18352d18e93902754f997ebdaa0999d52d4b3b50e587b6ba9378c0a4f90cd5f" - } - ] - } - }, - { - "release-date": "2025-01-14", - "release-version": "9.0.1", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2025-21171", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21171" - }, - { - "cve-id": "CVE-2025-21172", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21172" - }, - { - "cve-id": "CVE-2025-21176", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21176" - }, - { - "cve-id": "CVE-2025-21173", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-21173" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.1/9.0.1.md", - "runtime": { - "version": "9.0.1", - "version-display": "9.0.1", - "vs-version": "17.12.4", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-arm.tar.gz", - "hash": "b1cccb86da9912fcb816413718e264d899e9efc42a19fd8a6ccb8265b65ce4fe8c878d0b8d5c0633b1e0e4b2ff3ee53313a66e3f92c3b153fbdfe3044f1bcc96" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-arm64.tar.gz", - "hash": "38399b6139f72ef1d836e418455494a80428bf41f3aaf2351749ff144311766487533d5a3c9bd359c189b9373f24377ae886827f45272c4019e22b594773b87b" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-musl-arm.tar.gz", - "hash": "ac8a7be3ab0895539813c1f67c33aa93ee72e2ac7f2d88ee3ca21f14479e11a4064cde9a7e15a2944222b8d7c2858ddd39de9f6c2d278b4129f5e3ba8b9c38e3" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-musl-arm64.tar.gz", - "hash": "cf6865754e3c28b63bf4e73db95a2079028b9132ffc6bee4aa7af03ee15c7560a13d07260965833b43985d8b5e2f50a776ff17bf5343605b1c1bc239ddaf3c5c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-musl-x64.tar.gz", - "hash": "39bc73be712afcab41425c2e42aa5098133cf9a2080f91d4c65f274c2c6bc6f812793a17f8ed6b3a5bcabde4cc5ee5be83dc9bef9d3f3b10d79d0d3f00b4b55f" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-linux-x64.tar.gz", - "hash": "d4a31944a5ab063037dca5141dbc8466d0c894b8d2560256782bdbe5a8e86585e8c4c789c40fbe51d56b3853e15adba0985bdc6ae91c85a763565316e1c3cfcb" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-osx-arm64.pkg", - "hash": "8fb808f613f37cddc61c43d11c0265aa71394266db0529d1c6f806f2c79c40ebb43f6dde0f4246a0feb06da276564a2c37c9bec265950dbe61c4d16a063a4639" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-osx-arm64.tar.gz", - "hash": "f65f650ee3c289ca092fa151a3d9cf34fea2f5426f09882c194fe71655ecaf2a681b2d508b9c7849d6c908ca679625dc48171d00580cdff7f981f0518a843c65" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-osx-x64.pkg", - "hash": "f9d040bf19abfc79fce730f0fb50114b8002dbafd4dfa8e5315763cc342d85c02e34637e135f26168fe809bf3fffd54bfcf2d67ec79bf43365cc4da2dc5dc4e7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-osx-x64.tar.gz", - "hash": "b997c2c0f0350ef29ba6e865ac09ebecb1d3632e2a7561b5abe23bd0fb6abc8c0ca7388d6cf17c59ca87dd8168604ded6839a7b16cea1afbe36ca57234515e1b" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-arm64.exe", - "hash": "3d866122fe7b560fce9d8313a37d2eb247e3e375079f456099854fdfcb5ab5c453b762ed347a48f23c56affb2d9cb9a4b92975290a6ef517fd69a6ff849a8cea" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-arm64.zip", - "hash": "2127e5064f6d446c4bf30610f48ca748eb67d6a8dcce55c22095f7e59720985339b07f64b887dd92ba5ed20bff10ce0f9fda69018da49e4cc2e30516b0769639" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-x64.exe", - "hash": "1031c5c76dbc8a5605354915a2f5e4c7b0d1a6b666ff6366589498f5b20f8a41366449dfbcb0e9181e8e79f42230a87eeb235bfd1d41b1128bf9b76bcdb4f200" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-x64.zip", - "hash": "30b880c3cd6c39355e92b5422e8c044a26fba1da15b4f1f8a89dc4622962c8a3537b075064c33c8493d8bbc909ae8c135a5533110080e95ef31e3407eade291f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-x86.exe", - "hash": "191a9a61e8d6692b6d35a176cbcb7a9659128c646289977297744c64c98f4e18fa02751d1912e24a4450dae8ec459e7856a73271440a8abb7e9d479a23f3cdc1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.1/dotnet-runtime-9.0.1-win-x86.zip", - "hash": "b0914634b4b29230a000e0b00005992eb6e37094862e2d0a9e0975b366dad47455d6d26aeefe953563091f25538bf00ef9d74b8c01eca7f0ba6dd2888163b797" - } - ] - }, - "sdk": { - "version": "9.0.102", - "version-display": "9.0.102", - "runtime-version": "9.0.1", - "vs-version": "17.12.4", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-arm.tar.gz", - "hash": "2c4c69d46c3e57ed990518a9d82963665d835c66a57da54b9d21e22c2a20e8018020dcb190eef54dfe68c001fcce385361eb2bd29896311a1683599ff9e6a777" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-arm64.tar.gz", - "hash": "cb78931dcbb948a504891f112f11215f2792d169f0a0b53eaa81c03fc4ba78d31a91c60a41809ae6e2ddcae8640085a159e492035cedfda68d265bbeb4bf8b2e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-arm.tar.gz", - "hash": "e363e3d4edca93830d18bcebd41e01bf2856b095ae70e1a24b0533abb0a507e4c1f1542ff3046c285689318dac7e2b5c71a166bcb5933a8ab68d800bf3eedf03" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-arm64.tar.gz", - "hash": "5da98e46c280e21c3734a0c9081e7ddb78ad62775a51a129b42a6f021330d263a875da2f44a7aafe8156e7c9ae0f9bb21b502057692b360f2afe0882f0e61132" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-x64.tar.gz", - "hash": "60e091854d17da9a6011569f0a4819eac72ce6fe06d01757feeb83ad56c17645fa438257631ecbbf6ee94ac3a973eff9ad4d3e12deadda3eb41c1b69ca8d5308" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-x64.tar.gz", - "hash": "f093507ef635c3f8e572bf7b6ea7e144b85ccf6b7c6f914d3f182f782200a6088728663df5c9abe0638c9bd273fde3769ec824a6516f5fce734c4a4664ce3099" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-arm64.pkg", - "hash": "bf5759734f7aa010912e4806d1d7bcb86d635f7d1573e6bdc00eb5c443f64a43313ba0699ce249989b855b77d52b0209ad331cbec7a1493492d684f026d1d267" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-arm64.tar.gz", - "hash": "13632c9e58d8fa46f191256d180ed19089e08b242881825dd3682f082d65bcc6d9756629fefdab609c11265b6043dc11635263fe8761339b72d36608acb43574" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-x64.pkg", - "hash": "25cf5bf146803d64a51b1fb6dc501edfa4cb8226531a70e5d651f2dbf13968a3a70c54434c7d65e2c5b12f58c358b35a97dff43931e54bf0214c6e5f59abc606" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-x64.tar.gz", - "hash": "023e910b64819991831aa0e530443fa985fa673920ff291541ad7b7a4a532e20f5ac89f9a91b2e956cf69b3821ef1369828cf46c544e183a85425ae4b725e187" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-arm64.exe", - "hash": "b9b78e41a3ecb4ea017471e8213ecfd1b0e0ec6504b74fa0fc4c8c601468fe9e966b76ce173b0d124478a5430d940408ee8f379725988bb3e0998054357d7239" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-arm64.zip", - "hash": "4aa7343ab96b0403d9d543d1e2f11f8f10dbc5ebeb60f5be1dee455fd878c77f24e1710de3fc85ad0850d3913680f2d2605121db934a4ad6f969e73d9d6ee334" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x64.exe", - "hash": "91505782b13937392bd73d1531c01807275ef476f9e37f8ef22c2cee4b19be8282207149b4eb958668dee0c05cef02b0a6bc375b71e8e94864c3d89dea7ba534" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x64.zip", - "hash": "c3713f4db98fec9bcbb5be1378e7505a49cdb362e20e060045dc8e320ebc62e0f422e125efb9e966e957ee64e33219dea9b42c18ac5b8e51dd3648e5aa1319c5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x86.exe", - "hash": "fb043c6deb487a743f86caacdd13d6dfd8a5239c40b54df99e6bdef8b9567289bfce715a8bbad452500c445b487b5d2a0aaaaf1e1065b08a0a23a6e2c98419ed" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x86.zip", - "hash": "898229b1c92ac1925d7155036755d451afcd52f39f4f204554918c7b0d16a78cf0ec1df06208d40c8d14ce43d8cf66107f9d93a5a3c4e62801d7fcc340a73fe5" - } - ] - }, - "sdks": [ - { - "version": "9.0.102", - "version-display": "9.0.102", - "runtime-version": "9.0.1", - "vs-version": "17.12.4", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-arm.tar.gz", - "hash": "2c4c69d46c3e57ed990518a9d82963665d835c66a57da54b9d21e22c2a20e8018020dcb190eef54dfe68c001fcce385361eb2bd29896311a1683599ff9e6a777" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-arm64.tar.gz", - "hash": "cb78931dcbb948a504891f112f11215f2792d169f0a0b53eaa81c03fc4ba78d31a91c60a41809ae6e2ddcae8640085a159e492035cedfda68d265bbeb4bf8b2e" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-arm.tar.gz", - "hash": "e363e3d4edca93830d18bcebd41e01bf2856b095ae70e1a24b0533abb0a507e4c1f1542ff3046c285689318dac7e2b5c71a166bcb5933a8ab68d800bf3eedf03" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-arm64.tar.gz", - "hash": "5da98e46c280e21c3734a0c9081e7ddb78ad62775a51a129b42a6f021330d263a875da2f44a7aafe8156e7c9ae0f9bb21b502057692b360f2afe0882f0e61132" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-musl-x64.tar.gz", - "hash": "60e091854d17da9a6011569f0a4819eac72ce6fe06d01757feeb83ad56c17645fa438257631ecbbf6ee94ac3a973eff9ad4d3e12deadda3eb41c1b69ca8d5308" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-linux-x64.tar.gz", - "hash": "f093507ef635c3f8e572bf7b6ea7e144b85ccf6b7c6f914d3f182f782200a6088728663df5c9abe0638c9bd273fde3769ec824a6516f5fce734c4a4664ce3099" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-arm64.pkg", - "hash": "bf5759734f7aa010912e4806d1d7bcb86d635f7d1573e6bdc00eb5c443f64a43313ba0699ce249989b855b77d52b0209ad331cbec7a1493492d684f026d1d267" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-arm64.tar.gz", - "hash": "13632c9e58d8fa46f191256d180ed19089e08b242881825dd3682f082d65bcc6d9756629fefdab609c11265b6043dc11635263fe8761339b72d36608acb43574" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-x64.pkg", - "hash": "25cf5bf146803d64a51b1fb6dc501edfa4cb8226531a70e5d651f2dbf13968a3a70c54434c7d65e2c5b12f58c358b35a97dff43931e54bf0214c6e5f59abc606" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-osx-x64.tar.gz", - "hash": "023e910b64819991831aa0e530443fa985fa673920ff291541ad7b7a4a532e20f5ac89f9a91b2e956cf69b3821ef1369828cf46c544e183a85425ae4b725e187" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-arm64.exe", - "hash": "b9b78e41a3ecb4ea017471e8213ecfd1b0e0ec6504b74fa0fc4c8c601468fe9e966b76ce173b0d124478a5430d940408ee8f379725988bb3e0998054357d7239" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-arm64.zip", - "hash": "4aa7343ab96b0403d9d543d1e2f11f8f10dbc5ebeb60f5be1dee455fd878c77f24e1710de3fc85ad0850d3913680f2d2605121db934a4ad6f969e73d9d6ee334" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x64.exe", - "hash": "91505782b13937392bd73d1531c01807275ef476f9e37f8ef22c2cee4b19be8282207149b4eb958668dee0c05cef02b0a6bc375b71e8e94864c3d89dea7ba534" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x64.zip", - "hash": "c3713f4db98fec9bcbb5be1378e7505a49cdb362e20e060045dc8e320ebc62e0f422e125efb9e966e957ee64e33219dea9b42c18ac5b8e51dd3648e5aa1319c5" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x86.exe", - "hash": "fb043c6deb487a743f86caacdd13d6dfd8a5239c40b54df99e6bdef8b9567289bfce715a8bbad452500c445b487b5d2a0aaaaf1e1065b08a0a23a6e2c98419ed" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.102/dotnet-sdk-9.0.102-win-x86.zip", - "hash": "898229b1c92ac1925d7155036755d451afcd52f39f4f204554918c7b0d16a78cf0ec1df06208d40c8d14ce43d8cf66107f9d93a5a3c4e62801d7fcc340a73fe5" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.1", - "version-display": "9.0.1", - "version-aspnetcoremodule": ["19.0.24346.1"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-arm.tar.gz", - "hash": "fa75d8d5ae99ade0d1ab90018839fe3f5ddc4e7b7461715caf2b0bf7a88c8e86e1d4f10ab69703d2318b289c0700846e2155746d7bb1ace3d2d12e175ab18be1" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-arm64.tar.gz", - "hash": "e37dc1445e53c00bd950a531fab83354defbbe06c6f73af4bbef20bfcedc0483a98f478369a7bc7d7e52e35b2b33ad73781e255b46900d831e2770cd445d69c5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-musl-arm.tar.gz", - "hash": "3ea55cc5098dc08909a385219fad1e38635f6eef6cd66ea526b92dd57f765dc348380422e5e0b9c8ade286e18e713caa4b7ff2d06a23c3fed31b8b5c91d2dc6b" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-musl-arm64.tar.gz", - "hash": "e9a7e257f6b09e48c522b725be8ab498e57189d6687f840a37ab9fe4192e985bddd99a663418c5d5d96ee7c7c2b9f70e08f786aa4a1b207548586bd3fcc3710e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-musl-x64.tar.gz", - "hash": "d3f609184959849f7524fdfb55c5cf9a8391d0a773483aa6659d9baa152656835f26c2fe9ba322e718a8eb7781fb996eb4ebc6953beaf6fdfb5628ef31bfc853" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-linux-x64.tar.gz", - "hash": "e5fc3093aed5756deae3e61f98b9f4bb0c847319db30cbd1668c2511e06529c2f6a5e1917ec776fe2b36a1f7bb7e009fc925fee57f87696a8d502a6c8f5dc613" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-osx-arm64.tar.gz", - "hash": "b8ab3899b10b871159b01889694484cc3d9b3ae78a159638d68649a22c3f3328b92c435c5bcdf49a86bc488bbbd0fca7143f6f664f6594c552423c37ead99998" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-osx-x64.tar.gz", - "hash": "4aeb0943877dbf935f6554c637d2aa18f8ef22e9692e6cd3d716dde2dd5411e4881767cbe9c554bd8ec43c209a86a26194c2618c60d115ba0638e92e80423cc0" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-arm64.exe", - "hash": "e6e9a564919a63ab268269610b65dd47a03770aa1f4f9fcd4b4f3c1363400e4037eaf4f614e337741abb44c8d97c092efcf63bd200dc05a5686accf97cc1e447" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-arm64.zip", - "hash": "52c69b68f22a3fa1251716e96a64102fcc97c887ecb3c9a160c59c70e625b2ec8a7ef4f71626f522274a1e5f4c1286bb58b8fa31d4605ca4b3a239439e46472a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-x64.exe", - "hash": "82b4237d0589a70ffa5ca37c2ecce6c9548c839acc2215f218e27572a161da7caacd3857553d5a4c331e3f6a3aa3e468c6e9de802dbd63f2dd5c54befb9b047b" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-x64.zip", - "hash": "613492bec0899bc451b11c572024feca2e068a471f2275b55b276c0eae85a695e2b7582b07101b9bc75e32cba6c198dc50ca65df0564e1c4c0241fe45db60c7d" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-x86.exe", - "hash": "1a93e0d6df3eed98fc46ff5877fe7796f2aa4e01b3dcfb1b566cc68dcd3bcfe400e556f7f82fc99c1c53af7d496a319ee54dc67f01ed7ea43ea8a6a555813134" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-9.0.1-win-x86.zip", - "hash": "915335f60d3ef189c599372c2043b9a115cf538a22f3f6297070cab2913a89517ca69ecbc7aa2a600c8f0ff5ba86d77e992d3d2cb5d5d5eb21b8669e7694428b" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-arm.tar.gz", - "hash": "ac2c004657e3f1c65d1b338272aecd16445b5130eab9dd1229440b0bbb29b9d2a94ed7cb4f2d5d7325dfce8b19ea64da3008403d4b18cc251781d6543bd94052" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-arm64.tar.gz", - "hash": "28cafe4ca6061397a1eafb21ee0ce5fee850c4368633ca16773208620ac47a6b94f35a0890740112118743b92e6652e46e27eff0b8d6a8a053ae4fd9af62f226" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-musl-arm.tar.gz", - "hash": "46deba46b4458a3546da4db8118798d8baf5a230f1691c9a9745771a80f48a50c93a0ea56d0348fdbbdd9952eb397f8e1153274e0aeccb8e1d91f68f700f30cf" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-musl-arm64.tar.gz", - "hash": "5de05d1c2a12a4276d788295a78484360f2a65a99dab935469696bc8588d8a23a10ccdbc777df9dc9445dda7541e33f4f583ef7b00d06cfbcdfd43339cffa809" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-musl-x64.tar.gz", - "hash": "fff2915b8bfe74fd4d882ed2d0a2e9d82c174e6ac186cfce7b28f87ef3043145e19d9be7f60b90e9af7b6532ee75b3e527a360f2fac4574e4b248b3ce3fe4367" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/aspnetcore-runtime-composite-9.0.1-linux-x64.tar.gz", - "hash": "ce1034cc058d68869edacd5ed1feb8ff4a3e5a2931ee057789413da7fe17ce484ea563ab9f38a7d2c2d53d7a91d47e32680da7ed0953f81ff42b56489b8e47d0" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.1/dotnet-hosting-9.0.1-win.exe", - "hash": "aa468f04071201827889d97bdf4c899bde5dd5ef9590b368761a40d5bf1db75ed7e647cc8580bd0f5676035e35d52c2e9b687f2dffc2995a372326f786145d6a", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.1", - "version-display": "9.0.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-arm64.exe", - "hash": "df2c1a51ef9b1118b7a5f3cc20df25b7616b3340b62abcb2cebc383ec188ac2e955bf4804f2066a0848614b249f2e3149751a932912d4a6a12383add69817806" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-arm64.zip", - "hash": "c62e4586129b9597cc8c323e6ed88e43ed6cf84836f33b2c86a30be25b8eb2d8ebeabcc50aaf16233a319d052d5e277c5bee59a541a811a94334f83d040b02d4" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-x64.exe", - "hash": "4ad450ba0f0efed458a07f8d1ed8c5e75b78c349d6cd2b3374b190f878b3af80119e6797861a5ce2f9ad61216fb85ed046bfd905bd3006e940bd86bc0164ae46" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-x64.zip", - "hash": "1256825e6d82cc05c19ae006f64171f63ae1b9114fca9d40666e665460c9a4e3d48a8afad1fca15c0b94b16a783fdf3c455298fe599bcd5a2c3509f9499389be" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-x86.exe", - "hash": "b67c00b76ed6a601ee50cdc84126cec50d4f8f3d39f0280360555b600a38220ad683290b5fd5f3fe5b9bd6984fef8ce2f39f7ba82d417fb85b3801e41586911f" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.1/windowsdesktop-runtime-9.0.1-win-x86.zip", - "hash": "15fe87903087a705759ba6477cc9e4ad841c2ff44bab3583e56fa06d7daa3c25de1bb91da5bb2f91da996443704fcb459410ace7563ecb06dc107cf292820eb3" - } - ] - } - }, - { - "release-date": "2024-12-03", - "release-version": "9.0.0", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-43498", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43498" - }, - { - "cve-id": "CVE-2024-43499", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43499" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/9.0.0/9.0.0.md", - "runtime": { - "version": "9.0.0", - "version-display": "9.0.0", - "vs-version": "17.12", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-arm.tar.gz", - "hash": "fab552df6d884090aba1f658c8812b5369e9bea17e6a1f905145cde512772b57db5d5cf586c6c2b7f2e56a8cb83c206f0cf7594bcf42d32844b8103538bd883f" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-arm64.tar.gz", - "hash": "4f9c2dd544af0b8540c16352b9f01f75f828b8e4e084057a300a4dec652fb3d6532906cdd4246399cc13f16b571b17575812ec2f9c297e27bbed678baf4b2fde" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-musl-arm.tar.gz", - "hash": "97dc1ddcac177d73b517d651326ec484eac52501c506c8c837c3f9ceaf476ddf929ccece9b6dc2c0a4e7d378576fd73930a8835814690631a560642527335b33" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-musl-arm64.tar.gz", - "hash": "33523364d9310b75d9819a4866b120c03b9ef7946bd3646b15930e37ff1e211de294c8a94b4ad6c1c0f7d291cb70601a4188e396d4252f5767a36a6dbe68502a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-musl-x64.tar.gz", - "hash": "9c33d73a898fa9b4e84ae1844468b69086979f7c2c8ea6b32db0fea62a4014513cea0619025f9edb23e67ab4ae4e2f2725d1d9bb892858bba7dfe8ed17aee799" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-linux-x64.tar.gz", - "hash": "5176bd68637646cd36fce7a88f83effe1065fb075e6d4a46b8be3c33d5a8394740577f0ed4f8b4fb13fa69fe83b229eb55ab7f45caac90849bf0392a670ed5af" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-osx-arm64.pkg", - "hash": "e0de96a405b00f68922ecc02db7bf52b9ddaf6f3491b7d7cf821e2ee6074e870cb282aecf9fb3d13519cfc07bb0eeff94551791ceaa4a031596bc5bb13cde41d" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-osx-arm64.tar.gz", - "hash": "66c487ae2f5fc24d5baafdfb4286e23737664bd3efc181abc31cf5ded60dc22e4ba1791744a506da343e6034b1fcda2dee761d9e71229945a177b7508ba6ddb6" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-osx-x64.pkg", - "hash": "7fadb1f8a039efe22f66498919c58d4d8f24e6b75bb1035d15edc997229d3c52e4d66ec972ad61b846bbeea99e7228ee21185cac9b36cc0819426f2e429ba9c6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-osx-x64.tar.gz", - "hash": "1ebd6a97ab744fe752068639d676b145960d820501c792751404507e8d82cd9268d7e239c437f9de73b08141c3b693bb24eeb3cf3baf30e3bf33b460bb95d4b0" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-arm64.exe", - "hash": "7ac11f3b388170ddf8d2248aa719bffd1202f3946a1bcf0701bdd8988d030d0ea2cd321eb2e6150e30bc0444a8af0b5a9ad5db3ac58b15f4338ce34193ba470a" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-arm64.zip", - "hash": "4f33049397341e8302fd01ece043fdd1935a7dbd75007ec5739ce5eb5c205cac4bc1399550907f71f2e4b218e40297a89bf5d605882f5544c4deec37f9b0d026" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-x64.exe", - "hash": "97334bbe82e2d6db090279b178d0bdfb1d675e0fcd9ca0c951bbcac05598b0424f66eb74599eb8d1a6790699a931974924f79815941944f440a261dce2cd9ca1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-x64.zip", - "hash": "23ae6ce34fe1271a5a48675a9cb7ed728af4be4014a7ee4a6a60a84fc23e55b50a5cafd7ec20197bd73ee47901e4239e0c4cd8fd0f5deeb34cc3da1de3960e46" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-x86.exe", - "hash": "7d744cedfc81f911b51ac05741a77953a18d1415bc7c1667fd8fa8e89b4a0df597046f25a82a960bf65e7e7fe453edf87aacc25abd6bb05d0b289adedd6b2ab1" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0/dotnet-runtime-9.0.0-win-x86.zip", - "hash": "dc345e64174a9bec4bf9c27d6a80c946aec3a418a7ac42e2ed9c20737c014cb0b1dbce3bd33eb6cce211ebf60ddcb0e13e1d60051017e4c0c11bd6ab4fda1c80" - } - ] - }, - "sdk": { - "version": "9.0.101", - "version-display": "9.0.101", - "runtime-version": "9.0.0", - "vs-version": "17.12.3", - "vs-support": "Visual Studio 2022 (v17.12)", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-arm.tar.gz", - "hash": "cdf8989d02e4a6aa21e68081e956318c94c601583a757d5eb433919ebe7fa518f207aa0f58a09ee28cf95f445c486386c229de69891433a4a29145ef596aa1a4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-arm64.tar.gz", - "hash": "c5f9c17dded5101cb4b65ad1033ae4d82fc5b04303bdce4eb61a6dc47efa84202bd726d05caf117e536a01bd78ad773b8d23cbf43bc655e5eb9912b12078e0b1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-arm.tar.gz", - "hash": "7e6560e69b83b9e64961e91155f8585421c3a2ce76897871d386492c623e9280f66f2284dc49362bc38739e48172523ce54b2269524437394ea3e908728a0118" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-arm64.tar.gz", - "hash": "6a6d6a6d6dfbdacb48374c0ac9bdb1c93781f3970c8778b0bee1f159a22b00176868264e605331fef833cb9fed829b4ffd414276d0d1140a8b0e257195c2f374" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-x64.tar.gz", - "hash": "3f4e14fb7b52dfb57b1e31cb5973e6e0a338f7f030f12b3082d3b55f12f9587ddf4926a7c5fcf86b7671397e44f8e5c20fb949d70e9a7dd0dc27be73a548dffc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-x64.tar.gz", - "hash": "91b37efd64242e5f1f3c2025d183eb34e17f3a9271c5602f29ddf794845eee103723ef955ed869788ebf5a731e8ddc69328799c92c64cb118e1328d259a6ad01" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-arm64.pkg", - "hash": "52f0efce397b2e3ab182a98e7bc69967143399c8ec512687f7893cf5ed85784a9b1ce181980827c6fe0a8866755eece4ef4aafc01d10048f01117164b186782b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-arm64.tar.gz", - "hash": "c6608ed280e5a76c46ce8f9b06b8c7014c7bdb54a9795c4585deb8e057db4d524037e4e82f9caf32444eede427c9cb5fdbb722508f389ef89a864f0bbae4766a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-x64.pkg", - "hash": "3d5567891ceed07837d7f00bd81dd5dc73accd2e007b6adc12218bd5ce9f7d5563e64ede3e49bf96a532d282ca764a72b9ca4d8cf9aa8ab1764e9b4fa55a59e1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-x64.tar.gz", - "hash": "0c13e3081348dd2bcf2e0c6b84bc375f806550f6c389b1fca61767ad6b9004300af7272de199358f32afef295513ba5ec43f5f8614d12437bb884be8eca4de01" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-arm64.exe", - "hash": "d09cb91e49313e7ae891d28c8fc7841b2a92cfcc3f610b249b9ef81230615335daa30ad210d9db6942ac1d02d446c8d1cf9d7cab0daff543221bb4e6697cd3db" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-arm64.zip", - "hash": "a14fec6786c28523795f98c074ca8da972860134e3549f5be20c1bf41a0b8b946f3ea1251196c356d4d869591a333203401d08323ba9e498fe8e6a5bde1e3011" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x64.exe", - "hash": "6c1899452dc855698ccc2a9928301352e5700e7829f0d42a1e567b51f08089affc67801ba7cd49d7e45b4a4dcb79cba54561163d64c27c3f36108737b3bf9f62" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x64.zip", - "hash": "53f16be2079ed85d230a6c98fa9220046930ca0eaaf1f928b63cfae9fd9a0a5ad87c60c07833ee16dedfa582ce5d9ae68b5b4292aec56fd44203fe9e7bcfba92" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x86.exe", - "hash": "14d22475bf0d13b01d36f472353239de0351454f3b570d0629f6003aab55032ff575fae237e20d2e9e3d45a9f6a884c6d1330e025ebcf22a8e19d68d7f64c149" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x86.zip", - "hash": "c04a7c2601d2d21678f2f9833973bf9b687156520044f13d7092c77331f6e29fcad808443d6001aec1f76233990e523aeaf3516b0084603a848da934f3e78d6d" - } - ] - }, - "sdks": [ - { - "version": "9.0.101", - "version-display": "9.0.101", - "runtime-version": "9.0.0", - "vs-version": "17.12.3", - "vs-support": "Visual Studio 2022 (v17.12)", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-arm.tar.gz", - "hash": "cdf8989d02e4a6aa21e68081e956318c94c601583a757d5eb433919ebe7fa518f207aa0f58a09ee28cf95f445c486386c229de69891433a4a29145ef596aa1a4" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-arm64.tar.gz", - "hash": "c5f9c17dded5101cb4b65ad1033ae4d82fc5b04303bdce4eb61a6dc47efa84202bd726d05caf117e536a01bd78ad773b8d23cbf43bc655e5eb9912b12078e0b1" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-arm.tar.gz", - "hash": "7e6560e69b83b9e64961e91155f8585421c3a2ce76897871d386492c623e9280f66f2284dc49362bc38739e48172523ce54b2269524437394ea3e908728a0118" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-arm64.tar.gz", - "hash": "6a6d6a6d6dfbdacb48374c0ac9bdb1c93781f3970c8778b0bee1f159a22b00176868264e605331fef833cb9fed829b4ffd414276d0d1140a8b0e257195c2f374" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-musl-x64.tar.gz", - "hash": "3f4e14fb7b52dfb57b1e31cb5973e6e0a338f7f030f12b3082d3b55f12f9587ddf4926a7c5fcf86b7671397e44f8e5c20fb949d70e9a7dd0dc27be73a548dffc" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-linux-x64.tar.gz", - "hash": "91b37efd64242e5f1f3c2025d183eb34e17f3a9271c5602f29ddf794845eee103723ef955ed869788ebf5a731e8ddc69328799c92c64cb118e1328d259a6ad01" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-arm64.pkg", - "hash": "52f0efce397b2e3ab182a98e7bc69967143399c8ec512687f7893cf5ed85784a9b1ce181980827c6fe0a8866755eece4ef4aafc01d10048f01117164b186782b" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-arm64.tar.gz", - "hash": "c6608ed280e5a76c46ce8f9b06b8c7014c7bdb54a9795c4585deb8e057db4d524037e4e82f9caf32444eede427c9cb5fdbb722508f389ef89a864f0bbae4766a" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-x64.pkg", - "hash": "3d5567891ceed07837d7f00bd81dd5dc73accd2e007b6adc12218bd5ce9f7d5563e64ede3e49bf96a532d282ca764a72b9ca4d8cf9aa8ab1764e9b4fa55a59e1" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-osx-x64.tar.gz", - "hash": "0c13e3081348dd2bcf2e0c6b84bc375f806550f6c389b1fca61767ad6b9004300af7272de199358f32afef295513ba5ec43f5f8614d12437bb884be8eca4de01" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-arm64.exe", - "hash": "d09cb91e49313e7ae891d28c8fc7841b2a92cfcc3f610b249b9ef81230615335daa30ad210d9db6942ac1d02d446c8d1cf9d7cab0daff543221bb4e6697cd3db" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-arm64.zip", - "hash": "a14fec6786c28523795f98c074ca8da972860134e3549f5be20c1bf41a0b8b946f3ea1251196c356d4d869591a333203401d08323ba9e498fe8e6a5bde1e3011" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x64.exe", - "hash": "6c1899452dc855698ccc2a9928301352e5700e7829f0d42a1e567b51f08089affc67801ba7cd49d7e45b4a4dcb79cba54561163d64c27c3f36108737b3bf9f62" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x64.zip", - "hash": "53f16be2079ed85d230a6c98fa9220046930ca0eaaf1f928b63cfae9fd9a0a5ad87c60c07833ee16dedfa582ce5d9ae68b5b4292aec56fd44203fe9e7bcfba92" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x86.exe", - "hash": "14d22475bf0d13b01d36f472353239de0351454f3b570d0629f6003aab55032ff575fae237e20d2e9e3d45a9f6a884c6d1330e025ebcf22a8e19d68d7f64c149" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.101/dotnet-sdk-9.0.101-win-x86.zip", - "hash": "c04a7c2601d2d21678f2f9833973bf9b687156520044f13d7092c77331f6e29fcad808443d6001aec1f76233990e523aeaf3516b0084603a848da934f3e78d6d" - } - ] - }, - { - "version": "9.0.100", - "version-display": "9.0.100", - "runtime-version": "9.0.0", - "vs-version": "17.12", - "vs-support": "Visual Studio 2022 (v17.12)", - "csharp-version": "13.0", - "fsharp-version": "9.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-arm.tar.gz", - "hash": "de06e89e559bc763ff6773bcf852d915ec47f2d89f4e7065ba0800da99ab56357f31437391a77d7096e405f63318625b0cb074f6b410036fbe906fce7f3794e8" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-arm64.tar.gz", - "hash": "684450e6d1f7c711fffdbf32a2b86a932d17a51f4742bd27a4289e319c5b24f6743553fc7e0ad1c7163e448ed5c40cd1ecf4198b2e681acc4622d8e6193a5cf2" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-musl-arm.tar.gz", - "hash": "b0920f80e866a7603cea628a1130df003bc5d7818275c8a5882a31c6e4e29f07322fc5cfd87333893e4131bd96130fb2384d008cbad704022c89267d52686e07" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-musl-arm64.tar.gz", - "hash": "dae06d007327f6f53f50cb3a2884b93cd2fcbb73c756a8ac5ff673617f9bdf00093932f3a83652211fc2eeb57c271078644ef5c28a42897d8397f76d0e89586d" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-musl-x64.tar.gz", - "hash": "e2032e6b4ed99adb3a92b7e041ea895ee09c6ed2455a1f68e55ed53bd613c8c20ef4aa5c434393bb5fdbc2f5635a83067f77451fe2fd3febcee264fe077acdaa" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-linux-x64.tar.gz", - "hash": "7f69bda047de1f952286be330a5e858171ded952d1aa24169e62212f90a27149e63b636c88ad313a6e3ec860da31f8c547ff4ab6808103a070f7fb26ba99c1c7" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-osx-arm64.pkg", - "hash": "91cadc95a2dc8674a8e1fd5a8a54a6e1f4adaf1a364365e79ff69457079f5be3d0fd254325924a7c94bac531b84752bb17bb37e206b12b5b7bd43c9526ded9c7" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-osx-arm64.tar.gz", - "hash": "94dfa49652195a884f06d06ceb23ef6f7d7380fe0c4015b96e8f950b57a9558711fba61128710f9c8de0081dd91af48a90f7bd0f8b90038aeb5aeb24fb6724ff" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-osx-x64.pkg", - "hash": "b51da89b449bda3fe81e9be2356473536558ba7cfdd5c60adb765b215c437c7d753f1dd60468e519dcac859a64edaba3078b473891b95b3d4f744e55f47ff080" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-osx-x64.tar.gz", - "hash": "59ef320289796abbdc573036d0d1b4aa1919c83140b7a363174abd68be5cc0252741546a21d46c201586331f5f9211787bd19b5381b902f3bd7c226220344ae9" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-arm64.exe", - "hash": "071c44e59d4b7b58e9d0e5c8752229e5b3d6cd5bc1fe9f1f06409fa36392ef969f93e0faa0fd437c5fb8f5e525719f1b4fcd664d38c9f386b0cee1103b23adc3" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-arm64.zip", - "hash": "8e22602df5ea84a0a4234dc677d5ac3b9c077c7cfdaf8257e281fadb864ed245a38e1b93a058b3d0eedeafc6a7598d6b0ed621855f5d672ac4a72077d6c60d70" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-x64.exe", - "hash": "a12ee028f7dff8f330dbe1914534d237eb6e19cc105139ce5de69df1b4b07ee3c1a3e396574ca776a452e805052e799df14a348ace50191af514c9dc4705ecf0" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-x64.zip", - "hash": "fdc42c1b339335b3b9470401f731af4bdeca64c0c2aedf6ffda831eba0b18869f9a83855994bd9806644aeaa31e7086a9ced23319e45d66cf1a055c9f9cbb47f" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-x86.exe", - "hash": "854053f68672d922740e82849b7608ecdf63019fbcaee5970aac097a33b743f76df281e64b298c0bf138d0043aa01b3cd9627199f7fcb6a523210d6ad086a90d" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100/dotnet-sdk-9.0.100-win-x86.zip", - "hash": "5d624181cfa8a440b359645293f3508f5c9e162e0e8c14a646b13f5e5474f93d03d3813fd4c9640497b109d3917bb7f52d7fcf829f50af7fee8c55834f13a5e3" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0", - "version-display": "9.0.0", - "version-aspnetcoremodule": ["19.0.24303.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-arm.tar.gz", - "hash": "f711af1fd17f6976d98609feba32dbc8b027e3b851439ab0d5a68082ba6fa87ee3888cfd8cdd368b90fc3b3710220be2de9864ab50297e3797adc4bcbaab7e99" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-arm64.tar.gz", - "hash": "d5df4b549a59c8b9b2bcee5e0ffa9fde81fc3df74b299ab49820af6bc0ccfb89eec3714ea558ffcdd2a16821a4d1ecdcc64e9981804978ee3ff1d444b8125681" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-musl-arm.tar.gz", - "hash": "9558c873308ce275a367643d953271ac8877e0c3535fc1717cef013ec37f42177f013dd875a12719bf9d1c1533b51592cb8f87195d1e398e528ee5d0b04f7c1e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-musl-arm64.tar.gz", - "hash": "fb5255619fa0c1082020b750789e86936cc1a07b9e321297e3af336af3b7f75d425c20fae9f4dd9d76c0b04d444e1e6dd15fd545feec0f6a9137a64701ad4633" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-musl-x64.tar.gz", - "hash": "09e3709664f099b4116f8a2aac4b365247d11d0d19ecae262949de38fa9d41cc6c521a67e5b1ffecd63c610c1e9b41459bfb18f62b9d9d3b5176e3856e9ad35b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-linux-x64.tar.gz", - "hash": "1a81023f119dd5e5b0f9d87b0e3c42df89824b9fcb73192a4670cc2c67358cd018a7c9c965245c7883de468bda88c81d64a21c60f9bc68a6559d76f32d34ce96" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-osx-arm64.tar.gz", - "hash": "4aa3037e5b8b723f69d59ea733780dcecb5c8e17af924d945b369237bffad6a6a11cefbfb6db5cfb2e1f281e2385ac88e8253120b1a52f4db93186084f230f51" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-osx-x64.tar.gz", - "hash": "ea778a7aa7eecd2c46c38b187119e0afdb02532743550a4bdbc56a9125e328a089c16af74c3ffe649263f456ef26f5fc3b932f4d1f76d36a47cb419f203c6587" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-arm64.exe", - "hash": "0f5290d42c8ed3b9a8168b618a8abb6ef0dd77f006339699bda8e9a182434143fecb0da4cd1b1d48cfbb8e95212c6d5b45bdd84fa77fcf3e8299671f0827c26c" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-arm64.zip", - "hash": "6550abfc7a00c50dc90513a3ac842b6df395b9d2204ecb8268fdff18cd555c71ca490b68c126c1f2d4caf4519eaa913ec0ce5601388d3c6c221463aa8a204a4a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-x64.exe", - "hash": "604b63941a063087d84d3bf92513cf3b2237faa11995b2854e25bde43181487d42f05bd084b412d0abfbec801b3c6c5dc6ae03df339c1a04bf08d86a9bf8fcfd" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-x64.zip", - "hash": "9c48f8b05fa2476b0afd4983e789aabc2ea951055c617c7eb9617df92da01242874c0ca8922794cce6d63799fb87540ec7560e0926f78ffd6def73f8afe508e4" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-x86.exe", - "hash": "ea65734b83c7443d4d702cb80a255a897a9ec4ed90e986dc681b124decd1fe6b55385e7f5beae59ff23341d9747d00cf4f8e60cf657c66243ad7e5cef9622e4b" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-9.0.0-win-x86.zip", - "hash": "c1b966542699932a3bf39e48c19a97b5d6f1513782fc8d3c94c5d6c875ccf19944bb807376570ea485dd7f04e3640c3444baa8cd449a2af43d5bba22f0a0f50e" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-arm.tar.gz", - "hash": "49360cb623d848f32520a18f3943271b2970c5b81eb8f7f7f04986795bcf0400e224957bcbb8d4a9e92e75a9f60b222818bfd748442d95257d93ec65cc6d546b" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-arm64.tar.gz", - "hash": "e7bd3d2a51957d9174bde49ed5be141534261cddd5908881e86d56c2f8ac2c207f29d91af2df387b2c6daa9091436a7c998564ea36c3f2d29e74de0b552e1339" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-musl-arm.tar.gz", - "hash": "106457de6f34a2996923a77589e841815239a760382ee525c3b714f9e6f65039d8555a5e371aaad0e89c02f9dfa5bb267cac22fbc1cd383f696facebe5b34a97" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-musl-arm64.tar.gz", - "hash": "24354dcba020e0bdbf0da867e1a3cb3c45ce214cf7dcab4d1be966c0bcba8d1701605e7681e9adf093c5d23f96574d077ca8fef9ea3d4071b7a275ab5901f86c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-musl-x64.tar.gz", - "hash": "d2f370d46fd24909015353c9488c68c526b931e3fbe5f34385a092a59ef21ebbf123ee491a896e65b3127bdd3e03349feb9c7f54e2ecf9c827d5d86da52e64d4" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/aspnetcore-runtime-composite-9.0.0-linux-x64.tar.gz", - "hash": "7771734dd826ee714a65f7d0963f81ec061992c9848c02d335e8423a676c7d9fa7b6e2fdac72280d8e9c8df712a3f7723d3113f37d9e052f7314b06b661e4dac" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0/dotnet-hosting-9.0.0-win.exe", - "hash": "07857f982392d18b0aae269fb455573a3a02dce7bd6cd9fc476b514b1792430dfb793799606a7cd7afcd80813ca269abfa5427520e9b4ac589288d6de8eb1a4f", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0", - "version-display": "9.0.0", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-arm64.exe", - "hash": "36ff3e8dd5f989c87a95b0220e618cb685104c74b4f7fcb553221983a804b67c6a1b57298830519dcd8f9233d78219adb3f1762716b83209326d25353c6bcb67" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-arm64.zip", - "hash": "b0277fe40efd961c6853dd86dcd55f5958e6c588fdd9739d690907898f44edbce6171d43293e61792af817ebe4dabf24e8021743d52ae6ee43f98010f4d3b95b" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-x64.exe", - "hash": "e48e015327598623cac9081a556f76f4d4d74c33e35a7cecbd2989a5b2bcb6575017e922883fc841e10efdec3d9577a47ed2b036b7f431d8f8442bb1066e72ac" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-x64.zip", - "hash": "b1c4a49d33cebaee3abcec44d151ba49784a5f221daaba3fc16249386fbd285a97bdd29124dc290b5615071a1f45be9bb0fd8c173626de20a0b7d2e399880d13" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-x86.exe", - "hash": "f597d55205b776391ac1aeb56c40abf5274e6473193c4e6c48982582c135db199d8e75adba87bdacca8981752f04f596105548ab9cc267139e681c7858890543" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0/windowsdesktop-runtime-9.0.0-win-x86.zip", - "hash": "c11bbfa7bcc1dd9b165c802eba633dc8015ad5f38130b85d1b0c1bfe98546ab7326d00b98008ae324c19bd8baca94826df2ec483fc87d976749c58dad36d458d" - } - ] - } - }, - { - "release-date": "2024-10-08", - "release-version": "9.0.0-rc.2", - "security": true, - "cve-list": [ - { - "cve-id": "CVE-2024-43483", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43483" - }, - { - "cve-id": "CVE-2024-43485", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43485" - }, - { - "cve-id": "CVE-2024-43484", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-43484" - }, - { - "cve-id": "CVE-2024-38229", - "cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-38229" - } - ], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/rc2/9.0.0-rc.2.md", - "runtime": { - "version": "9.0.0-rc.2.24473.5", - "version-display": "9.0.0-rc.2", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-arm.tar.gz", - "hash": "c3ea1494aed56c557406786e16dae25a2d1b09e086fa470bee7850203f3c995ff0878ba36707a11719db1e517c6fcba53b103a6987b4fda9158df536cbfd27d0" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-arm64.tar.gz", - "hash": "355cdb3ab0a01fbe23b7067916c7516b316ada360dea9b7735fe935eca1723ca1b32407eca3afa7c722bbf061990019a6d563bc3597fdf72940ceb38ae2ad04e" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-musl-arm.tar.gz", - "hash": "59e2d7cb35a63984752d296bf02a1e8c2a8db0dcbb2bbce43375f9f7ea8ded93867ce4c20b09c03de94e3e33463f15cbf9aff058a9331daf0ac504c4771db96c" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-musl-arm64.tar.gz", - "hash": "3de9320983e8e043eb5bc301e324425570b21ccf0d5eb97c3e1fde2ab97e98206d8d1784d96d6913be0bb4b8ce50c5cff956e7f8981ee0a1f1c9df227679212a" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-musl-x64.tar.gz", - "hash": "d40a1861d4e550a46d4e9104176d107eaa0a1be94cc6ac583ef331e6ad31ccaf4d37a427620300a37376c86f122a920a2b7b40b4e4ac347be2d62a38dc83d965" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-linux-x64.tar.gz", - "hash": "ba0431e7bb82accab144cf1666c470549d8102a17f260cd7e0d988923a27f3ad5c10cadd160b5a180d5bb15972143f30fdb73b687d1f8ccc02e9e9334ab8c2cd" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-osx-arm64.pkg", - "hash": "e482d903959159b3b17ce92fc562f7cc32acd3e63a143a9cb1d57eb08279e9a196e905ef94563c90529b1a1b2cfc25c48ea9cf5868caae6c54e2a6e978c4c1b2" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-osx-arm64.tar.gz", - "hash": "7b50c5defc32183398294e4cb91a59060617678408a586ce981e0f47fb833c8531b30e03fc4657a09163460605730241e366c9213c381077e6547538e356e8b3" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-osx-x64.pkg", - "hash": "e73fe0397eb8d1237d7e6a900c4b44cacb985461c1ca20f17afaf718d20fca3f5658240e31254a3ea5e48ac73a905dfff82d0aedbea2be1617afe61b5681571b" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-osx-x64.tar.gz", - "hash": "4d260dca0c229b640e90e4554b5161c0b9d95f8bb980eb53e61940be22c832849d3289107e1c8158c8189258761a27695e9a4296b9086a0d44c8c12440531fc8" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-arm64.exe", - "hash": "acfeaec4566696bb22c276219eb7690007c13c09a681bfcbb245406b9308dad1e5620e7deb4fd5af07062b2e32175cc8f3611704a7708090cb99e6e1b847a7bd" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-arm64.zip", - "hash": "34d0213403e43a89ff7499111af59793c1fc231defd9861cb999e2bd4b7aed5221cf2fd31d1ec3b926b42b4d802024bbd2c6cd676c226d90ac4392c8319508ab" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-x64.exe", - "hash": "521f57ed8f68227643e311db9449d6df16f5402705cd792147bb7d665ad6302abc4baec90792bcc5b8a42920b2f52b61a611bbfdb683dc517a531048b4d194b1" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-x64.zip", - "hash": "bf1cb18fe8cf7f42d84ff02974949b27bc311e29320ec48bd7707815f69e4ff91abce701791962f0b59a2ac6d3fd3c05db2cf49fbe6651c85e6ff7cd114c0c91" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-x86.exe", - "hash": "87c84bafa2db77ea290990e94a011c5bca3078a71a854e6862527534920dfcc6ff2ae3b13a03ca2a7578f13257ba65d4c9dd6171ec79a73971e579848beb7535" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.2.24473.5/dotnet-runtime-9.0.0-rc.2.24473.5-win-x86.zip", - "hash": "03bc4281a2e55a37b2ef18859c84c7395d427985aab1817db3ce995ca83bb69d53e8420a0f38005e1fc56bbf93fdc120a2cd71018c6db5f0f1d25e75cd30e645" - } - ] - }, - "sdk": { - "version": "9.0.100-rc.2.24474.11", - "version-display": "9.0.100-rc.2", - "runtime-version": "9.0.0-rc.2.24473.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 latest preview)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-arm.tar.gz", - "hash": "736a0e1bf7791528e6c98848517f6ce71d94fa1a5a72b1e5da2c9b572709d57964ab53b20f1e2b9fc68e2cc739cdba3b91fc08d85e8407fbbfcd0d5fbb11c7d9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-arm64.tar.gz", - "hash": "b532dcbcb47c4fd2c906018d2ec663de1719179f7c9da8f62a3f21a62e34cd2609fb7ceec89f5aedb2a35247f67f543a02c684e1692053bff2fdc4184df63f53" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-arm.tar.gz", - "hash": "a739f8d29744152d33b7b3b749386f0f513b66d1f2e363c1082bb876ded388e1cc6dd26b0f902b3bcdf9574edd3869f800b923648c3dda90dc91b76c4ad5cd97" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-arm64.tar.gz", - "hash": "2a55a8e0e31b520dd9cdf3efa80f527ae87bec3b80dba44bc613caab4756b73d1f145086489fab0f55a96688029aca14061ae258d1dcfc36ede8ee0b2a8f47b7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-x64.tar.gz", - "hash": "242c82a361d739cb997619c982047b05fa46c8d72564eab84da49d2b831beb1c5cbf2bde580df0b6855874bf1a4360a263191277d5602dcdc6a019435a00ced8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-x64.tar.gz", - "hash": "126a92bfa9ef4e70609f8b27cde0fae1b144a91af8a46de949d803d2aa1bad0285b1b9b8fc60d40206d346aac49e48709bec4e76cdf6e549f8905086003e8098" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-arm64.pkg", - "hash": "cc149335d94a79281d519745fd6c5bb3fb247cc7aa69ecc567c2bd0830dff9a327642353d4c9b84523a11465a009b0b34d990183120aae5bd1fd8b19e67ec097" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-arm64.tar.gz", - "hash": "c245685c1257295697aeac6cf169cd6375d7e725ebb8760efcebec39fa6ebf6fe3ad5b6099426f899f8a0a0332c047977de7f8432a4e6f28a34848914a925ba1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-x64.pkg", - "hash": "2ee81a99188368a44f8c2a10e366da7ceeb926d583d851c9b4b8137ed2e36b97115a1b282220cace0fe36ca07275f3bf5f0de071fd3f5a30a92c575ecbc4ad26" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-x64.tar.gz", - "hash": "118fa956dd330d0df449e14685b362e2eb7b44fbe9541b97c125d93a78dc2e530288a3ba1eba3928d305f4a0b9254c8480c0b89304187226679f95bd6f1bc75a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-arm64.exe", - "hash": "0da1f676d50005313c90940ca8896102ce30e1931dbbf900e84eddeb27c5cfd68761165d0d1adb7e5db72c0c635dd2e70b887c71d3926d37774cd940b4070199" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-arm64.zip", - "hash": "5bc7758d0be1a23e761dc532ef0498abc3d3c3c8378fc06c4cde151ae692e7dc7f059829843dcf5fef52d16a5619a599b426e056128261a5b022837cdcada35b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x64.exe", - "hash": "29091a2b4d08f7fdc77065f2805a82afae0129a6b886caec71124016843a29c6abcec828794aef1c9a73a84df3f7b7258863991f61a780ea362575da0ca6879b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x64.zip", - "hash": "9abd147e58ec166ec1fb0ac0d7499dbafc82af8bc814ca83710f4d3d2e37194c841a603f66f278f05dd4efa27aeb6515e6357e8e7d074407cc5de8944d52e7c3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x86.exe", - "hash": "42622d7145da2cd246c4490213ba0fd9e9a8c4f567a0f6b940f24029a6f342264be6b3f65ea79b46ee4048a7d74201d25ba98402ce4c245f82ee318f5442af1c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x86.zip", - "hash": "e1e7935b5c8e7635eb8d7373a3ae760943785fafa3e6ac39343a614c279a0e4d4c0c8724ddb7e3af37c9d806ec11a4e240066fc090a2bd5c21e23c002798ece8" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-rc.2.24474.11", - "version-display": "9.0.100-rc.2", - "runtime-version": "9.0.0-rc.2.24473.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 latest preview)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-arm.tar.gz", - "hash": "736a0e1bf7791528e6c98848517f6ce71d94fa1a5a72b1e5da2c9b572709d57964ab53b20f1e2b9fc68e2cc739cdba3b91fc08d85e8407fbbfcd0d5fbb11c7d9" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-arm64.tar.gz", - "hash": "b532dcbcb47c4fd2c906018d2ec663de1719179f7c9da8f62a3f21a62e34cd2609fb7ceec89f5aedb2a35247f67f543a02c684e1692053bff2fdc4184df63f53" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-arm.tar.gz", - "hash": "a739f8d29744152d33b7b3b749386f0f513b66d1f2e363c1082bb876ded388e1cc6dd26b0f902b3bcdf9574edd3869f800b923648c3dda90dc91b76c4ad5cd97" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-arm64.tar.gz", - "hash": "2a55a8e0e31b520dd9cdf3efa80f527ae87bec3b80dba44bc613caab4756b73d1f145086489fab0f55a96688029aca14061ae258d1dcfc36ede8ee0b2a8f47b7" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-musl-x64.tar.gz", - "hash": "242c82a361d739cb997619c982047b05fa46c8d72564eab84da49d2b831beb1c5cbf2bde580df0b6855874bf1a4360a263191277d5602dcdc6a019435a00ced8" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-linux-x64.tar.gz", - "hash": "126a92bfa9ef4e70609f8b27cde0fae1b144a91af8a46de949d803d2aa1bad0285b1b9b8fc60d40206d346aac49e48709bec4e76cdf6e549f8905086003e8098" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-arm64.pkg", - "hash": "cc149335d94a79281d519745fd6c5bb3fb247cc7aa69ecc567c2bd0830dff9a327642353d4c9b84523a11465a009b0b34d990183120aae5bd1fd8b19e67ec097" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-arm64.tar.gz", - "hash": "c245685c1257295697aeac6cf169cd6375d7e725ebb8760efcebec39fa6ebf6fe3ad5b6099426f899f8a0a0332c047977de7f8432a4e6f28a34848914a925ba1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-x64.pkg", - "hash": "2ee81a99188368a44f8c2a10e366da7ceeb926d583d851c9b4b8137ed2e36b97115a1b282220cace0fe36ca07275f3bf5f0de071fd3f5a30a92c575ecbc4ad26" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-osx-x64.tar.gz", - "hash": "118fa956dd330d0df449e14685b362e2eb7b44fbe9541b97c125d93a78dc2e530288a3ba1eba3928d305f4a0b9254c8480c0b89304187226679f95bd6f1bc75a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-arm64.exe", - "hash": "0da1f676d50005313c90940ca8896102ce30e1931dbbf900e84eddeb27c5cfd68761165d0d1adb7e5db72c0c635dd2e70b887c71d3926d37774cd940b4070199" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-arm64.zip", - "hash": "5bc7758d0be1a23e761dc532ef0498abc3d3c3c8378fc06c4cde151ae692e7dc7f059829843dcf5fef52d16a5619a599b426e056128261a5b022837cdcada35b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x64.exe", - "hash": "29091a2b4d08f7fdc77065f2805a82afae0129a6b886caec71124016843a29c6abcec828794aef1c9a73a84df3f7b7258863991f61a780ea362575da0ca6879b" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x64.zip", - "hash": "9abd147e58ec166ec1fb0ac0d7499dbafc82af8bc814ca83710f4d3d2e37194c841a603f66f278f05dd4efa27aeb6515e6357e8e7d074407cc5de8944d52e7c3" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x86.exe", - "hash": "42622d7145da2cd246c4490213ba0fd9e9a8c4f567a0f6b940f24029a6f342264be6b3f65ea79b46ee4048a7d74201d25ba98402ce4c245f82ee318f5442af1c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.2.24474.11/dotnet-sdk-9.0.100-rc.2.24474.11-win-x86.zip", - "hash": "e1e7935b5c8e7635eb8d7373a3ae760943785fafa3e6ac39343a614c279a0e4d4c0c8724ddb7e3af37c9d806ec11a4e240066fc090a2bd5c21e23c002798ece8" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-rc.2.24474.3", - "version-display": "9.0.0-rc.2", - "version-aspnetcoremodule": ["19.0.24268.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-arm.tar.gz", - "hash": "d6aaa61df66bc42296350f56a13e4f5a5b56770e62cdf4bb2a647f80db3bca632e7f8b64dbb2d2b8426e862edf3ca75bebcfe9db5f6a6e94ec08557a4f7a461b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-arm64.tar.gz", - "hash": "b6de668ce8714476be78ae00ed66027f3a5b06d95c6768ad6b3eca4d0f396c91843267c0e8c03160b709a7acdcbc2b09047f1ec8d46309d40c3d31f849cc981f" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-musl-arm.tar.gz", - "hash": "fa6c236044b167dfa0e389aaf3b8e42d1429f193af014b9ae6857e2dc1b64a65a8028c6ac17e83dbe5ec876e68ee9cb853dfe019c88b3a9fa15fcc6aa0b017f8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-musl-arm64.tar.gz", - "hash": "6303def8508ee4df979e6ee6801077da7d0517d3203bdff74a36cdbae57089d7c72691eda00a5daa740b283190950b5ca8ed0fa1112b7d2ab11c145909de9199" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-musl-x64.tar.gz", - "hash": "9c41aa3bfca63c948ff873cc341a091049841167e644cc14f1f543fea3be75b10808c3848303916ff3472003accd801f7bc81fcc86d92c1a5c9ecd29d9bde3ba" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-linux-x64.tar.gz", - "hash": "9370c26174cd7f1b2fef58e0a53041c94b7d5412f15ea5865fbc653a65b148b1f92e7992f147610a6ca2e92011ff28c43480ab26a6e7f8cd56f2189af0610be8" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-osx-arm64.tar.gz", - "hash": "1dd5ea0b3800dd38bda62392809336039ba69b3ac3f1a8273a68664ca0c23b632848a348b8d9e9e0e76539b6e5e15824320b830571c2fae3df94ad0f26288d30" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-osx-x64.tar.gz", - "hash": "b62af025296774fd30f60ebe38a80612f8aa07802ffcf1c93d3da9052b461108fe5caec356f95ccd8772ea7514862c379afbb3c19b23c8e8b53af9a18408813e" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-arm64.exe", - "hash": "b9c844bc25991492e94b9ec4c6636fb64de270018154dbc0c1cb3b63624e0df56b5c1eab22d0b8f9ca175d1efc878784b907e6fad7d8430fbe88be23d3c85d9f" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-arm64.zip", - "hash": "e4eee89df6eb0b79d23f93d8221b5e7ce4f5d5cd29b5e75b730b8c121f72d15b7ece921027fc270302bbb49130d81d153ba5475b53a1216a4e6e51f4ec689666" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-x64.exe", - "hash": "710955c39094887356b5bf14e634511796962d3b84348e74d659b128eb0d40f351ecd881a129459661317fc647f0df8cad2929648b79982f3cbb3ce2ac413a88" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-x64.zip", - "hash": "16f3ceb3fac1949b6bc4f7f6b9eddbb4806f156fc5cea060c8411847688dcd3d56ec0b79ae13d2b5e49c1a224891795cb85b4425fdf171417b700fab981e8b82" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-x86.exe", - "hash": "2030ed1048032f51bb45b55da16a03b68fdb19a58d710d693214eceff6b1e4971fc625c4f221b67fc01561e8459a960efa1525631b73e907cffdc0c553baefe1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-9.0.0-rc.2.24474.3-win-x86.zip", - "hash": "1265946601b59350a071092656afbc6c501e4926b82876da951b923cf83155c7c0abcc735915f97e2f059402807028c7fbaa261788c9769c20f88c4738c86415" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-arm.tar.gz", - "hash": "49d9a1ad1dc35df3c3009a5378b52832b4e4c17cbbddadd50c1b3868a7a1fe312520392b961275b5587093573f9a5f8c230e33988459367fd6e0062cd3b3a354" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-arm64.tar.gz", - "hash": "f2383e700646cdda26796bfed343ac0e6753c9cb6eae4b36c3aa4a018cc66fe0ef6d55bd3340177aee6dad3ed1f41d77598eaef56ebcbb7f70e70becd774473b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-musl-arm.tar.gz", - "hash": "d99e0acd14bfa0ad3be16d6923c052f8afdf1f169297fc3fc2799a3bdc24a9512c2b2eac9e2781ce80229b7e29a27c503b406bc5eaf0fcea3d46c0f1ed46c980" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-musl-arm64.tar.gz", - "hash": "1af4fa6295698d857d9955a197b0d88e263e758a118ece8a7d8188fdfe8efdfd55b363b7f5102b5a47d8355e73f54312a4a9652bd7dd87a2400452bcde9ff4ff" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-musl-x64.tar.gz", - "hash": "efad7ff66e5bac390e55b964c028ee25f6cdb4d7d58eb6c114db08f307c8d8139f60a10cdab5e3b09679ccd8f93b94f12400a0c295a09ac2666ba2ef3902fbc7" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/aspnetcore-runtime-composite-9.0.0-rc.2.24474.3-linux-x64.tar.gz", - "hash": "0b215df947c2bef3cdd9bd298cea18f6c3f5e21fa46d2ab9f6faec3b9f7f062fb35819432e7e1015f27f793b4850f2cfa40040e60f28fbbfec258acd43094695" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.2.24474.3/dotnet-hosting-9.0.0-rc.2.24474.3-win.exe", - "hash": "270a38e4318a2783f1f3462b727304124bbc801a20ae1e6cef99200d8c5ee5d4991791876455b00df409b52d9f64ba7358e024e6f342cfae463654da9d078d73", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-rc.2.24474.4", - "version-display": "9.0.0-rc.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-arm64.exe", - "hash": "3d336f0e6e5ec7d18ca21b59858ccc0c7d683e3b0a68b0fc035a3a34119f377104259c89ab7d7a3f0af1071cd550409ab91eb0d4a4072e36571c86900194e82b" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-arm64.zip", - "hash": "dd9bf2b472dc076ba68346a866a67a86af192a39e132fa91b1b35385a1ae4af166cf56a5e3ccd12d33ab4aefafcd4388c75663de802e10452e63dea5dd80783c" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-x64.exe", - "hash": "820ab1505e138cb5552d7904d6faff20ceea7c2dc087e3e0004ec6644139e51771e9c2f927ba7206d53db7f66732b750f389a2adec75f5f00f0ecc20abf31fcd" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-x64.zip", - "hash": "8449e2233d2ad2f72215c3caaa8e13dd320ce8678500c98ffdb0483f9f10d983bee834138a266dea652faca6ebf821019c0e263bfe2be60ab2cb75266a30e6a5" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-x86.exe", - "hash": "65f24e6785f76bcad76c6284383f74c2f7cf5186fee4cd13f0e2796dad5aef2873e8cf73a7a04ce3250c37b1f6171dcabcc07133759e4cb959bb2dc68ba90738" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.2.24474.4/windowsdesktop-runtime-9.0.0-rc.2.24474.4-win-x86.zip", - "hash": "834e0936f2fce5ac079c3658986549c3d07ece93f96aa4cd8ebab4a9a612d09704b6d3e907018dfdbcfb74760aa2fe154de29188f0058b112c22c3dc1ef97dbb" - } - ] - } - }, - { - "release-date": "2024-09-10", - "release-version": "9.0.0-rc.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/rc1/9.0.0-rc.1.md", - "runtime": { - "version": "9.0.0-rc.1.24431.7", - "version-display": "9.0.0-rc.1", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-arm.tar.gz", - "hash": "8a83de300e8f9ec67f705004f55229573dd8bfb106f6c42389efb296c2386ee27846f81baafe6b4269e9c7269037e5ec3f1376c72bc103e4641c9181a7e57647" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-arm64.tar.gz", - "hash": "8542bb9381e4eca6f0ebceddec68525cc59e34f7244613cf33cb2151f570c3345cb6d081c492b01070e762d3440f02d4558234532d58ff3dc919057e06b7bdac" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-musl-arm.tar.gz", - "hash": "11189bcc13148694913ac5fb050b77db8104ac62dd39b970cd96aef399f7a7cee656a314b44f0113f96726e7ee0a269dea38637020fe06261a8b01ca0df9e4b4" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-musl-arm64.tar.gz", - "hash": "dd62a73736b275a15b5affa3465a0ef3d69619a06ccaaa3916b331f45b3859a9028e78eb7cd85c766deffb9703c7bb96788f4061d549cbdf325bf81894310521" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-musl-x64.tar.gz", - "hash": "bd77015ca46b8928f70a61e6cfef23c5e308ad40c03ddd421c210141b1a38cd5c4d8edf5365e8baee227db5a6ac71fbea481c1a8b3c5ba6ea58330afdd7fe231" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-linux-x64.tar.gz", - "hash": "9f9a85b8d9f6362ed2c2d0edefd04999181b2c386647644fbc1d9f248255387324399edb1c40bc7fa8c47adc22e2d71db5f25ce794521d59e46c40593b5f6cc5" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-osx-arm64.pkg", - "hash": "8a0dd36bd239c676302affa7ad25568cd6c4593c57d215a11c81884e5b0ae15d1c3e1a98e38e6211c9c597dd9568df60af63d33abd32fade9d10077d29f8077a" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-osx-arm64.tar.gz", - "hash": "a825fca9edde53ab6abc0efe0c44d6fb25c5c77aeb2d35b6c414d42f364453ceb069ed9db8865c2bb82523989fceb7cccbf86047699590ff756a6b9c54c21d74" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-osx-x64.pkg", - "hash": "a026498852db5902959e90ca53ea4567d28972c6bad1f23e42dd2cec2d966e2ff3b9824e3747566a942ac7149cde577b1af079ceca806f8d5a50015f7210fd00" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-osx-x64.tar.gz", - "hash": "f62f867eab633737c450ffb0543a726f1ba2f46a4265cb47978d88dad0c6b80a8db5ccf6f583842f85cb613b96d2f7c6806d669826f4b92b906e71d8d10e53e8" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-arm64.exe", - "hash": "64a5655077cb6fbe40f7b3bdbcdeae41c16794ab93c86f00cb803bbab3f2d5207d5bad3f84a2e3fc92e1ebf322b7c47b25ed926b9ae17b1e3b3175820db1eed9" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-arm64.zip", - "hash": "888f39b40a3baf573208b4d6d5e1d102e00da9128d086c8b706d5116f1325ad953ab44b6bdc7b82a3e5e59192e4b2cd53ba46849658ed7960293079ea58cf209" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-x64.exe", - "hash": "1a6c34911e922541c89c8138507119c22519081df5a33d30f238fc7c2d03b3cbf834c495d21cd2a11ac1d93f9296616d192f75eb326f8308e08e12bd905e6020" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-x64.zip", - "hash": "b73b3ab9ab37b703b00bcb71eb180caab3f4e32dca16afbe4bcb28b3608604456c288edd7fb9254c8facdebfe3d00b28e17e10d6abb96ca0768427b773983e26" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-x86.exe", - "hash": "90f74c10c717a663a0c400fb6998b0d33d1a7760c63a804f4e3a4505b6c9b0c5ae3a3a259b8d8cbaf7ce4b872d784b8473a25b65b4b1faaffb22ede870f0fab0" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-rc.1.24431.7/dotnet-runtime-9.0.0-rc.1.24431.7-win-x86.zip", - "hash": "78451848ddbb5080865c9ea0ad5f67c26ebe9a708104eba72166e708abd73bb647b2ec063180c39b3100e5261312f7efac7c594f12fe4319864ce4e31cd5f7ec" - } - ] - }, - "sdk": { - "version": "9.0.100-rc.1.24452.12", - "version-display": "9.0.100-rc.1", - "runtime-version": "9.0.0-rc.1.24431.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 Preview 2)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-arm.tar.gz", - "hash": "f31a4a2c3080a921cfdd71933d1f57c2f57ff4c43f5a0ad6f52640bc791e54f8c0526d8e1206ad21f8682357a53cf6d488a8b01107e7c34beafe2c8c3425dd8c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-arm64.tar.gz", - "hash": "f5742537128801c199a127266175066058788a26e8a603cbd26a1c16e9ef33a5d418e4790a3cea722d7de483eee8b68e0de4bb1dfdf279713369ed3b4d163a11" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-arm.tar.gz", - "hash": "8480900e14bd1034f586c3e17402be2f04cab250d79b4d1dda3aa887e9fafa683ad388adf7f25b5c7b0dc433375ce1c272b3d9419636e6db0f7bf300e841a0a5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-arm64.tar.gz", - "hash": "656bfa4e7c4a3ee280b99eaffa620b09b89b3a3b9f6d33c9d787c1f8938b84afb5aa43d80546e81a2bfd532770c282c59aea167f50d01a57027a2061e595f0e9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-x64.tar.gz", - "hash": "b1d8004cf9c3ffb530fbb3d4259174cb076a32ba00268daa43dbf452fe6d46ccf979a63d7f53ae70a2fa7a101a9df1bd3b840552ac92a852119bb7385a65f65f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-x64.tar.gz", - "hash": "e8130817b779d0104a6eee33d98d97c3fad1c336013435f47c0e9e22370172b75da37ade76e49dec7cbe696884390d2e6941cc69e2bad5593d6d1c6b41083051" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-arm64.pkg", - "hash": "c5a54b42d13ef1b20ed01e089c812f0c39e7a9a091330eb69387cc7e41f14fd319909321bd7cdc2c5f6b3d9f75fbe64b906028ad4a3ef1d75ece1a225676b14f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-arm64.tar.gz", - "hash": "af30b31cd937e9fc97e164b83628c2c1ecd21329b75f742d9f5232aa68427d25b5d702cc565aa860d3c738c8727790569bf66a3ed74e5cef719ae589d302846f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-x64.pkg", - "hash": "a0ac40a3b8a67447fe75b93c34a283049621de39a6791932320178c48e61cf7783eb1bcb3a6105ac5ff9c9aed718fefec8841f0172c8325f2c5cc0e30ced1e4d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-x64.tar.gz", - "hash": "0d1f0718eeef006c3ecfbefeebf9df0772ec22c74db4bb635b6463b8aedfd3957274b908b51ec019ced69d3e7af4ae9252f18e87b14a4411e1089a4cc41e37d0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-arm64.exe", - "hash": "30a6ab47431eba8d82609f12739d7373e1a4ce903ab3f98a4e327b472fb7c3ebfdec6a8e2f3abd24af64a1962bd3aec0cc82c6030abbbae4c712e2037e9b3a5f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-arm64.zip", - "hash": "d8ed11c6490cb532cdadd9f36b75e11643cc4ce771d8d68efece94fa3be438c2304eabd890dff7363c7fdb18214bb7ef1534fe28a7a9d5672c4ede81a70ade0e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x64.exe", - "hash": "f8f3002242c76b5eb786b8c7788556563a22151a7e09032e7b0edcf4de17c3c69cf7f8dd598b2c5752df62d40798bcc4bc63f6bed8ce377d0938fe8b0ce631d1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x64.zip", - "hash": "88b4e63017663e807a26b6e3775cb67644f205a03e865f2b67c327e17120e46e0bf6aeb6f4c098cacb9822987d9f167a890c69d733e83dd998041d24c09ceb84" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x86.exe", - "hash": "4da5b031405105db0cbd1a0c5656ac7ca481021f38694e7bbb6c1b3293ca3a398da2b504ac7726192defd9b7bee5e0231f18a334a0a7d4060e60e157d97b2619" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x86.zip", - "hash": "376ab68351566f8eebb837959d2e5c441e33081ca67fe1aa1223bc9bb7f0e86b626da01be9f5fb7e5a8601e61b48bd5a73955a0911633951c68aedbff4b53a57" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-rc.1.24452.12", - "version-display": "9.0.100-rc.1", - "runtime-version": "9.0.0-rc.1.24431.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 Preview 2)", - "vs-mac-support": "", - "csharp-version": "13.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-arm.tar.gz", - "hash": "f31a4a2c3080a921cfdd71933d1f57c2f57ff4c43f5a0ad6f52640bc791e54f8c0526d8e1206ad21f8682357a53cf6d488a8b01107e7c34beafe2c8c3425dd8c" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-arm64.tar.gz", - "hash": "f5742537128801c199a127266175066058788a26e8a603cbd26a1c16e9ef33a5d418e4790a3cea722d7de483eee8b68e0de4bb1dfdf279713369ed3b4d163a11" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-arm.tar.gz", - "hash": "8480900e14bd1034f586c3e17402be2f04cab250d79b4d1dda3aa887e9fafa683ad388adf7f25b5c7b0dc433375ce1c272b3d9419636e6db0f7bf300e841a0a5" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-arm64.tar.gz", - "hash": "656bfa4e7c4a3ee280b99eaffa620b09b89b3a3b9f6d33c9d787c1f8938b84afb5aa43d80546e81a2bfd532770c282c59aea167f50d01a57027a2061e595f0e9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-musl-x64.tar.gz", - "hash": "b1d8004cf9c3ffb530fbb3d4259174cb076a32ba00268daa43dbf452fe6d46ccf979a63d7f53ae70a2fa7a101a9df1bd3b840552ac92a852119bb7385a65f65f" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-linux-x64.tar.gz", - "hash": "e8130817b779d0104a6eee33d98d97c3fad1c336013435f47c0e9e22370172b75da37ade76e49dec7cbe696884390d2e6941cc69e2bad5593d6d1c6b41083051" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-arm64.pkg", - "hash": "c5a54b42d13ef1b20ed01e089c812f0c39e7a9a091330eb69387cc7e41f14fd319909321bd7cdc2c5f6b3d9f75fbe64b906028ad4a3ef1d75ece1a225676b14f" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-arm64.tar.gz", - "hash": "af30b31cd937e9fc97e164b83628c2c1ecd21329b75f742d9f5232aa68427d25b5d702cc565aa860d3c738c8727790569bf66a3ed74e5cef719ae589d302846f" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-x64.pkg", - "hash": "a0ac40a3b8a67447fe75b93c34a283049621de39a6791932320178c48e61cf7783eb1bcb3a6105ac5ff9c9aed718fefec8841f0172c8325f2c5cc0e30ced1e4d" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-osx-x64.tar.gz", - "hash": "0d1f0718eeef006c3ecfbefeebf9df0772ec22c74db4bb635b6463b8aedfd3957274b908b51ec019ced69d3e7af4ae9252f18e87b14a4411e1089a4cc41e37d0" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-arm64.exe", - "hash": "30a6ab47431eba8d82609f12739d7373e1a4ce903ab3f98a4e327b472fb7c3ebfdec6a8e2f3abd24af64a1962bd3aec0cc82c6030abbbae4c712e2037e9b3a5f" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-arm64.zip", - "hash": "d8ed11c6490cb532cdadd9f36b75e11643cc4ce771d8d68efece94fa3be438c2304eabd890dff7363c7fdb18214bb7ef1534fe28a7a9d5672c4ede81a70ade0e" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x64.exe", - "hash": "f8f3002242c76b5eb786b8c7788556563a22151a7e09032e7b0edcf4de17c3c69cf7f8dd598b2c5752df62d40798bcc4bc63f6bed8ce377d0938fe8b0ce631d1" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x64.zip", - "hash": "88b4e63017663e807a26b6e3775cb67644f205a03e865f2b67c327e17120e46e0bf6aeb6f4c098cacb9822987d9f167a890c69d733e83dd998041d24c09ceb84" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x86.exe", - "hash": "4da5b031405105db0cbd1a0c5656ac7ca481021f38694e7bbb6c1b3293ca3a398da2b504ac7726192defd9b7bee5e0231f18a334a0a7d4060e60e157d97b2619" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-rc.1.24452.12/dotnet-sdk-9.0.100-rc.1.24452.12-win-x86.zip", - "hash": "376ab68351566f8eebb837959d2e5c441e33081ca67fe1aa1223bc9bb7f0e86b626da01be9f5fb7e5a8601e61b48bd5a73955a0911633951c68aedbff4b53a57" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-rc.1.24452.1", - "version-display": "9.0.0-rc.1", - "version-aspnetcoremodule": ["19.0.24246.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-arm.tar.gz", - "hash": "1201ddd76c54a676cb287443ef1b3316d087b9f3557c797f724cd4fcb86986eb499b3122959b24976444e262285c05a8a0f8f3f282894631e58fa4de42bb5489" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-arm64.tar.gz", - "hash": "84610a38fb9a98eb7bd26ba89a9c4998682ec3fffb5eade5bbafbafd63cac7d9a5279618bb5b2575d27feec098da5fe6f7150c67253f3f37762601590396e122" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-musl-arm.tar.gz", - "hash": "29dbeee2ca4379b33457e2b056588114fa31813506c5359a23145f23a41d063d05eaa097ea117623a40fab113516b45150bd17a2f057287562c33fe9168bf299" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-musl-arm64.tar.gz", - "hash": "9f4f1a3a4f39377779bf4f76ce0b9763102d9ca617ffdf61ff75a0d81c5cc63fb5042708ff10b1a83e558050d9b95bbaf159fa77e27cc03e0ad343441e164b5e" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-musl-x64.tar.gz", - "hash": "0f945f9c7619918d619a66cfb6c8b01fd9939438ce8ef8be0797faea4cbd73cede6fd25c225855efb793be670bfc0f7198e9f231fa0511d7cf319d2fabbac9d3" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-linux-x64.tar.gz", - "hash": "f8fd285d67bb044d631596869d6301e10a2a243c81c9a05096a66aff4fb3431529812c7482e6cf0e065e8e065fc50b16b50d7f2a495ab30077a68bd45b3ba376" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-osx-arm64.tar.gz", - "hash": "03f7e03352d1ad2d54e9de4c1cdd7a94c2311bb36d4c6296661fab286cddebf3f57204f73892efd53f43cfb13ba73cafae95d0522c47be03203d5fb69a0ecfe9" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-osx-x64.tar.gz", - "hash": "ff4a6e35b41f5200521ea4b257b293e4d48f1786ccaa9cd85b55ba96ad36036dbc149d2ff820f1dff5f2d9acf6c38b6c3540e700c2c2db5fe6d82d4f85f461ae" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-arm64.exe", - "hash": "9dfd2fb830533936ba424a44abafb580bbbf01480b612b29965c779569bfd45a33925dac792c0a4d8c0ce80bf15307e86166b157b2a8ed8bf0643a517b36ba71" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-arm64.zip", - "hash": "73d3b632f718d34e0029a85ef43c69c8f68aab74eda4fb0758f3f6edbdb8d89e62752ba2fb51cccca23a2440ce328955b9f6ef9bafe6f181a9bda6e3443a9f7d" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-x64.exe", - "hash": "da1a1d24f104c7a4b3ab993663620e599c4c54593858990196090983a285b0cec0321db0a9e9d4f040260046f2035850e3077d62a01fc11232a1847cb971c6e9" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-x64.zip", - "hash": "089020e21b337c74860c2c67ba367bdc4c270da822f9f1b181e092a9d96e8d6ff2609f05bc6ac5410523aa991fb5fa876477362dcf2f72c4c2ea2ea0e295b3b5" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-x86.exe", - "hash": "fb864ba977436649e9a0e6ca6b9dfb58e6a62316259f5321e10a7fde8d590a054815b17c6e6754217089703fd4816046cac3f4e57b3b822c4df47e4f6fa36caa" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-9.0.0-rc.1.24452.1-win-x86.zip", - "hash": "eab9f7515bdc4b0577db2cfd83da3f3bb4f6ef5f9fb58ed50f8c0882c2dc1a9a26bbc177bdebf62ec87160d797022b3a5ffc4fe8126afa38737aff777bcd698f" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-arm.tar.gz", - "hash": "33fe5cc1474420b97525635c4587328ee7a75ee9d41adadd82748beb82d98416f0ea1003f73cb71475ca9ae376c597e03eb046f370c94340f6973b508de46757" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-arm64.tar.gz", - "hash": "38bf53375c10224af2240209f65eeaed4f5519679b0e2cf217c662d2dffa9c3de35122aab560fd663b7964f294700e2c3059dfb64dfb4ac8e791a65f5a8d802c" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-musl-arm.tar.gz", - "hash": "5a6709c2e707e05ace840ede35bbf462e6eff3d8497b1afa9909e5daf6adb735f1a1f14256238765d7dd4b326a933a3cd93f9aacab43d39c22eb9d2b0c592c0b" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-musl-arm64.tar.gz", - "hash": "9078ff4024ccae3acb05661c2be3f61ac8ca24a1cadd5999d1b7466c819ac36d2b57837c91f19f8bc00cba6cb8d0c694ada2d80de5a5eb930a66c0cf90273967" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-musl-x64.tar.gz", - "hash": "33ddf922b107124112d4cb42efe040d04299aabe77e0cf47791e0e7ee9ccd106bc5c56cf792b49965570a0cb55ff40693e20eb9e3b868557b53000a091a9adaf" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/aspnetcore-runtime-composite-9.0.0-rc.1.24452.1-linux-x64.tar.gz", - "hash": "eb291957efda04e117be857279261fdbe657980003fe321ead8fa65121be903459db9cab4a5454e719fde4e9d353e266054d6c18c62bad9f9204993068f71a5c" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-rc.1.24452.1/dotnet-hosting-9.0.0-rc.1.24452.1-win.exe", - "hash": "221f75ee6e5a8fc27ccb24ab8b0fe0da70835f215355700b8ae9d9e278e939f16055793d2726732ba68d1607b778c55694654f7811cd7dc7b3f752606aed0503", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-rc.1.24452.1", - "version-display": "9.0.0-rc.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-arm64.exe", - "hash": "c95b712758f09bde75213c5e9d2313887bf57619ea300d1342287ebf5ef9ae272f6d833af9053a1f79452a6d6ce3c0604cd3b6de7ecdf32cdd106c3b79ec8bb2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-arm64.zip", - "hash": "11a4f6fb62146abe7e4177eb81d5a9b9ef1860bdb87953dcb49802b3c1c5cf8d7dc07b0b698ab959b0b0ad70a6a73d1dd31244333f0d27818ce39db362a7c215" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-x64.exe", - "hash": "032ae99f815ecb1c5b07377885955de621e49da4a3ddac994e251fc8dfb3911768a079e996d988e8cd6c9c154f2f9c0656c6f57ecce515fe90e88a0659381038" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-x64.zip", - "hash": "e7d72c19182533a72e14a90b79f5467a913b81ca89cf453d51e1a1acc47b66e31ef35c13c08b12e5338787d1e7d0f4bad842aed3e1c58b7a0800020e308f7b9b" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-x86.exe", - "hash": "1ea195d2efa597af4e03aface594d868d5e935af9a72196f3ce212e3c93626abcd48f95aa9c25a736539fc9c32c80d25334ec377ca6c7406f22a2fb0709df080" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-rc.1.24452.1/windowsdesktop-runtime-9.0.0-rc.1.24452.1-win-x86.zip", - "hash": "20ba8fd3c04c03e9008db73b5a007c87a9b191badbe7e469f98c40b86dbf3dc80bc81d6435a75154c8b1879e5283c412bd843e2efca0a86b7ed5ebb893de8ea9" - } - ] - } - }, - { - "release-date": "2024-08-13", - "release-version": "9.0.0-preview.7", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview7/9.0.0-preview.7.md", - "runtime": { - "version": "9.0.0-preview.7.24405.7", - "version-display": "9.0.0-preview.7", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-arm.tar.gz", - "hash": "6bf40d4e837f74f0ac92ce504c187b33ee1d6ba653dee8006bbaf5a6f923eeffba2cb9c2f938207856c84bb9e41d5c3f42d0a0b1dd62bbd9997e885beab6a3af" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-arm64.tar.gz", - "hash": "f7440b679315c6d35b12d839a1cf52c961784d56524f52e96a7834bbda7bf4e5bfd726081148cf71fb19b3107c7b1f39681a2fae7e87f1d9fa0634b70a47f4b2" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-musl-arm.tar.gz", - "hash": "d627507d36e0ee3e8a6253d0488bb2c85458ba124016b32c8a481ec3d603f4393b700f1cd08c5640aad1971546526898ffb049e9590cbd655dda4375b7d7757e" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-musl-arm64.tar.gz", - "hash": "57bb109d2bd66c6e273b54d4bbb4836a53375f1cb13bed1139c6bc950f85de774070014fd19ddb8b43588fa32f6de60811b43cbff5d29b1f537cb8206561fc5c" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-musl-x64.tar.gz", - "hash": "343d911894ff3b61cf6ee560b5a5da14a8b84e9dffa2211529d885e81314a6b0e88b6018b3a116f05b0bcd6e80b2a1e8cb45547f193a49a3aafcdf3992b580e7" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-linux-x64.tar.gz", - "hash": "9ede46bc2e6f87a9f592f888562a4cdda6ffa01ca9822f6d4ae586a7c478d3e4fe6c70758a4e9ecbba86445978c68f805d1d6d6f4d37fc653a2b7510309dd5dc" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-osx-arm64.pkg", - "hash": "b6d520b49da68a823a0279ab93f5aef4f8381fe8fb45ea3e0998eccd111300331f1196d95e22f9d7bb64e74cc5f0dde2c33b63a4db3b56da60b3e0cf8c9e4cbb" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-osx-arm64.tar.gz", - "hash": "ade75303e39c33af6d7ea10369bb87d5d446619d2ffa630db1e8342b1577efe6831d8f32316fb0e0536e56e0adb7978c4e1b75ddef9a2d1cda8657b8fc457356" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-osx-x64.pkg", - "hash": "1be6f9be0cab72e50a99350b4a8517a428c468b83e9c69eb0fe3253ae62586507f1600173efacc049dafae5252721120a27611c68854104d3f737ec3d87f47c7" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-osx-x64.tar.gz", - "hash": "17352746d1b780272766c6ea20bdb0961f8004bafc529877644fa536bc0e7441eb48d65cd05c4eb9017249651361c773d89b1ec1c1720bd4fce0fe965614d48a" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-arm64.exe", - "hash": "cf8b6518c1daf0d5c25d42c7ed5370a6f853b496903822cb254af9064bc91578ce8476d75c8373ad3492d182c3db4459a933afb28f134059937ab5b7c27b7dd6" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-arm64.zip", - "hash": "5f45a3ccde7dd587451d45eaf70756877df4646f4b9411948e2b71bd7da2d48d513c54f0642e44d306d75e969a01f4d2931eb980de3c71cb1172604c89838432" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-x64.exe", - "hash": "7246da48251745c46acba6c3cf0c53e66eed0c17c8579e167a0cec928190e7a38ecc905dd1dcefc7e9e3baaf633186858b6dc7d4b8d52218192bc3580fabd05b" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-x64.zip", - "hash": "063c60a61ef96c06be677f9a418e807134563b8cd03be861924ab13325051070a570457a1e32ac676e8e70158a5fcf5e652b4484f15b517086e34faaee1071ee" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-x86.exe", - "hash": "e3292dfa9b747f15d7a928b2f09cc0e1e3662276303aea0535f96018d9ea58bfd36d5353638438bab611e491551fea8bf38773351065b13a3ef69d7f19ab9ea6" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.7.24405.7/dotnet-runtime-9.0.0-preview.7.24405.7-win-x86.zip", - "hash": "545d98b9757995faff8222e18a918519ca0e4fe4ecfd3216d622bf380a5b1a49109b07957b22f7069b8aa2d1bc89e0d0be6dc1c079e7d95d481b77d164125923" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.7.24407.12", - "version-display": "9.0.100-preview.7", - "runtime-version": "9.0.0-preview.7.24405.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-arm.tar.gz", - "hash": "b97c357cf8a2e129b222748e23b59343c4264b6dc9dbe00c5a01bf2d3f57c1a6bc61e5ec053b75ce0d17434977e1616d3efb7c4642aca18d8bb5fe7b6c0f906d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-arm64.tar.gz", - "hash": "c8ae08858c9ccf16d7b4879b7201ea22bd59e97f1924d4ff2b25079168c906d88a2864e6796244b67db612a36170969fef212879aa3b2232418795c7e7e6d526" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-arm.tar.gz", - "hash": "cd27cfd56483c51f48d12c204e3de0bd490b081d2add0d3db9f1ae905cef7470613727beb5213c6e68a9dacd2c46ccab8e4bf2b37eb5a8ea19a5d30447c42918" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-arm64.tar.gz", - "hash": "1ccb6b8ad6e2d32f3d27b234783cde01e25e5c319ca8c5f90320e1ea2cf4f2a3cc58841a9d781c3a63d8a03b458391dd45a16c96d20a0c4f80e570d6decd80f9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-x64.tar.gz", - "hash": "f558d4d3e8ae430ce544a8157197f9084849998f8788e26b9a20f742761ac1ab09c12423e0d1eed1d3bed7a25788b717e3525586b10977f9bec414ae76ac3515" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-x64.tar.gz", - "hash": "3bc1bddb8bebbfa9e256487871c3984ebe2c9bc77b644dd25e4660f12c76042f500931135a080a97f265bc4c5504433150bde0a3ca19c3f7ad7127835076fc8e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-arm64.pkg", - "hash": "43667fec64adddd6b61628a047c0cea2c4c14b4958a5e6589ba0df7a56727416d293c559c6a9089a8d703a8444ebf929df2db6f3362f40c96cee14aebcd6a815" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-arm64.tar.gz", - "hash": "0af77ffeb27e44b2e695caabfa85254f94c77807be6d96fc6abdda1d71be266857320c5dc02d5df968da8963a52cd2aea4b4cad6dfc6540ad26b7b532bf83fd9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-x64.pkg", - "hash": "ff9d18978e2e6b18baeb5b731a52f39458fa65fe2f6ff758e5b1b31b831817ca27149ce9231840ba39a88e2ec5f649b734097129cd8dbfef7f96bf21ec8a23d7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-x64.tar.gz", - "hash": "b410a65d69f991ea55c81e5f7ea58c98ceef309d63ddd21a7689848a4a4516cdb898f8e36702a554a51fc22420cfbffe7a662a785175bbc1ebe1c33fcf6ffbf8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-arm64.exe", - "hash": "0d6db7e772809f87bd70c6b5468f37ff14b466c59f3f3c0f85848b2cb7e938f550768b0a8a70ddb3dae0f900a6abe69dd6c641393e772d857a5160167c4b76cc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-arm64.zip", - "hash": "69c9b7fd4772509a343907a3cc386660caff5295fda42e64ae62c52147ba2adbd9511fa976dd9738df0643a3596a5c7eaa3e51a0f8bc8ffd4101eea706a5dd2b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x64.exe", - "hash": "53a429eec91b4335d2ff1822bd2b41c826b06a53d187d24645a991066f28498d93f06557bd1c471a9334dc02bcdb3b6d075cfa9d6c894bdfc0f29c0b6e0d7a02" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x64.zip", - "hash": "99ed1ff4207b8e465b0a483649be860164fb9d4003ee08b1758d0db0df194dda523be4896572c21bfc6ca333f3408b48c14872cf5748a5af7c4d2682f29d8d3b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x86.exe", - "hash": "fd527045869746eb27acde707a054618f5f9757ea44333d1088013de9d5efef0c398ebfc911127a6a1a3ea292572db4e1f5d0e687f3e3e44bf45a3aa7816595c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x86.zip", - "hash": "ba3b33dc34e811e9d740e9af00844a5cc67372718e45226b859812b917ac50b9249397752c8b0b63ce87339df5530f1e27d8863bfd2690834e51c38cb3bf4be7" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.7.24407.12", - "version-display": "9.0.100-preview.7", - "runtime-version": "9.0.0-preview.7.24405.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.12 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-arm.tar.gz", - "hash": "b97c357cf8a2e129b222748e23b59343c4264b6dc9dbe00c5a01bf2d3f57c1a6bc61e5ec053b75ce0d17434977e1616d3efb7c4642aca18d8bb5fe7b6c0f906d" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-arm64.tar.gz", - "hash": "c8ae08858c9ccf16d7b4879b7201ea22bd59e97f1924d4ff2b25079168c906d88a2864e6796244b67db612a36170969fef212879aa3b2232418795c7e7e6d526" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-arm.tar.gz", - "hash": "cd27cfd56483c51f48d12c204e3de0bd490b081d2add0d3db9f1ae905cef7470613727beb5213c6e68a9dacd2c46ccab8e4bf2b37eb5a8ea19a5d30447c42918" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-arm64.tar.gz", - "hash": "1ccb6b8ad6e2d32f3d27b234783cde01e25e5c319ca8c5f90320e1ea2cf4f2a3cc58841a9d781c3a63d8a03b458391dd45a16c96d20a0c4f80e570d6decd80f9" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-musl-x64.tar.gz", - "hash": "f558d4d3e8ae430ce544a8157197f9084849998f8788e26b9a20f742761ac1ab09c12423e0d1eed1d3bed7a25788b717e3525586b10977f9bec414ae76ac3515" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-linux-x64.tar.gz", - "hash": "3bc1bddb8bebbfa9e256487871c3984ebe2c9bc77b644dd25e4660f12c76042f500931135a080a97f265bc4c5504433150bde0a3ca19c3f7ad7127835076fc8e" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-arm64.pkg", - "hash": "43667fec64adddd6b61628a047c0cea2c4c14b4958a5e6589ba0df7a56727416d293c559c6a9089a8d703a8444ebf929df2db6f3362f40c96cee14aebcd6a815" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-arm64.tar.gz", - "hash": "0af77ffeb27e44b2e695caabfa85254f94c77807be6d96fc6abdda1d71be266857320c5dc02d5df968da8963a52cd2aea4b4cad6dfc6540ad26b7b532bf83fd9" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-x64.pkg", - "hash": "ff9d18978e2e6b18baeb5b731a52f39458fa65fe2f6ff758e5b1b31b831817ca27149ce9231840ba39a88e2ec5f649b734097129cd8dbfef7f96bf21ec8a23d7" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-osx-x64.tar.gz", - "hash": "b410a65d69f991ea55c81e5f7ea58c98ceef309d63ddd21a7689848a4a4516cdb898f8e36702a554a51fc22420cfbffe7a662a785175bbc1ebe1c33fcf6ffbf8" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-arm64.exe", - "hash": "0d6db7e772809f87bd70c6b5468f37ff14b466c59f3f3c0f85848b2cb7e938f550768b0a8a70ddb3dae0f900a6abe69dd6c641393e772d857a5160167c4b76cc" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-arm64.zip", - "hash": "69c9b7fd4772509a343907a3cc386660caff5295fda42e64ae62c52147ba2adbd9511fa976dd9738df0643a3596a5c7eaa3e51a0f8bc8ffd4101eea706a5dd2b" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x64.exe", - "hash": "53a429eec91b4335d2ff1822bd2b41c826b06a53d187d24645a991066f28498d93f06557bd1c471a9334dc02bcdb3b6d075cfa9d6c894bdfc0f29c0b6e0d7a02" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x64.zip", - "hash": "99ed1ff4207b8e465b0a483649be860164fb9d4003ee08b1758d0db0df194dda523be4896572c21bfc6ca333f3408b48c14872cf5748a5af7c4d2682f29d8d3b" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x86.exe", - "hash": "fd527045869746eb27acde707a054618f5f9757ea44333d1088013de9d5efef0c398ebfc911127a6a1a3ea292572db4e1f5d0e687f3e3e44bf45a3aa7816595c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.7.24407.12/dotnet-sdk-9.0.100-preview.7.24407.12-win-x86.zip", - "hash": "ba3b33dc34e811e9d740e9af00844a5cc67372718e45226b859812b917ac50b9249397752c8b0b63ce87339df5530f1e27d8863bfd2690834e51c38cb3bf4be7" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.7.24406.2", - "version-display": "9.0.0-preview.7", - "version-aspnetcoremodule": ["19.0.24219.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-arm.tar.gz", - "hash": "c5a60fc24cfd9ccb27c022938a93668a344f1f3f1bdb41e01f4740bb798ad04341b5b30fd4aef129d936c909ad8473cf6072a76f999ec626221df9696c73dcc5" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-arm64.tar.gz", - "hash": "706925fde5bb93b98e347540fe0983ce0819a2ca2520ed2d5bfc4515cb6852587a30f29852b512509b660daf8ee76ff3c8bb2d2fd78e47c6ae156e6f00cde918" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-musl-arm.tar.gz", - "hash": "08b67ca34122f063370d0f24606174026d3e67f8767ac2e4c4393c214e608d47d82dad177a97c5e6e28d089412403f75012c00cdaabb109e461e266ad6a620c5" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-musl-arm64.tar.gz", - "hash": "df15606e28e68162739d6b5f3a3852664cbd8d78ff8e8ebed07e2f78c8699d0dd4bd2a3c3b5c98b63bfdae1106720fd4069d349d0d4e32037deea77a4e97efed" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-musl-x64.tar.gz", - "hash": "bddb66623e26d391d4587b46f6b7be5280788eb0355c558044016c1a12062005f2627bd3fdf51cb271f85eaa91fb920532ef235edd764e4ca63931595e1fb52b" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-linux-x64.tar.gz", - "hash": "44f86c407b501a700aaeae2ce95cf544d85c08b41cdd12cee22bfcfdd03c4f6a16e495d9f8315f5e56a66b7e6187a4fc39d899f967a65f73883e40172343275c" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-osx-arm64.tar.gz", - "hash": "8200af559c76f5bf12f5e0495c285a837dbe29c7ac2d6c562540f7077aa68fa65dc05205b4b219e72f78d55c20a75a514f6ccf3f53d6ecf34fd2cea0817a7ede" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-osx-x64.tar.gz", - "hash": "0f309d6b849ccec8e13812de9ff70fac5cc78785b71f356fc63e5070296305766892a3dfd74bae9b4775ec4449335d03d046494a416304f56e5ba7746f3316ca" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-arm64.exe", - "hash": "c3acd624e17bf532bc7c3a1045d551e94a1cc70b8c126c816c64dc788db0152c6737cb703bc76a04a84cf6a11dc589f46e38c1c825860d5f32514bb2fa41e54b" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-arm64.zip", - "hash": "aa0fcb2d6f74856e9e65d13504c313d4237cb98e55b122c3a2fd89bb4c4307b65bd6386f7350e264d6e4499eaf55ff79766218a2708bb556a66502c62ecf6a7e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-x64.exe", - "hash": "a1b17cbe3b028f41c8d8b3c9608112692004259a62ce45efe658ff9506016b8c16e7482708b0f1a861bac21fed19205bed880c790d58c3d1cfd62b81933953ae" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-x64.zip", - "hash": "ce32f77bfb17c15c85968bd3062d6d628ce5d7b1b1bc5d1cab1c7b659253ad869c264b6e98773a57ce80cb818c22db5da79ed6b32affe6f8be0f1952069c7714" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-x86.exe", - "hash": "3b3bdf4c59fea2035881a95d611f06f64d468e57c85f1c4c04566e6286bfebe1f35837f61c28504697856a782dbcf3b613b51fac41003b3f5bec0ac816894971" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-9.0.0-preview.7.24406.2-win-x86.zip", - "hash": "42c04862e239e07b698dfdc1f39633c42ff196e84569660a1dc2f74ea910a705c91cd1f2453efbc8243de883c89452ede139647c272552e29fb9e57c7dacd494" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-arm.tar.gz", - "hash": "7839fa20a2a6459f2c4ba41844ac6c57a0eff6ffd8eaef0463ca44918405a0ab3d1b80e7d3943d7c14db21d0d2cf5490a44d1bdfbc9492138d80dbe228910960" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-arm64.tar.gz", - "hash": "9805dfd4167cf7d67153044265921df12883d67812342779f26b7f400658a117a25b54e29e83bbc8757899d6c96af52d7b35226ebaf2b7a9524b1114d580a741" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-musl-arm.tar.gz", - "hash": "ada585f833f0d4617d36df8ccdf716553e275cb7b49bae3e44945fd3826d3152eef1830339d069cdc0d60f3947f031647929c7580c97ad768e8b32b7f06274ef" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-musl-arm64.tar.gz", - "hash": "d4ec9d402d78a5da914642622a47da05e6c0b55c80ccbd1ba0c1a6c336e38f8598b0b30b986e5d0d296d1ff1783f53cb369d9a7a3c4da25b94c8c6ed4cf67291" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-musl-x64.tar.gz", - "hash": "2edd041b05b65e35464d7941bd1453f97d510408f51ea6e08dadcc81a76529e3500f4c62c48249b68ac2662a42bf8b00d4bcc6f998d3bdf594929914a9d5deed" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/aspnetcore-runtime-composite-9.0.0-preview.7.24406.2-linux-x64.tar.gz", - "hash": "5a580a89c144a268ceeaf2171f2a60f31ab99c3c1879d043920cf4a0a70eb5d3aa0419029408f64ddb1930ebf830e4988d9356dd7dd7819fde570622aeeab7b5" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.7.24406.2/dotnet-hosting-9.0.0-preview.7.24406.2-win.exe", - "hash": "84426e1c134c0bf6227ed9610a252c562470b65c76a10153e5123b2939f3daaa2e7e067f65de9629ed8542b480ba8549dd0301b58ad94380b8b35cf096882b56", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.7.24405.2", - "version-display": "9.0.0-preview.7", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-arm64.exe", - "hash": "c559f8c488d2b94e12e5fe7e61c89eb28ef74b7fe0f52b991e52361d417385521e60384b7db8b7ade2b81cd5f8e905bb31b2d1574e16c506bc998e81171ed0e1" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-arm64.zip", - "hash": "463b8ac6e5b9f62eddec20009ff2517b2a5f90cc1d6047cc005fb446a344c1337cbf0f59ced2749e1b569ef44942c5c7150dbeb10e0ce1f9a76e9c45a1d1bbe4" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-x64.exe", - "hash": "77ffd490b614126debd79a3984df39cacfaa11049e4d209ccbde0e37e48f8169183b369c294b2f5b4e51ed1bee78ae56b4fcb794a663b6c4515248346f838ea3" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-x64.zip", - "hash": "296cf946d83670772dc6794f1019549f59987cfc50cdfa4d04e756fc16174381249b15fc0dd2b154f17be0df2fc4e2b25f95601a238765cf29ad103033125b2a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-x86.exe", - "hash": "7eb2c020a8849ff267e6bbe441913773d5a1e8cdb4bcd81bccc73d424a55f398ca4228fcbbd48e191d333d4a6a0b37ed7a4db03edecdd19262dc3f0cbec77d03" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.7.24405.2/windowsdesktop-runtime-9.0.0-preview.7.24405.2-win-x86.zip", - "hash": "d29732075a45d16dfde9c02957ab2532053721c9cf3e41f37cd59afe866ed06138d82b1aa94668f0f0697abd07c983a309e6f79aac9f0b17a8470cff6be8e281" - } - ] - } - }, - { - "release-date": "2024-07-09", - "release-version": "9.0.0-preview.6", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview6/9.0.0-preview.6.md", - "runtime": { - "version": "9.0.0-preview.6.24327.7", - "version-display": "9.0.0-preview.6", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-arm.tar.gz", - "hash": "8a3d23bdd25b69599c9ac6009c76bbb66af2b1312121da4951266630ffd3a31e91b6479ec1324814a1dcd850d145d47f03f3debea9e6b6d1292573824c239f6a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-arm64.tar.gz", - "hash": "755961903291c262a1f5f7b70543016c8f85f6993e861a6f83f8509fd2a828f4a34f4161a3b9f15114663e8073b37937748befeef9ea9818d513aea1b27f944c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-musl-arm.tar.gz", - "hash": "cd49793061602577d7d1017c2e0f43c205bc48eff50b9234ff8a56d2a873ffb1167429f5f132e5ac201a460efeed83c82c404e47ae87fe336970fd04b3cff697" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-musl-arm64.tar.gz", - "hash": "643fcc319138f31bb2cc7e7896e14caead677e16fa79b2d5031f339103f2bb5dbb9994485ed24281c93ecd32bea179861330c69e75d03db30a58d46fc932dad6" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-musl-x64.tar.gz", - "hash": "7c477a29faed51ea6bc01a1314b3c8d5907d41b2bebce28b52db453722bee703e3edf167e3143b316eca572a1e976619f3925cfd965953376cda38157e9395c1" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-linux-x64.tar.gz", - "hash": "09aa8c4e6ae3ada1a265a5cd2b46779a763163e4dd9a1892b44606b89cf147339e10b7c584dbcaf5404af0553f0ef6c5801436c217f4fe1a5d3bdb6d74aef1d1" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-osx-arm64.pkg", - "hash": "6c04ea05763dedf173f374d7aac7b12749880e6c5e3e4b08dbfacc5b3a94000d409912875b5fcbe9b8b3e4e8dade7bfd2c81cff5469154e8aadf28abe70fcdd9" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-osx-arm64.tar.gz", - "hash": "9f038f1ddf51a6fdb96081932c889d63d9ee818de8b5e71af905ede052c17bb22293599baaf9295f42e560d8073d41785507f752fbba316b446664fb762a60f7" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-osx-x64.pkg", - "hash": "b15a5a018dfcea34ccf1999826a16a6fab2688402bca889e5a19b57985f48bdcb1bb552908a98b14fb589ce7536e19ff7dfb98a6c05f31ec3a24d39bf2f38697" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-osx-x64.tar.gz", - "hash": "53d7fd172cc4bfd0a380847b7d38cfdab03f469579458e3c7ab26dbad82b54a663261b60ebc35009f232509e486657ebc4b8516866016510f66e9a3fbec53eb2" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-arm64.exe", - "hash": "bc144ecf6a370c4885663513571ec865aeffac1ceb91f4b089bf5e6c39819c27577f9fb1dce5991952e2fc38d2a29eaddb851e14b4aa7b670934f6f9fefda39f" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-arm64.zip", - "hash": "0fea090b348df52be11c7053429fd82227e5d5093ab758c756f091ebb2c1f6e47086bbb8a23ed1d6eb97b6b4960b0b67639ea6025b2d516e1e30f7cb458b3ead" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-x64.exe", - "hash": "3610d07f38263fb7a3f107b0c7a3b859f08103ec3eec7c9256e90f68313de9d88f306041e2eb79fcb4085152b86d8a6ca100e56aa7cb7a8e87b8c3cc08f12032" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-x64.zip", - "hash": "0f54db8195bc2082feb9895be1effe9e5beaef9158f18570dac752877177ced94bc8b2da12468dd3076d8ca5c573aed032bd47de589d52841adbdd27eb9c3b2f" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-x86.exe", - "hash": "bfbbbd3ff343b621a573a237468ae93e0ce186347b9147470c40dc938ec675fc6c16483753317062d17c404efb226d22a924e72d67bdcb649346453d36a063ba" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.6.24327.7/dotnet-runtime-9.0.0-preview.6.24327.7-win-x86.zip", - "hash": "09cc78ee9c8fa1da7415d007e541ad674b1a103349ff7467fdeb18483791fca6268411646ee1df030a136dc66f73473ccb020a65d48186ff557f701ef11bbdf0" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.6.24328.19", - "version-display": "9.0.100-preview.6", - "runtime-version": "9.0.0-preview.6.24327.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Latest Preview)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-arm.tar.gz", - "hash": "9e57776a5fbb257e39318d485d02ec7a0b07c680cc6cf9dfc8a6cbebd98c6eb70f39131c3bdc1ea1a34a4df2c9cc9ed4f512ee4be8156f3ecd9f36c32e371e77" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-arm64.tar.gz", - "hash": "f4822637ed89f856736bb947cfc1fd4f1c81452016884cdf10ca9ac97c36d5bf810316d534263b3219843096fd5ffc15972714041f85caab243efb5fb910d7fe" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-arm.tar.gz", - "hash": "b3e1bfb0f46c5d49fb44a38bd1725cf6cf2660f34ee3457fea7b73d477f41b686e34b363ebd5000e2d8e16e49f9fb800721106cf5546fc6c4f5fefccaa2ad955" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-arm64.tar.gz", - "hash": "49c15fb243534f54bf2711bc10b5e233acd2d76459110f87e9e756fb312f63a6ac61bba106028a73a9f76563230eabe66fc0c03a8dc8e82922231c333e8ab87e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-x64.tar.gz", - "hash": "6e57001dac6b78de5976529543709b05d5cf57790a72904c72ad35215646a03c9f1219aeb6c4e979a7a86d6ca20f65b4febfe87f12291f61b52704291d40ff87" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-x64.tar.gz", - "hash": "ff040c456b096aeac707053517d5f9f5f0df92b6754a4af6b6fe635fd8f4a569589b8241cbad0c5db998dc5bc54682b2f1e4dc4f3d88024a3ef56c1ecc9f4c97" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-arm64.pkg", - "hash": "a323f9856ca9ac447d0a34f7aa23fa8d3360b8db2ac63bc882227eb1bccb927f001879dd77dfa61ee9b5a188569f98c3f4139e7dfc2bcf0cf33b6d8db0bdf8ef" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-arm64.tar.gz", - "hash": "0aee16fc9a8e9729a5016d12e656ea2f8f0703116a778d3e33cc05c7f2d9870239fb3a0f4e5d7152cd7d6942c41853855fced70f777cbb7d40b5a3e03da2b4c8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-x64.pkg", - "hash": "ae2437e7450a2f001e380ef61bb2dff22ffaf087452dae2191122c5a3621b92751c8eed7a7a3d231d3ef7ca3189bffec6637e6f9b675ddb097c98b928445fd45" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-x64.tar.gz", - "hash": "db4e9122cb0ba6d4560a6396cef194735ad41c22ee8cebbfedd41c7b8eca049209e9eedb5013927d6a1f76fea134b78e637c0b3d02523fa7f7a7d4311a059c18" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-arm64.exe", - "hash": "9ce4ef04fa4d9e4e7872adc104f54060761c2ced3f6c2a866f345cf2f36fd8ef5b044025afea64534b5faaa8ab5a3d81724b81ddcba6141818977a40c906b39d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-arm64.zip", - "hash": "d67792819626d5292fce195e57a541078e604f012d706f71b0eb3414249d32c8ab8e85ee46065c5503fc3d31601705d30543883876c862e95c2c31c032474eac" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x64.exe", - "hash": "c13e4012dccb0037bcd7d48593947765a5faa05a2181bd2a3a7e32a5acfc74fecb251f602652d82410fb10b8f7174bf444e5a50dc226f137f0b1ced6a31976e5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x64.zip", - "hash": "cc4a5ecb76cbb5efbe229f8154451d6866e2157f4124fedf7588706b8a356babb0c1f1007317336803bf9674a988f2f6ac7e359d6390521ce4bd355fcb6831c0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x86.exe", - "hash": "9ff4057a1c5e7b5fc088415244ea795462f708ba6fff4d68bd6cc0e2cb7d10ecfd7ad2b6157999e1a815cc6ba01fc816c9ab5a15976eccc2f5adbd7c815ef8bc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x86.zip", - "hash": "50587f8d0f40cbebc6a56eb5045a458e4f78f26a76c9a98313832ac6aa623120e72eb3028b39babeb635efc9518716bbe246f08339a5c75ff8b2453a32e22b7a" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.6.24328.19", - "version-display": "9.0.100-preview.6", - "runtime-version": "9.0.0-preview.6.24327.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Latest Preview)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-arm.tar.gz", - "hash": "9e57776a5fbb257e39318d485d02ec7a0b07c680cc6cf9dfc8a6cbebd98c6eb70f39131c3bdc1ea1a34a4df2c9cc9ed4f512ee4be8156f3ecd9f36c32e371e77" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-arm64.tar.gz", - "hash": "f4822637ed89f856736bb947cfc1fd4f1c81452016884cdf10ca9ac97c36d5bf810316d534263b3219843096fd5ffc15972714041f85caab243efb5fb910d7fe" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-arm.tar.gz", - "hash": "b3e1bfb0f46c5d49fb44a38bd1725cf6cf2660f34ee3457fea7b73d477f41b686e34b363ebd5000e2d8e16e49f9fb800721106cf5546fc6c4f5fefccaa2ad955" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-arm64.tar.gz", - "hash": "49c15fb243534f54bf2711bc10b5e233acd2d76459110f87e9e756fb312f63a6ac61bba106028a73a9f76563230eabe66fc0c03a8dc8e82922231c333e8ab87e" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-musl-x64.tar.gz", - "hash": "6e57001dac6b78de5976529543709b05d5cf57790a72904c72ad35215646a03c9f1219aeb6c4e979a7a86d6ca20f65b4febfe87f12291f61b52704291d40ff87" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-linux-x64.tar.gz", - "hash": "ff040c456b096aeac707053517d5f9f5f0df92b6754a4af6b6fe635fd8f4a569589b8241cbad0c5db998dc5bc54682b2f1e4dc4f3d88024a3ef56c1ecc9f4c97" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-arm64.pkg", - "hash": "a323f9856ca9ac447d0a34f7aa23fa8d3360b8db2ac63bc882227eb1bccb927f001879dd77dfa61ee9b5a188569f98c3f4139e7dfc2bcf0cf33b6d8db0bdf8ef" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-arm64.tar.gz", - "hash": "0aee16fc9a8e9729a5016d12e656ea2f8f0703116a778d3e33cc05c7f2d9870239fb3a0f4e5d7152cd7d6942c41853855fced70f777cbb7d40b5a3e03da2b4c8" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-x64.pkg", - "hash": "ae2437e7450a2f001e380ef61bb2dff22ffaf087452dae2191122c5a3621b92751c8eed7a7a3d231d3ef7ca3189bffec6637e6f9b675ddb097c98b928445fd45" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-osx-x64.tar.gz", - "hash": "db4e9122cb0ba6d4560a6396cef194735ad41c22ee8cebbfedd41c7b8eca049209e9eedb5013927d6a1f76fea134b78e637c0b3d02523fa7f7a7d4311a059c18" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-arm64.exe", - "hash": "9ce4ef04fa4d9e4e7872adc104f54060761c2ced3f6c2a866f345cf2f36fd8ef5b044025afea64534b5faaa8ab5a3d81724b81ddcba6141818977a40c906b39d" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-arm64.zip", - "hash": "d67792819626d5292fce195e57a541078e604f012d706f71b0eb3414249d32c8ab8e85ee46065c5503fc3d31601705d30543883876c862e95c2c31c032474eac" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x64.exe", - "hash": "c13e4012dccb0037bcd7d48593947765a5faa05a2181bd2a3a7e32a5acfc74fecb251f602652d82410fb10b8f7174bf444e5a50dc226f137f0b1ced6a31976e5" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x64.zip", - "hash": "cc4a5ecb76cbb5efbe229f8154451d6866e2157f4124fedf7588706b8a356babb0c1f1007317336803bf9674a988f2f6ac7e359d6390521ce4bd355fcb6831c0" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x86.exe", - "hash": "9ff4057a1c5e7b5fc088415244ea795462f708ba6fff4d68bd6cc0e2cb7d10ecfd7ad2b6157999e1a815cc6ba01fc816c9ab5a15976eccc2f5adbd7c815ef8bc" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.6.24328.19/dotnet-sdk-9.0.100-preview.6.24328.19-win-x86.zip", - "hash": "50587f8d0f40cbebc6a56eb5045a458e4f78f26a76c9a98313832ac6aa623120e72eb3028b39babeb635efc9518716bbe246f08339a5c75ff8b2453a32e22b7a" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.6.24328.4", - "version-display": "9.0.0-preview.6", - "version-aspnetcoremodule": ["19.0.24180.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-arm.tar.gz", - "hash": "592961f315d2ec54687c5c4f2a6a15eceea2f5eb7b4e3614adf777c395f611a280b454f43f98f528a1b4a96cc8514b2dcdf22bb30ba6cc182c40fd07f50ae7b5" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-arm64.tar.gz", - "hash": "55e5ea839ddf9cb40d538af961e26959a2dbeaa2dac5de3c85ea50b15927fd5f132ce614e2e4abeb2c8f46f13902cc5f04591f4d12196ae0f8761822e107972e" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-musl-arm.tar.gz", - "hash": "836212e6c83f790096bcbc131f7bea1175a0ab17898c8e872e88bcb0e27b52e5f94cf27dcde815e54e102610cf2d002ffed4f325da815d3b6be416d2425f0d46" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-musl-arm64.tar.gz", - "hash": "f7e0e8c258d4199c3e79fbdfd12f2ccd02cf57afa9bd53add921f40e05bf300c29dde18589eb446e1a13fb0833eabecf46fe15ce04fe5cba915fcab6ad1091ac" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-musl-x64.tar.gz", - "hash": "c95601ea6775f229a7de6daf8ae92b947ae7942b134de7cb7073eab22114c940738b44273f6ddaafbabc5363c9f4cde1eff7423781b5a821eb9b0aa2535a3952" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-linux-x64.tar.gz", - "hash": "4e178bbd26c70a3f1690c2b84b01c5a43cbf546adc878617fdf4c39d10e8063684420126261aacabcaa7f72c697290c1c06d3e93d9f3babe57c72d5fe98346fb" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-osx-arm64.tar.gz", - "hash": "181c501df6e92ecf85d4c81df755eb06b1734d1814653818164175977a40ac94044341d97c8d40b185dd70685eb55212e9fbb93c4538dbc48529433a336d6af2" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-osx-x64.tar.gz", - "hash": "b80a2ab4ed45878a7817fb0a60da2e1a0f1a4f4477e8e15a6245e5b94fd4cf4fb57dc57a6daa9c8256648e42f1d33a7680a4b8b8eeb41a0d4fcd020b0e216e06" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-arm64.exe", - "hash": "17d77898cc0dbe726ed9db15903e1698f6a768b20a44409fb2f3527d5604f57b500fa5185bdc18932ce578406a887ee3fab9668866ff548ee8ad3a07d4c3c9cd" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-arm64.zip", - "hash": "87db6953ae3919633447cf598b449b1bfac80c7a1ca8be1cd573076a90de0e67e312180804a27b487737fd75b42a77bedac0232c5e399b1a5c5acddbea834d7a" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-x64.exe", - "hash": "27b9c3e84415ecb777d1bd8e2521825f9983a35ae1f3f0f17b9178d3012c805f65d9789644c3bb1a18731b33e5d760ab433984268d07c7b5b20dee42d65971ca" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-x64.zip", - "hash": "6fbb3aee8c4844b0d578edadb4f4120b4ddeaaee1f5925a7c986746227a50a7586993879b338e93e932c7bc2145285e096e67cab374a71b5617e1ad1111453c1" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-x86.exe", - "hash": "fd935802e478dcf3bd539b41b280d008a06c605887d6515f8a659291a592a003cd0b9c19349e5b96da36c8eabb6b2e2b9b7cabd3c12b0d3f44df1d7d05b063b1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-9.0.0-preview.6.24328.4-win-x86.zip", - "hash": "c6ef82bbb4cd033183bc4e7938590ff595721e59cb80ec38a5b9d3985822972a027e1b18cf880161830a78e6b5cb3faff29ea71439fe4db6385002fdb4e5589c" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-arm.tar.gz", - "hash": "7ba1c3965913cc462dd18e6076b0bd5b2060afcaa87da015036c4a855fd49a651c32c230963a610c5142a2d6a3d845b1d766df5273cfee78b20550c9d35ba61d" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-arm64.tar.gz", - "hash": "4f400682bfdbb8644462ef49ed267142fca9b0823b80bddac759285b3eaa5e71a03d79e3d7bb1fd2264dfe68e40e9e647e619e0d4cdab24e18fd1bf7d8914c36" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-musl-arm.tar.gz", - "hash": "bd2d95e485d363156931c7fd451937e88fab482aa1fab8d2425bd2b02192afb1513289ee7b121850f82ab19aaa66a952aeea69deb5e5806321f02ef22ca338ee" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-musl-arm64.tar.gz", - "hash": "bbe4754055920ecbe0dc4f16347834be3b5cc4fc8903e4ca9b520dd166dd02696a03ad6dd0a266f836d2cc437eed3c4cc372497f8321deea49733f7a690c13f8" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-musl-x64.tar.gz", - "hash": "519569f665d13409fdc9444d17ff9cf77275ebc4f0a6b29c290b70c51ca1be60ab557962b4ed118567956b0aa29c6bf84e74845b62ebf47e579174c44143b4b0" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/aspnetcore-runtime-composite-9.0.0-preview.6.24328.4-linux-x64.tar.gz", - "hash": "30249d6228d37f5a76ea75a130afedc71c62b7e7618474dd25aaf87734bdf39758bf4ba318924e74e3d955cf511e6b537f016cb88a30685fcd00e783aeb0ecef" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.6.24328.4/dotnet-hosting-9.0.0-preview.6.24328.4-win.exe", - "hash": "5820ce5df0099855ce078b8f7c2039f6680afa9f3a7374d20d33624a0774026533b98cfa48b9d846257a8c1b17fb5e843476d23c6b49687b412270a4b670ca04", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.6.24327.6", - "version-display": "9.0.0-preview.6", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-arm64.exe", - "hash": "8f5d4d070541105ec838e79ec36e097e281ebc7f947fdada663ce8f91ea1733f4c25b711bdf90ace632135ff1b44c6ab4d06fd19b5ce5c860a2f36f33a0562ec" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-arm64.zip", - "hash": "8c263fc12fc160eccced8069fff1e8d12d96a25dffd3402b35de7bd5ddab7591562445e4f05f82f49d7b989777e5b4496fa7593faa96e6ad9095cf79431831df" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-x64.exe", - "hash": "88a39af22ef1e01e9161db019daf35edc2ea8a9bd359a4e10f9b9053bcd81babdf8867f2cffb43508914991648605646a3ad9c7d6e23e08d6010e9d64e573d28" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-x64.zip", - "hash": "e16afec8e8615de42d766e3ba1c4318458c6cb1c9a08e60cd21eab32f36a7cd10acd942c05733e29a1997355155f7f188913da39cb4646e2d2205dc0b36a06cf" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-x86.exe", - "hash": "79b565fed3bcc8eed6e430dfd162ed59a8c6d9d8e860cb3ce9ed9237a2cf654310527d7667fee891cd1cc9c103e81fb6bceb23e08e8512c0dae7edf57d49a277" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.6.24327.6/windowsdesktop-runtime-9.0.0-preview.6.24327.6-win-x86.zip", - "hash": "076f7760efdb5c9123dea168bdebfb714b541b817f93b8ca73f6b91137ac90b71110c954721b1fae004de685c75eed4b50973b304b873b997d0698516c5ee91d" - } - ] - } - }, - { - "release-date": "2024-06-11", - "release-version": "9.0.0-preview.5", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview5/9.0.0-preview.5.md", - "runtime": { - "version": "9.0.0-preview.5.24306.7", - "version-display": "9.0.0-preview.5", - "vs-version": "", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-arm.tar.gz", - "hash": "0aafb3386223e1d06e6e2e92255a198a10780f9be82fe430f3a0ae450a145f8b266e1075825a9b20392d0741a226d6552ba3c06acaca11f4d223285e3794a651" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-arm64.tar.gz", - "hash": "8e49eb2e279684c665031e04c915d63c19e617bf44194655374c957bb13d7f22c8c0e233196711c029653958f98788732e1bbf200d22fad27f76523d7506a91e" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-musl-arm.tar.gz", - "hash": "62aa5ac3fb049900dceb7eda01fc6d0392291ce15a26435c5ce502c0dac607d1d38c29864c3042838bf82da0294b10ff245211bac51f1c3a21e05eed8ec5a290" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-musl-arm64.tar.gz", - "hash": "d81305d5715c84ea1c424102714198f974e977ba24b5f40ed38288c38b3b0d2ff55f0c4803a9535f8b4f2c1bc3456fdce94a30b9ba49dd02ebf4c259a80fe48e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-musl-x64.tar.gz", - "hash": "8c41a36a84bfed4b74a20329566146558bb3cf4ba6b9aec56e93a1c7c2439a7a3c54dc7b152b1c822a6067cc7806557958c6f6389d535a83205651d9ed80ba51" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-linux-x64.tar.gz", - "hash": "6d5a313eb3213bca2ac209021218d978a7d8291041f4572780dfb48b5ccb7efe9ace509c75dad1db8e6a427c0bd5e4b2596c3e9f66eec5df4e717a66f8c3d7fa" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-osx-arm64.pkg", - "hash": "e1eb051ebf5e909c89dd24409a7ea888661f59600f97de0835aa01a4f443f21b7b9cd103c64f659778c4d5396582f4ecefce7b4fea91921f0f3d9b3e6a40f121" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-osx-arm64.tar.gz", - "hash": "7c61293b719016dc8212e5564a80a3686a6947d220e2243438616559995c2d415629bf583148513d0691325ebdac91b6a13cbf4d37d7328426b73989edd8ef7c" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-osx-x64.pkg", - "hash": "c07849bc1360081e99c76b389bddede1a590ab0cedef5f53eba70c65a8eb6eab4e25ad5f0596ecd65ae1d55361164b2c04c57c22964e60ffe7b1cbb034c7dcf2" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-osx-x64.tar.gz", - "hash": "617847ec35016e4c51359fb8585563a432b8a9ff2c6656d6c10f2e3db70c20dada36509a73b31622c91ccfd5246f51c1c0df79852035f65521ac3f78943f37ca" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-arm64.exe", - "hash": "1ba7123b16b25b6b04c8fde6b0c1e8298453cdd60c0a43b43374c8612071fd4939cc0ff62b6179b28dac654bbdcf2e81da3e249893718d41145b0d7d62f9f4d7" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-arm64.zip", - "hash": "d29287f4fef0999a5bc8aacbe327e374b83720d0f4c97fd9886e7e2f1f298b41d9ec3ba0d98f866ec63b6a25644a74a77eb291397a6d8f51b0e0a5920e98ded2" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-x64.exe", - "hash": "9f8e928c896edc6807639286eb4d064ffa931a4a9c4cf166e6e3969ec5f3f2325a376810a8842376d9ef22fd832ab94b95772faf438593c37730b23316cce290" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-x64.zip", - "hash": "078864a20e4efe15aa1008bcd1696474dcbeca721e1c2d13dd8f11652630cc1b7adca74591fe910424c56e565fa499785eb882ce3889b87d476de0181dc71e83" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-x86.exe", - "hash": "49a755ac3c9ae403290856a2255f5574d180f29a5c3b6d5def899fd1f72adf886b0f051e7c73c02f56c021259b3d02d416d4f5531f87bf8f7adc2da58d6ff1e0" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.5.24306.7/dotnet-runtime-9.0.0-preview.5.24306.7-win-x86.zip", - "hash": "7b23fa2374bc68a2288e410a0a2c96e9b69c814f0f801b3ef68f8f49aadad26cebf20a1199dd415ac73670891124b5ac354131c03ac3b1f4921fa6c48706c86b" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.5.24307.3", - "version-display": "9.0.100-preview.5", - "runtime-version": "9.0.0-preview.5.24306.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Latest Preview)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-arm.tar.gz", - "hash": "39b94bed670ffe0abe0482222cef8d706995ee00531e077b856c6cc600cecc81bfe34c1d0cea3172796b694fecd150f350e08d2884e237dfc024d942667b1676" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-arm64.tar.gz", - "hash": "3c6f7e6f2f56e86bc8a9633f50129cfa992c52c287dc89551b23cd62fa471199e90392eba7414659c8ff8eecf1dad04016615a98cf85f6c2045d61f6f14c9e73" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-arm.tar.gz", - "hash": "347dc481e1c752e1560ac856d3dfe53b78c42e5c70d7eaeae820329a03a46b2ae9aacfa150fe8a8e141b82ee79373cd417c99f75166ee036cc5943fcb358db5d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-arm64.tar.gz", - "hash": "4a98db47ab702ad98b647cdb4db2e429d41a8759c174c0b8ff16b98644feadb9b094d268701b4b8a0651e795d63971715231d36caeee197a24d7298081a20cd2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-x64.tar.gz", - "hash": "085a930d44dc9c8048af4bd3cd0b370b4b8a8abc10393d118fa9594812d23cc37cd3ca56c5bbe35bac17c83885c411e32179fd689c350d59de09a8c8724b8bba" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-x64.tar.gz", - "hash": "13b9934b3e7b736ab802a8c580aad95ed4dff6b8f31047c71ce9ffcf4d07e55105d4b0170d309551707b9d232d297cb305c67ed5b5f7026f47ec072ee1bbc121" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-arm64.pkg", - "hash": "c578766dc35c61bafeb6ab07e70b6e6664504d2e5560bc37aa50fc75690dac485bb635c86d9264670717a04514787a0344561ce428e30e25e17f820fc2cd8d09" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-arm64.tar.gz", - "hash": "8c1a13d14f2502d3897871f82abd2c2df8cb41ff9d754e79693b99d0780deb910dad7486e05ec065c4a38490de00d251c64b0b2a734863e0a452f0ed23b1e1a0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-x64.pkg", - "hash": "c82ca4055e7d2d8cae3f9a9924a9fc05392f3b58a5bf4b690efc233d61c061e185f2b125967733bf69936d5db8b1a4d06dcbc3c1d28d3bd131edcedf780a2697" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-x64.tar.gz", - "hash": "ebb84f920a7bb663238a10007d784a7c90f66d073089371fc2c9d5556cba945918fd8b193e02eb3d889676952b79616398aa2555d7d46d080088f01f67ede43e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-arm64.exe", - "hash": "a8e398611736c4a5a20402b2cb9de2b3320319e03b0904182f258d095523299c7c2ff6774df9301baf1d8bb4e1f5ae0985992ef21c89ef668f291db3f1dafb77" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-arm64.zip", - "hash": "137ae59e968091bca5316452d4345830b5743578a65167d493d3b12242f54d6cf40181471236060803a3e29e51bed254b86dc436582bece8915666dd0193cc0a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x64.exe", - "hash": "911abd43eb7b7b49eed69304dfe2e0fab3360bf7e72d5e421b2954e1f6dc33e9db7dd4bf357382e57d71b663c3bf242284592a4130c9141d9c782e602edb6779" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x64.zip", - "hash": "297797f709933f435021be0068bdf9e7051e493d60212c29a9746cb5e6672ee8f2f6a2b2c214f1d4753e87e449faf712f60edc7c4eb32d34e555dee07c8a04a2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x86.exe", - "hash": "2223918e2b3bdc3623a7ff323ae5c930da47408c1276035c10408de80a65c9220d9bcab79435690f9d0473e60939935bd5ce77a532486deb89b26b9e9b4417f3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x86.zip", - "hash": "8d167c0926d6d3aaa7739c7417039b9be27aefa4b7f52fef3c6503173d3580dbda6e688bd68716e07441aa072d9bc94faaa34651c2ff0b57a06fec65a8a81260" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.5.24307.3", - "version-display": "9.0.100-preview.5", - "runtime-version": "9.0.0-preview.5.24306.7", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Latest Preview)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-arm.tar.gz", - "hash": "39b94bed670ffe0abe0482222cef8d706995ee00531e077b856c6cc600cecc81bfe34c1d0cea3172796b694fecd150f350e08d2884e237dfc024d942667b1676" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-arm64.tar.gz", - "hash": "3c6f7e6f2f56e86bc8a9633f50129cfa992c52c287dc89551b23cd62fa471199e90392eba7414659c8ff8eecf1dad04016615a98cf85f6c2045d61f6f14c9e73" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-arm.tar.gz", - "hash": "347dc481e1c752e1560ac856d3dfe53b78c42e5c70d7eaeae820329a03a46b2ae9aacfa150fe8a8e141b82ee79373cd417c99f75166ee036cc5943fcb358db5d" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-arm64.tar.gz", - "hash": "4a98db47ab702ad98b647cdb4db2e429d41a8759c174c0b8ff16b98644feadb9b094d268701b4b8a0651e795d63971715231d36caeee197a24d7298081a20cd2" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-musl-x64.tar.gz", - "hash": "085a930d44dc9c8048af4bd3cd0b370b4b8a8abc10393d118fa9594812d23cc37cd3ca56c5bbe35bac17c83885c411e32179fd689c350d59de09a8c8724b8bba" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-linux-x64.tar.gz", - "hash": "13b9934b3e7b736ab802a8c580aad95ed4dff6b8f31047c71ce9ffcf4d07e55105d4b0170d309551707b9d232d297cb305c67ed5b5f7026f47ec072ee1bbc121" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-arm64.pkg", - "hash": "c578766dc35c61bafeb6ab07e70b6e6664504d2e5560bc37aa50fc75690dac485bb635c86d9264670717a04514787a0344561ce428e30e25e17f820fc2cd8d09" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-arm64.tar.gz", - "hash": "8c1a13d14f2502d3897871f82abd2c2df8cb41ff9d754e79693b99d0780deb910dad7486e05ec065c4a38490de00d251c64b0b2a734863e0a452f0ed23b1e1a0" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-x64.pkg", - "hash": "c82ca4055e7d2d8cae3f9a9924a9fc05392f3b58a5bf4b690efc233d61c061e185f2b125967733bf69936d5db8b1a4d06dcbc3c1d28d3bd131edcedf780a2697" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-osx-x64.tar.gz", - "hash": "ebb84f920a7bb663238a10007d784a7c90f66d073089371fc2c9d5556cba945918fd8b193e02eb3d889676952b79616398aa2555d7d46d080088f01f67ede43e" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-arm64.exe", - "hash": "a8e398611736c4a5a20402b2cb9de2b3320319e03b0904182f258d095523299c7c2ff6774df9301baf1d8bb4e1f5ae0985992ef21c89ef668f291db3f1dafb77" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-arm64.zip", - "hash": "137ae59e968091bca5316452d4345830b5743578a65167d493d3b12242f54d6cf40181471236060803a3e29e51bed254b86dc436582bece8915666dd0193cc0a" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x64.exe", - "hash": "911abd43eb7b7b49eed69304dfe2e0fab3360bf7e72d5e421b2954e1f6dc33e9db7dd4bf357382e57d71b663c3bf242284592a4130c9141d9c782e602edb6779" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x64.zip", - "hash": "297797f709933f435021be0068bdf9e7051e493d60212c29a9746cb5e6672ee8f2f6a2b2c214f1d4753e87e449faf712f60edc7c4eb32d34e555dee07c8a04a2" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x86.exe", - "hash": "2223918e2b3bdc3623a7ff323ae5c930da47408c1276035c10408de80a65c9220d9bcab79435690f9d0473e60939935bd5ce77a532486deb89b26b9e9b4417f3" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.5.24307.3/dotnet-sdk-9.0.100-preview.5.24307.3-win-x86.zip", - "hash": "8d167c0926d6d3aaa7739c7417039b9be27aefa4b7f52fef3c6503173d3580dbda6e688bd68716e07441aa072d9bc94faaa34651c2ff0b57a06fec65a8a81260" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.5.24306.11", - "version-display": "9.0.0-preview.5", - "version-aspnetcoremodule": ["19.0.24159.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-arm.tar.gz", - "hash": "5f41868ee89d47b391968d7f01772e6c223ae12d7d86461d38972f56de8e6278ea0aaf723d736bb2f03ddfb7ba0627f1ce7f0447c62aa6b48854b5434b33da9b" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-arm64.tar.gz", - "hash": "6e6198d26b16ebae7bf7f7a428b0026d3c7edb20fa0acf844670a98cdb78a8b0d37cad5df22f35dc3379de8069fdc95318f5eeebcd5b03ad99cf595699116abb" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-musl-arm.tar.gz", - "hash": "44628326e3efb241ee24e9a39abf6f4318d415d1977655d8fcdbdb8c61aa05f4b4c058dd8c0c52cf206c3979e5b5b2cad86cdb9f56e0a2b10bf2d9994ae8ebde" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-musl-arm64.tar.gz", - "hash": "dfc4e8f082214ff796ca6b3c548b38b1e61221faa90eb96e1f19771f14197e2e4ee616057cd29b37addeba91098ba151859be8eb51015b1bc38113fe2d3c41b6" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-musl-x64.tar.gz", - "hash": "f82ec65e016c0996b74c144c1a11de7d2f3bc8bf7a51f217d697fc8a019039995df23c7e64df1e98950ff5cb3a8f3c815735102288bd73efd1192a20f21761c2" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-linux-x64.tar.gz", - "hash": "b4358041bfc42bf614644e7f3c38a4fb73185a8d3541065bfd6758622860b0d0addff6a7ab6e7439d029b0b54238864279d19f1b5096b5d7c0fd10c0435e652e" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-osx-arm64.tar.gz", - "hash": "f6ed6cc22e20e986cf54ddd0c8868b524efcf84ccbcd5335bdb4ac44fbb08641850448aed5d85bcfd2d403b3a89a73cb932d73db1b590cfc704a58aa8ec79d5f" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-osx-x64.tar.gz", - "hash": "104b0b8f216bd36710ee912c92c89c4a5be97774eb21cf090c5c12acbe3ff8a8ec22a2b2bca56feda8aa21690c734d5a4b8293569cbf45172ead6b587d3858fd" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-arm64.exe", - "hash": "93c04f3dfd446180cf143d8839abba89f389b3def23489b249636cba3a7a032406066a0e6db67adb3f9a87897778ec11117599a6524b5e0b69b470edfee10314" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-arm64.zip", - "hash": "6f49d789c314b1f3ead17d2c9870f5255cfe53871418ba626946b4128bde87d24c7427bc9176d98c528f458a69aa11ec016bd0e4a23a8f129351dde43a84de5b" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-x64.exe", - "hash": "0a1f2b3d84864c543fb1882eca2409730bdb8f661422e13d53f664d90b9133d1a651d095467e6881491f8326fd31ab533cff480352af2468e4369fa12fec5d23" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-x64.zip", - "hash": "b5d2160fb4af420ee73cb9205372518d9401333b91a1852758288b7fe9f198092ae4e029e4b49164d5c8303ca4c8fd0845280d70e2c79d5679ba6cec6c6045b0" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-x86.exe", - "hash": "1a209d3bcc4e29dc7afb0bb0aecc66e0762640030d89a32ecd61387c9eeb84f48147a095dfaef4b79c27d3b682a250e3f3de7776e7d0c95570d18f8bef41cdf1" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-9.0.0-preview.5.24306.11-win-x86.zip", - "hash": "19d750ac6418996ae9bece2198ea576cba161bf5e4670f256ba2f17972f7bacbae35463bfbb40a32887739fa8b2dda906df395df150b356f2350e00279ad20bc" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-arm.tar.gz", - "hash": "2b80333b0c8513ed18adfa715121290575c71e0101f920b8bc105d3d81ce3ba104a823d36a8ad5c871b6db42d1078b19f72979ca4e1225ff0f15980ab5aac5d7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-arm64.tar.gz", - "hash": "441abcf355a94f02929f3bb16899180ce3e253daebd7591696dd7f934e5d2033b341a1cb1944b06e0b205afabc3189432fdca26d89bd80f82db132d5589262dc" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-musl-arm.tar.gz", - "hash": "976d8f04c387a42f107fd4a0c1ecef798cf1d3a3e961aa4f06bd9ddf08b15155cead38876d4cda60ec68664562d7883f03e642aadec32693c6a42265cfad4463" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-musl-arm64.tar.gz", - "hash": "ce547b2e4249f0028fb12b5d2f16560c959263874b63983797128ecc091099f374c89dd2386aaa8db9ac559114255932ccca9511378bc0a43db05e99408d333e" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-musl-x64.tar.gz", - "hash": "abf43f18b74bca8a7e6e4c2faf136eae844012f6a1e77e886e2d5a414c0bfd450de6d0916a78951218e39f8c162ea5803a061e833fb73763e9c56ef821b684f9" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/aspnetcore-runtime-composite-9.0.0-preview.5.24306.11-linux-x64.tar.gz", - "hash": "5273644b48020ae3cfddd4035f17b0499d9cb0bc253bf53b6332bba0e8460b1994f0a4d3ad7d644533d84fea481cc521294f91e9e28608b815d9b332de7fc075" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.5.24306.11/dotnet-hosting-9.0.0-preview.5.24306.11-win.exe", - "hash": "04a1299e7fbf65ad6587f58013c03cb557e34790193aeb98af95a29e26bf836649730d76060042b0a99566d85b02f4aa69a5558aa777865b087bd59cb6f8d836", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.5.24306.8", - "version-display": "9.0.0-preview.5", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-arm64.exe", - "hash": "483b81fbada3d60b94c7bdd6163c04449243aadaf5805d0135ab732b9a2a7aaf1a271e6de37b0704b1586523751a30131ac42415bd841ffb4cf77d5eee9d63ed" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-arm64.zip", - "hash": "d4b865cdcaf3e346b16eaabff77c4f2a911a408c37439dfdd4f632170dec2900b8745d0fc80fe8463ef25b768031c2b741663a8e02bdc930de56d14076996cc5" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-x64.exe", - "hash": "c294acd9d6b022193f12605adbb1cf8609990455990d46ed307a5b9cae2d0977b4e81dacbaa7539386059307b83e7f4de07c22644689f7df109346970bd569bf" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-x64.zip", - "hash": "85e7a9465091f4bbe63c47938f042404e40ccf6b1f217713994fc67404a95607cb0664543cabc54b3aa017233243299139a1ac90570e36a0a3020bf9c15f141a" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-x86.exe", - "hash": "0d406c96f0c38eb1a887bd7327c0bb4c75c456003098203b34100a7c64e06072e2d7b913714a9cd64f9fd727203f1b30f6aa51a99f40503b9da6d0a70a7fe1e9" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.5.24306.8/windowsdesktop-runtime-9.0.0-preview.5.24306.8-win-x86.zip", - "hash": "d3b44cdad9da672e4cd4480e2092f2492455b3e36f25782e323af9b79d29bd57997164c0395bbd10e4cbe8a8bcde63e021b8e64ef6a1fa8a3b137d276ec55d5f" - } - ] - } - }, - { - "release-date": "2024-05-21", - "release-version": "9.0.0-preview.4", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview4/9.0.0-preview.4.md", - "runtime": { - "version": "9.0.0-preview.4.24266.19", - "version-display": "9.0.0-preview.4", - "vs-support": "Visual Studio 2022 (v17.11 Preview 1)", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-arm.tar.gz", - "hash": "9ecc3c6afdc445b0008d8f6bc7a0635ba6abc00ed0e5b66be3bc2e4a4da2579d0c1cce848635a5046a086f2c7154e3befeb9176219af7c8feadeb41a78b1ea5a" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-arm64.tar.gz", - "hash": "ce8c21b6c854b6772578e84d42e2df5f5144d5a15aff3e6d48953feb1aad517215b6349c20fc22542364a9c439fe19a562f070f88eabf14b5d95ab50fe1ecc00" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-musl-arm.tar.gz", - "hash": "cd38668eb106653c9ce2ec62e8b0443f3c7c90105302afdf790153b19b677af6b931af5b2a836b226c54ab8b7f8609265f81c37653697ac15d2688cfb2261902" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-musl-arm64.tar.gz", - "hash": "969aa069d1719e7dc0c5f1abfd13d3960e58111ecfd61cf557979ec4f3e30cfb2b9082250041bee49841ac5b40eef3f80caf921b63ea148825289ccfde582f6e" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-musl-x64.tar.gz", - "hash": "964110b4637ada5eb605aa035c30f4cde754a5ffbe26cb11b63d10cb6e0f3287e746662fb85c421c4c3b9b3a334755f59c123b65799b461d22e1d53c42ad496c" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-linux-x64.tar.gz", - "hash": "b366a4f19f25281c5b325e737f8c9fe0fa97ca4e19e0e8f00cd42cac84f4134469d02558b07412c66cde62e53f1cb1a7efd68357713ce4d3e816c19ee538e9b6" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-osx-arm64.pkg", - "hash": "247fca6bd0fcdb80cc4fdfee87520b2ae12c54eb8399bb625ba226cb845971d562037b37c2d507d4d7405976410929e41ab7f9bb02c17c66e080aaf99f0867ea" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-osx-arm64.tar.gz", - "hash": "f9e8188c71ab47631c28d3fb9314b382eec31ae5592a73eaf8c944fcdc240147ac23ef4530a871e9a5deaf311b84ac5b0d5a1f4b6ff22134a8f4eda4555c43a2" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-osx-x64.pkg", - "hash": "7efa0a175811039994d605e6ddc0aa007f28e17516230d335ee1a3af469515aff8ae681aed56a7fcaafecf52f17cd93d07bb7d0d4e219d14afd9e659b0e6358c" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-osx-x64.tar.gz", - "hash": "9e7364e1448d98df03922bd315f788ce564dfcbec1a9e83c9e1437c22d8d52f72f061750de2f9e149e7662c168b7a781e7450d2c1e8b7f048cb62b360f12d6f6" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-arm64.exe", - "hash": "6c3695d936ebfde747f5d656afe764fe2bcde551f2808e4018be4358f1a98e63cc91f340af6ec2f2370165a068eb12bb45f81e4e2d4d6c7ab916fa0c491e42e2" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-arm64.zip", - "hash": "47e92441bdb222b3c69dab181504de00a1c89c75d9b42cc6b093c1ae81dc184fb962319c6cd3e6fc78835b27257e5799f04c6c8481ceee30af9163d97bb9f93a" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-x64.exe", - "hash": "5b6865c131836c1bfb2b9e78c515b3ad5aab5fa5a7317d2024d216de8964b9e749a6878a43cbf8e1b8ed587ba4641011d5250c95f6b15c5e0a2c4a0bdf78bbfd" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-x64.zip", - "hash": "61ec667e4c6394ba21748a3529969e54ca514c37c42b5acca2a87dbf7f816d6c7c4add8962efa51db7b99a7177546ad439121c53053b5fe6e01763f77f42daf5" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-x86.exe", - "hash": "5226d35e6325443448e2897a05394212a4b475025b5bf1e3702093f00daa05bb1a64be3a986114c528b1cbf7a50a3d358f8bbb5020451ca4e56aa61f6f977d76" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.4.24266.19/dotnet-runtime-9.0.0-preview.4.24266.19-win-x86.zip", - "hash": "df01e6fae6ec5aebda2ece30617bf9c4e04e105b4ccd8f3da8e790650e22c1333e5080a949f43814033fe60a2e8061be53c2923d17b2a31e61c6a0c77b726bab" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.4.24267.66", - "version-display": "9.0.100-preview.4", - "runtime-version": "9.0.0-preview.4.24266.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-arm.tar.gz", - "hash": "3728477aaba64f03f28b4690caffcc90852960d7bb573cda142a49decc394ba38cd1090e7c00275d3f8e5af0ffd0cbbde04c27102cad72814d8503281bf1fe65" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-arm64.tar.gz", - "hash": "519d529c74a972484af49ea72053466e09fbfaec0142cd924705dddc117dc40901ac22ddcb11c05caf7b43ef8cf44ec8a0a9dd4c56fbd329b0f750513ae3100c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-arm.tar.gz", - "hash": "952735f8b305ecf67f644acde4e5176a17399c4616a51a9a279d84763cb30ed67bac6b64caf2ed359f103794de5d4082d72da79f5fe5486b2f32a22e78893f32" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-arm64.tar.gz", - "hash": "85e8caab9e74882fe4959f7078d7e4f736c0c2109b6167aeacec1518348945e093839774baf2a90163f8868ae5593912caf8477f5ac8ce20e0cca1bead066da8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-x64.tar.gz", - "hash": "5861ccc9b1670a134c6d76be3ba0aa3606c8c3c110cc8415d2015c921c86bc19cc6363e64f7a2f9a3dd261e042956e55d0c9c2e5410bcce2dcefe309dae631d1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-x64.tar.gz", - "hash": "28b63633a1e6f4078ccc60218b9f7b6663eb960f0ab1c41069ed8f7f67757fa22ce9f4c04d88b9015c417aad34a7a57986451682bd7aa7b966eda45ace23d283" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-arm64.pkg", - "hash": "7d3ccf857593bfc53a60d6085d41b9e6afcb57c8e18e7e79bfc9d61bd269466c7c69cab4f3801496b1314bbaa134d6226b37493b01b70b20a8b4b7c6fa0bace6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-arm64.tar.gz", - "hash": "3791e2134f7cae53c430ae5306f325eecb84058da07d90f276f8d4045701c6c85567472ffc2c535002bb3066817683c0a8e82d23ba6ce32a52f7217867db30d2" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-x64.pkg", - "hash": "a672acfbec52b2f636614a2cff682ddde5ecd8c82eab884608af1bb7ef508ef5bd202c25e31ecece7d81766ffae6c96b518841f215bb6361bbf66f45ca6c0a1b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-x64.tar.gz", - "hash": "da35a51180e75a238b7a4b5d1a5b7e3e33f1a1c179b40957deee98c8e01a9bfade62e2c909d2e5b377f43cf2dc78687b34b349b27b2f8f841165c3c05b3fe443" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-arm64.exe", - "hash": "b855a6a68dd1e4fe93348d20a7940685ab46540a4037512d99e30269a9a941c8a740f71984876b876441597e2830aff4bc2940666043a3ba565016c491f982ee" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-arm64.zip", - "hash": "611c04fe90746c82c4902eb75a98e6219222cd82733388b79cc81fe3c9401ed261474e92993439e06efa6eec6230604bbb05a77a0894f030ea75dc22808d1edb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x64.exe", - "hash": "32eee5f12a564098fe19253a50260bffaad34fd92d7a2d10612993eeef0a78fc7aee051dff9c72738091f3c38029d4579886a626541f656e090497080ffce22d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x64.zip", - "hash": "5abe780d515bf82692752d3defe6317bdd17171ddbd5aa9b769ba8f63edd713868c26b8735ba427c9f193ac0daac28c2cd87c4321565c3b2c4545b906f5c3587" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x86.exe", - "hash": "2c3ad59a9e57b9a56aaf825f4eb23f90caffc1508c9bb5ef511865455e051fb65e2834f3ceb829931d6ee74ab81c52885c2c862d02c23a015593d6fc182030f7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x86.zip", - "hash": "ea8617ced22a2b4e0e048f3560e350cd720d5529776bd5cd5e165b139bf287624178870cdaad68e613a18122f3d2ca5e917c46ff8390a8a92631787e21a39243" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.4.24267.66", - "version-display": "9.0.100-preview.4", - "runtime-version": "9.0.0-preview.4.24266.19", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.11 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-arm.tar.gz", - "hash": "3728477aaba64f03f28b4690caffcc90852960d7bb573cda142a49decc394ba38cd1090e7c00275d3f8e5af0ffd0cbbde04c27102cad72814d8503281bf1fe65" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-arm64.tar.gz", - "hash": "519d529c74a972484af49ea72053466e09fbfaec0142cd924705dddc117dc40901ac22ddcb11c05caf7b43ef8cf44ec8a0a9dd4c56fbd329b0f750513ae3100c" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-arm.tar.gz", - "hash": "952735f8b305ecf67f644acde4e5176a17399c4616a51a9a279d84763cb30ed67bac6b64caf2ed359f103794de5d4082d72da79f5fe5486b2f32a22e78893f32" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-arm64.tar.gz", - "hash": "85e8caab9e74882fe4959f7078d7e4f736c0c2109b6167aeacec1518348945e093839774baf2a90163f8868ae5593912caf8477f5ac8ce20e0cca1bead066da8" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-musl-x64.tar.gz", - "hash": "5861ccc9b1670a134c6d76be3ba0aa3606c8c3c110cc8415d2015c921c86bc19cc6363e64f7a2f9a3dd261e042956e55d0c9c2e5410bcce2dcefe309dae631d1" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-linux-x64.tar.gz", - "hash": "28b63633a1e6f4078ccc60218b9f7b6663eb960f0ab1c41069ed8f7f67757fa22ce9f4c04d88b9015c417aad34a7a57986451682bd7aa7b966eda45ace23d283" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-arm64.pkg", - "hash": "7d3ccf857593bfc53a60d6085d41b9e6afcb57c8e18e7e79bfc9d61bd269466c7c69cab4f3801496b1314bbaa134d6226b37493b01b70b20a8b4b7c6fa0bace6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-arm64.tar.gz", - "hash": "3791e2134f7cae53c430ae5306f325eecb84058da07d90f276f8d4045701c6c85567472ffc2c535002bb3066817683c0a8e82d23ba6ce32a52f7217867db30d2" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-x64.pkg", - "hash": "a672acfbec52b2f636614a2cff682ddde5ecd8c82eab884608af1bb7ef508ef5bd202c25e31ecece7d81766ffae6c96b518841f215bb6361bbf66f45ca6c0a1b" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-osx-x64.tar.gz", - "hash": "da35a51180e75a238b7a4b5d1a5b7e3e33f1a1c179b40957deee98c8e01a9bfade62e2c909d2e5b377f43cf2dc78687b34b349b27b2f8f841165c3c05b3fe443" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-arm64.exe", - "hash": "b855a6a68dd1e4fe93348d20a7940685ab46540a4037512d99e30269a9a941c8a740f71984876b876441597e2830aff4bc2940666043a3ba565016c491f982ee" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-arm64.zip", - "hash": "611c04fe90746c82c4902eb75a98e6219222cd82733388b79cc81fe3c9401ed261474e92993439e06efa6eec6230604bbb05a77a0894f030ea75dc22808d1edb" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x64.exe", - "hash": "32eee5f12a564098fe19253a50260bffaad34fd92d7a2d10612993eeef0a78fc7aee051dff9c72738091f3c38029d4579886a626541f656e090497080ffce22d" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x64.zip", - "hash": "5abe780d515bf82692752d3defe6317bdd17171ddbd5aa9b769ba8f63edd713868c26b8735ba427c9f193ac0daac28c2cd87c4321565c3b2c4545b906f5c3587" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x86.exe", - "hash": "2c3ad59a9e57b9a56aaf825f4eb23f90caffc1508c9bb5ef511865455e051fb65e2834f3ceb829931d6ee74ab81c52885c2c862d02c23a015593d6fc182030f7" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.4.24267.66/dotnet-sdk-9.0.100-preview.4.24267.66-win-x86.zip", - "hash": "ea8617ced22a2b4e0e048f3560e350cd720d5529776bd5cd5e165b139bf287624178870cdaad68e613a18122f3d2ca5e917c46ff8390a8a92631787e21a39243" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.4.24267.6", - "version-display": "9.0.0-preview.4", - "version-aspnetcoremodule": ["19.0.24138.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-arm.tar.gz", - "hash": "e156c79c3e064e0d4ba2f2cb2fe53d2d427b2c5d62641e350278b31abe53e67ecd955de296b5e35f2e5fe491082fba8e09be67e1392874756be97487ab5a7994" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-arm64.tar.gz", - "hash": "6f457cfc870a8ea3a8f9e5cbc6b4554dd98c7380ced6f4c6f05bf918545e22937b1c446cc696125e08f964f78dacb2215c0d9e42fdd86ea1c3a4a57af199dac1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-musl-arm.tar.gz", - "hash": "2cc4b0babc021c5cfa87ca25c1259485626b71834614f40468c6e1dac6468bba7585f2f0b373a42741be109653911fbebbac9036ace4e1f79e5b6eb8ca75b1d0" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-musl-arm64.tar.gz", - "hash": "02a4e69d6a627e80b76fa6d24d5f631420a92c83763bb65392a3b34d6bb24d24e24e49cedbaaa1b835c9815da8c01d64bb17b87aea8dd9771d80c6d99d5f1ecf" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-musl-x64.tar.gz", - "hash": "ac7c5caefd2285bf9e3d6d5afb6fd99e6fc23e534635cd3300acd043c042d21e0936670515a4e5d30bb58ef9503f9765787e4ff7bda675975dec5c9d46097677" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-linux-x64.tar.gz", - "hash": "ee65f640c894ac6e67589c40682b2fc215f2ab7037695589b9f92801073a0f8a8d071c3caf4608679f61e10830f02d21e916107f77b68c58e59b1f191ec8039a" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-osx-arm64.tar.gz", - "hash": "2440f43ec72f5298679126527af6c1c410cc542a98ab4e0c5aca0ffda40d29b7dc52e1f1aaa869b2d5b86b7bcd80579bada8fe20d0ba9e48a64ea147ed3b4c0c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-osx-x64.tar.gz", - "hash": "614fc10a69d3c78a1b1478b1d49d1e5d7dcadb02b6edd1ece510b81075e19f6267a53c7252ee4cdba1c5df1353f17ad64a54a08459d3a3a8a4baf707e4bef7f2" - }, - { - "name": "aspnetcore-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-arm64.exe", - "hash": "6e1aa5c31257030364e9140a6626e818f18f71f6cb3f14b7ae37f72200984069ad60020029bf3824ee46d1fbbe55d97b90f6e68cbac3d4060aed972c007ff536" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-arm64.zip", - "hash": "412daab92de5b9eb2a27c2b2146ec4e56f422b512b4b61cba0d96e34059f59116715e4eeaae30c59c8c6c57562262ccda353a589f47e969a5d61c0d0b6119e3e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-x64.exe", - "hash": "8864e666cf561f6ad1127d1add213293e4448fa83cdd589b2ae019346f29294d1ea12cd22f4939d0989435ab3f09c7493bd2466bf99179c2693bde9be4569c3a" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-x64.zip", - "hash": "f57273459e202bf2ac7a1a2cefe7075a6400d6c8baf4da2426d76b488a5f935eb2b8ae6178c69d4b3fa252aed8b02453c2200d8f996555ac849fcb26839d8984" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-x86.exe", - "hash": "78f5e5f81f1e5af7f89dc608c0937498f23544627e97d443b6614e982ff707ae9276f64b2aa6213f09a5efa6e103a480df3477272df8b5ff0683a5d91ed603cd" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-9.0.0-preview.4.24267.6-win-x86.zip", - "hash": "abd9d4c26dc916b8009d628bcb7d05d7688fd5ee2183adfca5323241b3b1a6bb299f383179659755c30197d14a33e1fb443e4acc26e0cdc79ace6e14f79dd8c7" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-arm.tar.gz", - "hash": "45bd8e7829d00f37867fbd74e3801fdf69104db7c45e8a2e579059ef02e77ba96152a1073c7ce76ec33f2d88ddbaae92ad90dc21c741ec94ffaed8ecfcea3f1b" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-arm64.tar.gz", - "hash": "29acf67b87c29ea9e02ba05a48052ea323494d91c6c07cda8c82cca4704b60b12683fc05e8fde803fcbf00a2810d1e9581bd90125eb748a6b556b05b55f2e236" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-musl-arm.tar.gz", - "hash": "016b9e5efb3dd65fdd4a27b256cee6d10ae8541e26e5446dfec5c603f585555ac49e343dbf04db44efeb6ab5f973a2fb8ec253b6331bce3f6d5ff96c9ac80e60" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-musl-arm64.tar.gz", - "hash": "e7b353d80a12e91cab47d74e9d9624db5455a8cbaaf39c26e16d1f19dfda235a7598534c828c1c7d1ec8db85585aa8ee902267e9406e938bcb05eb1c97a5c81f" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-musl-x64.tar.gz", - "hash": "bd6900bebedbc02cad6793f0ce25361591562118c205035821355522d1b0dd70143949377c02131d65a1bea536dc1ebcf310e4a441187b4159ac54e4be419158" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/aspnetcore-runtime-composite-9.0.0-preview.4.24267.6-linux-x64.tar.gz", - "hash": "4fbd2ff0a650bfc46fca485886aa53b17e78f1e4ea28ac2933429724a409b1739132d07be4da7c163a3713b73ec2448426921bf8ba8b3901d5b05998cc5a3f47" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.4.24267.6/dotnet-hosting-9.0.0-preview.4.24267.6-win.exe", - "hash": "19885f297d2f01e20b46b69c48b8a1fd02aaaa9bf44ab7ca8b7a8ae961b0147bfdff8b8a63cf2766fb6bbb8ffe3d5dac80b1efe2a12bc4a91cd798abcb09ae4d", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.4.24267.11", - "version-display": "9.0.0-preview.4", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-arm64.exe", - "hash": "432e3d142eedb2a67eeeadb8d5aea906085d06540ed12cef9d3c6fdf55661024bf8b220ed8dbbefba3fbb6d23ed38916260e0ed935d97c39e92b941a74869367" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-arm64.zip", - "hash": "18ecaf2ac89462b371e1e281c4336b00d8b1cf72ac0f7534cacd9f184423a57c330834293506c2f649df833e15c2ff7948f9e8befb8644512f962b71c0ff0f75" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-x64.exe", - "hash": "0f46daf2f73ad038dec2b333c5b921148102622c2897a6651d76bba8a782f0bf6e29b20139c446eddf9bcfd31106eaf42832c48db7411587988fd772f486fa9b" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-x64.zip", - "hash": "3f54ad4b62953d2438c1d9d55116ada0f1f98d41698a2f3b9d6baaac2e17a32186825935a4f83dc973f0c229396ecf82c2dbb255381343db3488c722f46d0eee" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-x86.exe", - "hash": "d34b5653e4ccfc370a2667e5c8718a93b154e5f06e85f605b33d95186e067aad788a817ecf02858e7bf06c6f034868d89dc5974cf70f55756bded3a20cc9a549" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.4.24267.11/windowsdesktop-runtime-9.0.0-preview.4.24267.11-win-x86.zip", - "hash": "a5a15087e024beb729b2382af8c47ad38b08de2375eb4d49f9f5ab853725ff80325641f5bae0fa31ff9e62abb2194d648df36603c06c623d24216bd6cfbd93cc" - } - ] - } - }, - { - "release-date": "2024-04-11", - "release-version": "9.0.0-preview.3", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview3/9.0.0-preview.3.md", - "runtime": { - "version": "9.0.0-preview.3.24172.9", - "version-display": "9.0.0-preview.3", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-arm.tar.gz", - "hash": "ccbda0ce6e8220ec83bf9fd7eba030a96d2e9567bd4bf162e4b0ccc3ce8c08b855c6ec20b15f401e6b4341464d12dae219f3716102a001672fc441a4358e3445" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-arm64.tar.gz", - "hash": "3f8bd80a03a63019d0c2038119a0bccfa5b1b700fc7c22565bff2e0af425fc0ca475c13b03a666aca2f954db9e53d7505db9cf984482d4a6be1d8019986324ab" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-musl-arm.tar.gz", - "hash": "c5638c562451f2c2d591e51e014edb15111ab49b8a71016bca3d4095a74d9064184a3f5bdeb236fda59ad98dd730221038628c5ac6105d9a4eae6664a98abf16" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-musl-arm64.tar.gz", - "hash": "c8777c446cad3a37012e47625031552d517e27d32198ccb746b1544135abcf60bfc3ff7e801cfcfb72d2d8563604345e2da011fa0aa8939bacb13d8b619bea5d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-musl-x64.tar.gz", - "hash": "adace7cff420fcf0e437bdfc90b6a39b703c53301b95d2fbdaab15fb4a7acc6d8a40ce6107a8c0f30230c6c8145c28e8c0f33c2ab604c6d1946d80dd8d350c48" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-linux-x64.tar.gz", - "hash": "244963004ced27054eb1c5473adfa7a0e249cca4def0305e81136e39d00319e5be2c77f687034df7e1f026bf92321332d8904ce93851e215e9c213da105d37db" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-osx-arm64.pkg", - "hash": "15576674976f8927fc0fb277382d536692c4426a6483189ff192a082128b9c43d03eff1a6bd7de859e991bdb8fe75421ab3c45163552ef9e7c45441a483793de" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-osx-arm64.tar.gz", - "hash": "20ac79faf78b8e95e73778ab8f8c238aa282d2a6ab844406968f68e946a4a8258e8f01458794a4c77ebf7c0a1e9dcc76169ecc84dabcd1fe983209f968367887" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-osx-x64.pkg", - "hash": "dce9a57df606ed6b3e142aab69ac482c160ebd4be776552881ff80843ae777e13f25f160289bc1ddfa19e04446f85552de59e9d700bbc0354aa070bd99eda4e6" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-osx-x64.tar.gz", - "hash": "873078a50675fa576df27867231b37c7a09511893bb2f7c91f4cc1069e88ac4b6fa7c4eb439b6b39ba2522b7a3e2d2cc9fbec4e700e49402672e6358fdeaaf07" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-arm64.exe", - "hash": "77b0ea1bc5b722858e269ee0c61509729a3419b7da3ad6210d85e10e18d07ed2d46ef2311a1eadd077b1997f28d2cf483e3e6d34a6f56c8c4a871cdd27f77706" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-arm64.zip", - "hash": "7c51a32dc7dec38e9f923ebc43ad9d587d3bb209589124bfbd8102a2a6d155bac6cd1758bb35f6290a3e95a0abee98a83c383900fe6765f57871652d28f5691e" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-x64.exe", - "hash": "9cecf9017cec09d32bed0d26e43ae00c2122380a25ef1426dc0ad3fa16f4e43e7ba071910ef56940d32540bd5053faa0a219aaa83be3b62c273f6216c3c7ab84" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-x64.zip", - "hash": "4b46ec7849a78d73ca71cb55f259bec2d320e26029b64b398bf16ea2ef14bdff2096a35fbabe929f21b5b97ae865688c5722b2b761babc09a0d53b8921434d91" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-x86.exe", - "hash": "b73bb3c6ac46fbbfb3e536f1579abaa0cf86e97001e049226dd60e3dc1be2ead8f9d825ac8775a8fa7a57786316e0c13a63931b2c2b66363da9e033e4c3b9047" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.3.24172.9/dotnet-runtime-9.0.0-preview.3.24172.9-win-x86.zip", - "hash": "5c70d0844fbd6b0178a8820f4a0f9c9204e35216ae3de5a121e29fbfbd53f23dd82978f6bdd551907578869984242c61a7dbea57bca3b6bea59c7af7ee7b7546" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.3.24204.13", - "version-display": "9.0.100-preview.3", - "runtime-version": "9.0.0-preview.3.24172.9", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-arm.tar.gz", - "hash": "76e53d9b288ed800b9087d2a3bde25481642d84f133955f57ec69a35f2ef65237c937fc1f0f60b3c2190cd6e34f3bccc71b85fb2c37a08976e82e2d761ec40d0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-arm64.tar.gz", - "hash": "83c6fc2cdb8aba6d72661f2fc360147482dda7c22b69b3f0df9912efe7e0499f3c7b1d1a8577b3667ec3faf6cca99bfa887c663904847356c93e6f1e6f9917b9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-arm.tar.gz", - "hash": "772b2af66459b4ad7cd8005a02799f7446fe7fdac97f488d7575b1d1ed2079af539420b01609da6caf0addc86bbca72e53949ba4979c31853a9d724f80756492" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-arm64.tar.gz", - "hash": "8f19023e96760e397261b1d0c765a789c01a7377b782ab8254b5f85c01048c305f8e627d796c8b6040a23ed12eefdd544200167bcb32871efe0c627359f3e7d4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-x64.tar.gz", - "hash": "e72027ffbeb7d5c9b8796620226ab410510ff57ad93f5e24f7a2ee281fd733daabff74a15f3dcbe04413fbd4bff0713fd298cac732eb0f71ee6c6dadf334e972" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-x64.tar.gz", - "hash": "7f487d92ee3b28061ef28e013295ebdf6703721b5e2e55ae2d7b18f1ff4fa4e3e01b6a8b508723ffb22dbc8437f0693d7c07f4dd8ef113d5da8a51b3645b3422" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-arm64.pkg", - "hash": "43d167bea8ab900ff67674bd378ba09228f105be8d8b0c4866e867611072169a7ee1aca67cd04f06294d01fba2ae2c0427553e5552de10c41fc1096df4db9e54" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-arm64.tar.gz", - "hash": "69452e7266bbccebc7acb9cec7b328f8fa1bca4b0720a27450b67c19d41ac9e8b5ca23f3da762c37769dadd0c65fcb1068b32c98b507d19cb9c5619b301f6860" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-x64.pkg", - "hash": "7ae365e863a76a52b2c646bf34ca444b6ec08118edb4f52391d013c22f2fe9df1ceab75156b3c48d16d564baa02c71093b9b9e0edac01a6e2a0b311182bbe561" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-x64.tar.gz", - "hash": "1c0d5a8751f36b4e2f0d2971600a6f870155dd12e0a0669951d99b1d50b8021c51a5c9df447ecd8bb53c3ceaa6f4467edc0eb357bcc8d26e272b5ea121f170f7" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-arm64.exe", - "hash": "ad7114b1a961db4797a733cd2823aa6a5735103290b282f1b0a3bf0917d360d8fac931d629d94ecc3f8ffac50cb6bcf4c0afdcb48b1dbc621fc59348abccf524" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-arm64.zip", - "hash": "1fb88185859896b2fc6e0e6f867b6a27cdea13aa414c8c6b606ce72b48148fd938209fb49c073316689a5bcc739443a647fa60b98b6ffedb0fd508886096b7e9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x64.exe", - "hash": "d8f49442160a7a92b617a59eaf8fdc4ca776739429f79a7dfd5da4486629a8b6df1999cf2adb3d06ae715a31a8fc3aa355329a87d2780724874afa5028688898" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x64.zip", - "hash": "55114bd014d2613aa35e91148bad263cfe0fd8499995c9641bdfff1b7c2f10c70add06c1d9c016f60fe7c4d144725154187a7c0ad4b1296f1ec32e876ae3ceed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x86.exe", - "hash": "24bc29abc7c11988648584adbd17d9d3f8694b7b2ed622f860709a680f7eee97b12de34470c78a9718383cc33ee8934d19e3193475a6a7f304b65cdb02468f33" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x86.zip", - "hash": "e240c2ebfa0089b95077f297748988b9c1cfd662fc39616b225c479f810dbe7ffafc91c5c3faf7cdf633be2660e1aee3d201209122cc30a9a66be21273197741" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.3.24204.13", - "version-display": "9.0.100-preview.3", - "runtime-version": "9.0.0-preview.3.24172.9", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-arm.tar.gz", - "hash": "76e53d9b288ed800b9087d2a3bde25481642d84f133955f57ec69a35f2ef65237c937fc1f0f60b3c2190cd6e34f3bccc71b85fb2c37a08976e82e2d761ec40d0" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-arm64.tar.gz", - "hash": "83c6fc2cdb8aba6d72661f2fc360147482dda7c22b69b3f0df9912efe7e0499f3c7b1d1a8577b3667ec3faf6cca99bfa887c663904847356c93e6f1e6f9917b9" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-arm.tar.gz", - "hash": "772b2af66459b4ad7cd8005a02799f7446fe7fdac97f488d7575b1d1ed2079af539420b01609da6caf0addc86bbca72e53949ba4979c31853a9d724f80756492" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-arm64.tar.gz", - "hash": "8f19023e96760e397261b1d0c765a789c01a7377b782ab8254b5f85c01048c305f8e627d796c8b6040a23ed12eefdd544200167bcb32871efe0c627359f3e7d4" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-musl-x64.tar.gz", - "hash": "e72027ffbeb7d5c9b8796620226ab410510ff57ad93f5e24f7a2ee281fd733daabff74a15f3dcbe04413fbd4bff0713fd298cac732eb0f71ee6c6dadf334e972" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-linux-x64.tar.gz", - "hash": "7f487d92ee3b28061ef28e013295ebdf6703721b5e2e55ae2d7b18f1ff4fa4e3e01b6a8b508723ffb22dbc8437f0693d7c07f4dd8ef113d5da8a51b3645b3422" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-arm64.pkg", - "hash": "43d167bea8ab900ff67674bd378ba09228f105be8d8b0c4866e867611072169a7ee1aca67cd04f06294d01fba2ae2c0427553e5552de10c41fc1096df4db9e54" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-arm64.tar.gz", - "hash": "69452e7266bbccebc7acb9cec7b328f8fa1bca4b0720a27450b67c19d41ac9e8b5ca23f3da762c37769dadd0c65fcb1068b32c98b507d19cb9c5619b301f6860" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-x64.pkg", - "hash": "7ae365e863a76a52b2c646bf34ca444b6ec08118edb4f52391d013c22f2fe9df1ceab75156b3c48d16d564baa02c71093b9b9e0edac01a6e2a0b311182bbe561" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-osx-x64.tar.gz", - "hash": "1c0d5a8751f36b4e2f0d2971600a6f870155dd12e0a0669951d99b1d50b8021c51a5c9df447ecd8bb53c3ceaa6f4467edc0eb357bcc8d26e272b5ea121f170f7" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-arm64.exe", - "hash": "ad7114b1a961db4797a733cd2823aa6a5735103290b282f1b0a3bf0917d360d8fac931d629d94ecc3f8ffac50cb6bcf4c0afdcb48b1dbc621fc59348abccf524" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-arm64.zip", - "hash": "1fb88185859896b2fc6e0e6f867b6a27cdea13aa414c8c6b606ce72b48148fd938209fb49c073316689a5bcc739443a647fa60b98b6ffedb0fd508886096b7e9" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x64.exe", - "hash": "d8f49442160a7a92b617a59eaf8fdc4ca776739429f79a7dfd5da4486629a8b6df1999cf2adb3d06ae715a31a8fc3aa355329a87d2780724874afa5028688898" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x64.zip", - "hash": "55114bd014d2613aa35e91148bad263cfe0fd8499995c9641bdfff1b7c2f10c70add06c1d9c016f60fe7c4d144725154187a7c0ad4b1296f1ec32e876ae3ceed" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x86.exe", - "hash": "24bc29abc7c11988648584adbd17d9d3f8694b7b2ed622f860709a680f7eee97b12de34470c78a9718383cc33ee8934d19e3193475a6a7f304b65cdb02468f33" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.3.24204.13/dotnet-sdk-9.0.100-preview.3.24204.13-win-x86.zip", - "hash": "e240c2ebfa0089b95077f297748988b9c1cfd662fc39616b225c479f810dbe7ffafc91c5c3faf7cdf633be2660e1aee3d201209122cc30a9a66be21273197741" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.3.24172.13", - "version-display": "9.0.0-preview.3", - "version-aspnetcoremodule": ["19.0.24083.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-arm.tar.gz", - "hash": "ad4540890752e278406a7a731705251e9e803100ea8784f3ea9ab499ae24bdf3fa09456b324834953775f5edea019a3e80c608d9ebfc7de0cb2ff430a0234e3c" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-arm64.tar.gz", - "hash": "e484d1530bb8462f5956d50b0055407a5b697f176f43a8e97b26d80c0507f9373b950f962a5144f7876e4c699b2fd29a63eeda71b090fb80c4885750d73cc42a" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-musl-arm.tar.gz", - "hash": "70700a6ac11a4a4e192e8d536d7dbe746aa2b209fbe5522a9bb6b09988b1d40019d03327a1e79917f04a8008581b685f7b6fc925750ffc6e0de4877955ebbad8" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-musl-arm64.tar.gz", - "hash": "6011b173f4f31ad942f4911623b1b0175e03c160ea55b2d50c454bc0a921ab3f35a5ad2f822590ccab5ea3470ba0f5ac9a617386e4538f82b235ff68e46ab6a9" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-musl-x64.tar.gz", - "hash": "8e6c42872a062f50e25432e0945a18ff4508d708983f004bfcb619c76d5e13b5dd0653cffc5931ec7834d1d7db174566b4d9d00016c838f98b351d821e012334" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-linux-x64.tar.gz", - "hash": "319f2700c3a954a1e6e0dd01b45c18dfe7d3728fe175b82cbdbdd928c2f64c5fc6f53b7c44f753cf59fb7c32649fab95f0245e5077ae3f607b8f59b5e9cd417d" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-osx-arm64.tar.gz", - "hash": "c216b72b3ed028cc49ac5e6c50612b77eaadb7834e21a4ef89bce346c7eb1e55bcaced48131ba68ed00d381ea0321501e9b9a0cddff088dd6ff96d5b04be6e6c" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-osx-x64.tar.gz", - "hash": "6f2f4b7ad18311259864f1fe2b2ab4b78e60e035213951eed77f9fcd41488bd9f1a6360bad348af130e3984cffb7e7d7b16406c5ae2bdbd4e75a6eb28924cb68" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-win-arm64.zip", - "hash": "023e2058f0f036c07ae383505305b4e46ea1be75bc5204be9d0ac864f88fa6d126e7ffeb158635c717e98a1b1f7e42b69dd44a5fe8ad4f17a332141ca91f1c8f" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-win-x64.exe", - "hash": "3e2949483b1453bf0edea37eda3395f8c582c56fab65a4a315ed84e53b6ab9acda27764332911abbb16cf49c3b7844024a7235cba58f3c12f44643dccf45f768" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-win-x64.zip", - "hash": "6e3d9ff40c04eb382ce4d3603892733e43c58c47472c571efdc12e8be7f52a338fa46659137c9320fecaae4288ce81ca6f41a5bec32e73511b9014ebca7a4c99" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-win-x86.exe", - "hash": "b1e8df9ed48bdc53c03a309ffd58c5aa91f999067258f7e905573011a57f93b3b406a829dfe2f760d6fe68fb5cc8b347812b9a01b3e9722de08a2cda0bda94fc" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-9.0.0-preview.3.24172.13-win-x86.zip", - "hash": "501f5353a720e0e4a976c4cae5875da7ccb7a5cc9c93343f732bc182ac0a457f6cea8ba2edc33a7665849d558c213e3ffbb16b85110c61d47b776487da4b35b0" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-arm.tar.gz", - "hash": "a6958b10bb735875670bb280b6187f963b65fa2a02f49848096b2a6c06526a39accefbf362394d6cb82d5cce65eb1819762365c7114cd7b7748908f814fdebca" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-arm64.tar.gz", - "hash": "88edee0dbe7c16409674db0442b5098a92d9d22f2d6e4d8bf27e44a6415f38023bab96174d45a33a9bfdcb88bf896ba6acfb36b6f7fec7323dbb18e472bebdc1" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-musl-arm.tar.gz", - "hash": "370274b311ae9671f2aeb38b313b05cdbc6b04eeb96146ad82ab7b3b9e65fa2d2fbc03f4343026c4fb81106fa97fbfaaaf933127c8ae9bfc9c91fe6aa3c6786a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-musl-arm64.tar.gz", - "hash": "cf1432c021e7e639d1eefc18f7feeb0c2a11ebec19dddf3e101903d7a3171b1b9415270e8b4086a19f86ffe2a1cb6ec4e73c391ac3040caaf9dd32b2f8d06136" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-musl-x64.tar.gz", - "hash": "f6861aa3ef052d5a4140ce771cee2cd62c07256043581ff06e601d8d4f95a344bf90c86fbf22ec55d9a130e4b205b18e7711af3dba7a03e1741f2abd02f74f58" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/aspnetcore-runtime-composite-9.0.0-preview.3.24172.13-linux-x64.tar.gz", - "hash": "7a4b00241a2a91cf7dd3ca391b4f64edefc4179c351eeb0aa260c27680510be71b4fbc1f07ac7682208c73e879a40fdf3943b5cdf58456d7a4763665e46e8258" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.3.24172.13/dotnet-hosting-9.0.0-preview.3.24172.13-win.exe", - "hash": "bf6f9cbe3dea1e45f7fe831d9a8ccbb46f744c479f22449908e328a388d8517f5f38caac5cd8345166279b79f653a040399a85f18f75da63d983199ddd1ca340", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.3.24175.3", - "version-display": "9.0.0-preview.3", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-arm64.exe", - "hash": "4b15257cd6b655483677a1b842b011ca6cc3937ae6ee3ee7873fdc99197911618d7049480ebf43642ca4eb65a43edc322f6ec62f0c20759406b0f95376d586b5" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-arm64.zip", - "hash": "0552d7553ec1a44d215d41bace840366e93530ff352a51988c297bd13bac4dfb09759473878de199e92aa8dda6323cf93b74dec1570f72b77cdec87e2b3448f6" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-x64.exe", - "hash": "a0dcd0adbf301165d90085be2ef05cfdcc100224c6097a98ad056df70351f974bdf8dbc129e8927f5f473b6ccd0932288be0467d629f932c7db43a45e2b14af0" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-x64.zip", - "hash": "58024d2eb7284a46d8393000e8d93083699fef472d9a9eedcecd17a98ad45b81636ac67fa6cda2e62c34e8a27038ff75d07de0fe5f8bc7d6e58da879777615c7" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-x86.exe", - "hash": "2e2faa1c23a40a2459670a1af10b802e6e295dc3c3ac6e5f593fcb5de756912707009bb3e8a98f2f3e07b089b984083158417a5d3d383becbc0a0aaa33ffb3b5" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.3.24175.3/windowsdesktop-runtime-9.0.0-preview.3.24175.3-win-x86.zip", - "hash": "4032a8bac5d08289dcc4b124ef1e5922ed3133f5ba9ec5bdfb86203fc93787f2fe68b1231ad1ba238341ba5bdc47e0eb6309c6bab3d0d56be9bca8d135e462e6" - } - ] - } - }, - { - "release-date": "2024-03-12", - "release-version": "9.0.0-preview.2", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview2/9.0.0-preview.2.md", - "runtime": { - "version": "9.0.0-preview.2.24128.5", - "version-display": "9.0.0-preview.2", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-arm.tar.gz", - "hash": "845b0a1eb3ba18637cecbe4105e6f7a26cf5e0c482177feb1570e1ec85eecb717d59ae5e189788bc4a4a4db23081c21369b8c462991fc4a426b52ddcca34b4bc" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-arm64.tar.gz", - "hash": "5ae4c5f4acf1465c8aba29a90aa3ee99ab47ffece9f932e9fb4de8937d05feace4c5d3b53d4b8bf226eb99de16a0aad0e71f091827651f0722261513c8a8a2e7" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-musl-arm.tar.gz", - "hash": "31ce6e4af959df846383b8ff5d7912b6f16bb8244dca675b1109153ff13298ac033b4675319eb30bbaea6dda8172cf87d0f4f5e1f3680086374fff97c41110d7" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-musl-arm64.tar.gz", - "hash": "3384c37ae4dd0b0f9eda8a4b7bbdc24ab8fd82a9fba9977408b93ef2a49c4aeca7808faf6c28fa970cd07959c6883045cd0408d3c96f52d1bfe9282dd6cf06eb" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-musl-x64.tar.gz", - "hash": "192faff21e221e1211acc087a759925205ced69d47641df46495cdb508b2e9a6276b24da54c6046c6cdf5e82ca5fc3eef1febc05cdfe3459018b7c63bd764e2a" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-linux-x64.tar.gz", - "hash": "6433959a75103f2f1108bbc16cfe348f9ba04fec1c8f9b6895019241bfcb7b21fab675cc13971f2c1a66b46b044a95f91e1e2b46e6e8bdd893d277906f82545a" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-osx-arm64.pkg", - "hash": "08e482abe56ca8282f53a32ef30f078397e16118fa1fcc83eda0a08b67e052668a111cad6b9f7245db8c27051a5d26ed70b3428964f593d1cb54b754022204b8" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-osx-arm64.tar.gz", - "hash": "cc7b8626cdec48427ef79f14c0919a09a3500bdc1c2933c6b5cf80886cc590ab20ccbd07bdb3a6081e47b80f372db3b4887b5276a12252887b7360a7f23e9901" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-osx-x64.pkg", - "hash": "975279950f5644c9c7889ba5b1c6c4fb836a3561b68d1a6024ceb028860350c480a53e451f7317e0cbc3ea88813319c5108a2a99a04bb61731417d81b486aa37" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-osx-x64.tar.gz", - "hash": "9f83d1d7dbfb8c8df1c7530fed3ddbb1571e60100954051bf07b8ee758edc600d1d988819c91711cd8b4baa05dd97f9900d1edf2ae5035ac74930a920951f380" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-arm64.exe", - "hash": "e9f0e707f54b1dde058a7c47a29f3b02d2119814b3a7c752e6ef295a00ca3130e8c3d6b7a58b753c2148818d0ddf0baa335d98d0500602695a35ae16f76068a1" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-arm64.zip", - "hash": "3f284a3ae3e14566788edf0d093f4da83e7c0024931e32b04620b73c2739bded2061e3268caf36af6490b31dc257d26f1fceac5c53b88921217f3588cb870c43" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-x64.exe", - "hash": "dcb1fbdcc439c81dab9d17e60ec226bb0307e3a68c5e28683408b9b8900f6e81e9c457e6a5ff65d177e538e02514841a9d979cf017f1ff24c98513916a089c29" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-x64.zip", - "hash": "701283ab4dde1f23b621ae712b66e117b4d87f9dfe4aacfee0d1a0622e7b9135b54a940f132e3a59add88bae69ffad790b1acacfa03cc30f55d16572c34fd932" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-x86.exe", - "hash": "4b64d2d82c53e6f7e541c589eacbe273e4d71d22b538b4caa57a52de302613e32a1ae1d6f3312a4529ecd8ecf378411b0262e1902ae929f58ac09942894f8ec4" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.2.24128.5/dotnet-runtime-9.0.0-preview.2.24128.5-win-x86.zip", - "hash": "b472c78b3eb5d3762bf2cf2690efe0379a79958e34986a939f5f07b0c78950e9cbc423d072b99b31db8bf063b739434a9dc6cdae874ce64601e351474c9bd85a" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.2.24157.14", - "version-display": "9.0.100-preview.2", - "runtime-version": "9.0.0-preview.2.24128.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-arm.tar.gz", - "hash": "51dde68d8cbe20e8e77fef7b940ae55158e8dbc31d219696228e82b2e4223b55a43dd2797c70101d3fcf2ca56bfd7370ff08daba5f0e457f54dbd8e171503f31" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-arm64.tar.gz", - "hash": "1d591e504352f765a35092394719451c024a628c69efb6a10d0a5d57947c466a004243e799b46147fdf6316a23b4335b1e8fb1fc5513def1dec9f96c6c845dc7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-arm.tar.gz", - "hash": "a0547586a2e1c04b1ac030637901c113abb7bcf3bfb4bb6e017d6c11ee6f5fc114dea4da57cf4f702765a0a0e5c19391623c73e9a3500d5f6713a000a9c14058" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-arm64.tar.gz", - "hash": "a56d724d388576e8e6db78c67004a7296ae33a7c2ab00d8af132d3df12398cce3f81b08a50f9094942cbab6ffa66efdd805359a5ee9189dfacbafd7478d34285" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-x64.tar.gz", - "hash": "51fd7da5986f7776a602d8aa3dee1952e86ba0676c1fdb392f7d13c642bc608489a897347707267fa030355042f6873024c92583a6bb8080397427bee35f087a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-x64.tar.gz", - "hash": "c44df5e11791e4b22720834ed7f28102e33ab475670fa8e132d73d5dd03d8f4ed3f4a548deac67a79e06db6f776c9f632eda4503b6fdc9eef7ffb001cc9963c0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-arm64.pkg", - "hash": "61e5819cfe28beab99b3a75425c9c0dd0afb01390170e21fdc0fc0ecd9518d20ce24d07048012e522b53d727f7bc94639f257cc6021fd1b39b57405ae6adaeb2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-arm64.tar.gz", - "hash": "1c7166a594ba6c07d0233aac44428e561e2131f1f1812cdfee75807d19f1fe53f40f9d93e88d4a478c885993424ec2ec7b9aaf8f174332f587e6ff10813680ec" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-x64.pkg", - "hash": "16d6a5e48cdce9e5e529c5572032d02213136b5b028a06a86c72c32765a87b30aaa62381bdde4f810e5b1ad7ab07103386002b6447bb8186888604794da7faed" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-x64.tar.gz", - "hash": "a5a02f596e3976e65650d6a780903a755d4d700491c670b4f3c2f167224da632b98ad03ab7a087dc18561c5cc3ae6a3be78d5c6ca2f7312c7d7c417d909a481a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-arm64.exe", - "hash": "86ec1715eb1373d22ea3ea49021c537484b481c03ce6a82df9ae81d911f5de28a8878f78871db66bc407d65bb84cc1ffe0099928a177ebab50910b6f6bbe1290" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-arm64.zip", - "hash": "c8d0ff7e90b6799f352ea69cbff376e7efd201ae5593d6199145225afb2caa920480191be2bdff1c364ade02e89fc157e06cd944f761ff3af0b08b4009b1c28f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x64.exe", - "hash": "7ea7ea590d222d84ab7326ff120a40b45364a01c386c881ea7efabfb869237b789743b0829b791895613d7f4f2584c411f38150f319bdc5fa3f2b9ee7e5b3bd2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x64.zip", - "hash": "83dcc6aee85e332993ad57b041e22c09c1ca946fc7befed54bc451ae0c2d2ec16b818d2323589a8a150cd2ef90239e990bbb2390d5ded458a4904be0052fa364" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x86.exe", - "hash": "1ff5e7be6fe1a1a436be343553d12066ea8e94b1d80b5ed7d2979f3d2eadf3c5c7e2da5727be2d12cc6ad1d831562172fae4dc55d5a84075b00891ce8395126c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x86.zip", - "hash": "5c1b310ff5543d7416850d2044c4584f4a2286676b7cd05c32f505b95959bc66968f334cae1b35c852937cf289160f97f4129e15f5e5e220ab1d6c5bf61f1fd2" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.2.24157.14", - "version-display": "9.0.100-preview.2", - "runtime-version": "9.0.0-preview.2.24128.5", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-arm.tar.gz", - "hash": "51dde68d8cbe20e8e77fef7b940ae55158e8dbc31d219696228e82b2e4223b55a43dd2797c70101d3fcf2ca56bfd7370ff08daba5f0e457f54dbd8e171503f31" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-arm64.tar.gz", - "hash": "1d591e504352f765a35092394719451c024a628c69efb6a10d0a5d57947c466a004243e799b46147fdf6316a23b4335b1e8fb1fc5513def1dec9f96c6c845dc7" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-arm.tar.gz", - "hash": "a0547586a2e1c04b1ac030637901c113abb7bcf3bfb4bb6e017d6c11ee6f5fc114dea4da57cf4f702765a0a0e5c19391623c73e9a3500d5f6713a000a9c14058" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-arm64.tar.gz", - "hash": "a56d724d388576e8e6db78c67004a7296ae33a7c2ab00d8af132d3df12398cce3f81b08a50f9094942cbab6ffa66efdd805359a5ee9189dfacbafd7478d34285" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-musl-x64.tar.gz", - "hash": "51fd7da5986f7776a602d8aa3dee1952e86ba0676c1fdb392f7d13c642bc608489a897347707267fa030355042f6873024c92583a6bb8080397427bee35f087a" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-linux-x64.tar.gz", - "hash": "c44df5e11791e4b22720834ed7f28102e33ab475670fa8e132d73d5dd03d8f4ed3f4a548deac67a79e06db6f776c9f632eda4503b6fdc9eef7ffb001cc9963c0" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-arm64.pkg", - "hash": "61e5819cfe28beab99b3a75425c9c0dd0afb01390170e21fdc0fc0ecd9518d20ce24d07048012e522b53d727f7bc94639f257cc6021fd1b39b57405ae6adaeb2" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-arm64.tar.gz", - "hash": "1c7166a594ba6c07d0233aac44428e561e2131f1f1812cdfee75807d19f1fe53f40f9d93e88d4a478c885993424ec2ec7b9aaf8f174332f587e6ff10813680ec" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-x64.pkg", - "hash": "16d6a5e48cdce9e5e529c5572032d02213136b5b028a06a86c72c32765a87b30aaa62381bdde4f810e5b1ad7ab07103386002b6447bb8186888604794da7faed" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-osx-x64.tar.gz", - "hash": "a5a02f596e3976e65650d6a780903a755d4d700491c670b4f3c2f167224da632b98ad03ab7a087dc18561c5cc3ae6a3be78d5c6ca2f7312c7d7c417d909a481a" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-arm64.exe", - "hash": "86ec1715eb1373d22ea3ea49021c537484b481c03ce6a82df9ae81d911f5de28a8878f78871db66bc407d65bb84cc1ffe0099928a177ebab50910b6f6bbe1290" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-arm64.zip", - "hash": "c8d0ff7e90b6799f352ea69cbff376e7efd201ae5593d6199145225afb2caa920480191be2bdff1c364ade02e89fc157e06cd944f761ff3af0b08b4009b1c28f" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x64.exe", - "hash": "7ea7ea590d222d84ab7326ff120a40b45364a01c386c881ea7efabfb869237b789743b0829b791895613d7f4f2584c411f38150f319bdc5fa3f2b9ee7e5b3bd2" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x64.zip", - "hash": "83dcc6aee85e332993ad57b041e22c09c1ca946fc7befed54bc451ae0c2d2ec16b818d2323589a8a150cd2ef90239e990bbb2390d5ded458a4904be0052fa364" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x86.exe", - "hash": "1ff5e7be6fe1a1a436be343553d12066ea8e94b1d80b5ed7d2979f3d2eadf3c5c7e2da5727be2d12cc6ad1d831562172fae4dc55d5a84075b00891ce8395126c" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.2.24157.14/dotnet-sdk-9.0.100-preview.2.24157.14-win-x86.zip", - "hash": "5c1b310ff5543d7416850d2044c4584f4a2286676b7cd05c32f505b95959bc66968f334cae1b35c852937cf289160f97f4129e15f5e5e220ab1d6c5bf61f1fd2" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.2.24128.4", - "version-display": "9.0.0-preview.2", - "version-aspnetcoremodule": ["19.0.24060.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-arm.tar.gz", - "hash": "f1dd7f9d7a9faa408c081e869804f7b2a54d8a03d8cb3ac4378e0a015ce87e05ad0963684fb9f8369ba0860eceb9f8cd2774e92740564e96858a62b2a5d62b03" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-arm64.tar.gz", - "hash": "6f7a5575d02197f1908c56d580f0a9049f393ae68a4ad4b73935e981d9c6766e028463d2828d3ba0aeb4049237516fee2e116196e790948fefd65436ea804f35" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-musl-arm.tar.gz", - "hash": "db34cb136e1bd5e3722e9dae9029cbb5bcaeb8f563e02e39ff51daa5b51ef4435cac60d77197da30753b79af45e2efd6aba7f75a02fe766859ecd863fe7da2c1" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-musl-arm64.tar.gz", - "hash": "1158514625f2284a38a528b6182d98137ae7228512995723015d57c3a3e1e81436f87d18eb2b9d864398b609373bf4212a20943db97d5fb1acb29b0fcbc9b8e3" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-musl-x64.tar.gz", - "hash": "6454787598b68f4402012057d1019d21f16df83b763c56b55557c0d45d2dc66a161dc41aa46a1b6324950315484fea5b7a5c8089f08cd69501d79c5f5fbf961c" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-linux-x64.tar.gz", - "hash": "9d836edc539ace64ef8fa883bdfc881d89f4cf30d048640246dae9d54e46e79f2e82ebcdf366c1b69017d86d1bf1496acef5d56c3133297ea0bddb2df2eb4523" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-osx-arm64.tar.gz", - "hash": "81b5860e68e9e660a535568f96d8058ab6f98dd6b0a8305e3e3358ee721da610c08baf0b59a52d7e30184c39784ab18544f9328a55d8490d400d07be734059a4" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-osx-x64.tar.gz", - "hash": "c0c37a504f8c3113c90b8108f1f784fbb61387475e3eab37d303c49f627e06034ef6e917ee9c780e910cbf565c20050173f240f215fdead4fabb1f3795f3ac08" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-win-arm64.zip", - "hash": "513afe42770fbab74e7d5746587d5f4859f95ed801954e6a16fad6b5e6cc681d1fb40822764f38140ba7b74aa71ef42c502f0fe65abe0a5010d8d5b3b8d73e4e" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-win-x64.exe", - "hash": "0b55ba24806ba6337aa95e26b64ee5d3d4b1feb00ba0993dbcaadb03e17e0544ceeec0a4cfad82b97ec0b9454219d421d5ba12b1e4cfaeac12ddbee81f59091d" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-win-x64.zip", - "hash": "cdb4a42761d729bf68ca94414f85c9543bd46e8954680b37b66db15c26135def215933a2fbd38b231302f7ea4f6407a4290d00a25c5f8d7d58e780e55052c3dd" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-win-x86.exe", - "hash": "b9b8bbf176c545fa2b1e2765c8eb6ea632c9acf27d15f6e54f22451b3982c115af027a5a957fa37a9e762c41dc2fdc9c0a3ec22933dfc7effa5c468cb9e29e84" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-9.0.0-preview.2.24128.4-win-x86.zip", - "hash": "8f6e89659b3d641f3fe64f417023d8c3bd587eebc343c8cf478a44d945e79a039c2fef828484764ab43cfd30e5b3bc50c17b81590b2f6f1000b3ccf4e8a15ab3" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-arm.tar.gz", - "hash": "725a370e508db4b4be0b4e6cb1ba1070316877a6950bbfcbe0fad76dfcc8bf12cbe987a4ce3787a48eeeccd37c04189d3fa517f1ceeb78ad92fbb30e326819ce" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-arm64.tar.gz", - "hash": "ae20e3cabb39e4cb91cd3678f85290e89162d2007316719ca408093b9c8d5772a443926abac1cd909405d6a58b81ec0e96b8d00fc076c699081965e1d1e90b4f" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-musl-arm.tar.gz", - "hash": "de45c5866d477bc2685f3a9d6ebdd08e3cb7effc37df896fb1a10c5ab9dd95cc120e49e9d95930c078f9f8b7262ed567b85cb752ee93b236193eb3e90fc49657" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-musl-arm64.tar.gz", - "hash": "4030c12b8efd49a254a53454bae20407f3fdfba39c8ecf637ef9581b8cdb98b792d904d0be641561237b47f7daf83281b15e473b81a43c0f1052e6f42011f92a" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-musl-x64.tar.gz", - "hash": "18987fc174b6f52c65537e91a60d9590af3fee05c3f83b248abcbd17b8988996d79eeaefedbc0c42a2b9a815ce28c6babf4dbf3d3202fcf30bff28262ae22514" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/aspnetcore-runtime-composite-9.0.0-preview.2.24128.4-linux-x64.tar.gz", - "hash": "80e47ec27e40c11cce232b033c0fa961f3262eed9cb6743768d164af7fb5243e10464a7607fa1fffb4217446f5716382dfd836e7c8c5a118df6da4ac6203e689" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.2.24128.4/dotnet-hosting-9.0.0-preview.2.24128.4-win.exe", - "hash": "a959ade3fa01e191bf8b03adc89247a1a45374d354e3c27db06927e8e692d8368974e918ecf27a1a0bcd2020f2f11212d878d64a389f907345d053aa79b65449", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.2.24128.10", - "version-display": "9.0.0-preview.2", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-arm64.exe", - "hash": "9bc150443a0358f44a9891c23d8dde0f05717291d91ef1458093426023621122cb23cafb3543d8969a99dd02dbd16238816034517dc9aa0c9ccf5d4164a447b2" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-arm64.zip", - "hash": "8cb6cb9edf27ea32bd67164d108d8ce15e9850e5e1d9cadef427e273fc895a84484a081f5162c6ea693bf94d5ac751432ab78c25be4ea09cfda30335d6f8838f" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-x64.exe", - "hash": "5cd41db47e7e52f62b8f2f0f312224117ec83c4fb27af08e5bdb9d560efaa58863c36a0c5a46d3acfe971bcb983a14af659579503cf53c9b4900054b5c3c2f70" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-x64.zip", - "hash": "faf7c80e268b50d6eb36b27e4c3f0bc85361bfdcb6f58bb4d421c319f65e648c8960b3f501c968e0b321b83b84658faa311117ca20ff5756525cb5a056c0f6a5" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-x86.exe", - "hash": "c7bd9a824c7594099d4d26759dbb181d49698cee8b35bb46d72fc88a09989b3b49d110058a40c1fc237f925a98e47b071e29396b68fb67a09c61a9fe4e391003" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.2.24128.10/windowsdesktop-runtime-9.0.0-preview.2.24128.10-win-x86.zip", - "hash": "559103fd16447f5f279d3174cfe2efb1d31215c175134a099df3653c5debeb37781fb98000444f918840bd3273fb0eabba58b5f1b172310e2078b4a7b213a710" - } - ] - } - }, - { - "release-date": "2024-02-13", - "release-version": "9.0.0-preview.1", - "security": false, - "cve-list": [], - "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview1/9.0.0-preview.1.md", - "runtime": { - "version": "9.0.0-preview.1.24080.9", - "version-display": "9.0.0-preview.1", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-version": "", - "files": [ - { - "name": "dotnet-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-arm.tar.gz", - "hash": "8f5e104562dd8ecbe87433896ba7bdd48400f28f41d0ffebe39d160adb6f0f600dcd327acd653d6c8a6dd13f3b375784290f17fd129e2f20bf307ccdbc4ba285" - }, - { - "name": "dotnet-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-arm64.tar.gz", - "hash": "265b7bf094730be765bdaadec3215c1a7c51bff6fb18bb51cff383473e32d1ba821b6d046e0f7fa864400dc5cb68e35943057f5b6ae6e8c411375fc15fdbaf3c" - }, - { - "name": "dotnet-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-musl-arm.tar.gz", - "hash": "7e8d46ae5668cc13011b9b579f71f27fa5c5feb93be2f6ee3541e75a163bb9f82d5e7b41cd5290e964d1ce7644ffdb9832d1570d7d795821cfd8c12f029e5d74" - }, - { - "name": "dotnet-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-musl-arm64.tar.gz", - "hash": "9e5a8dac01bc070758fb07788ec693a2b1c98be2d8aa1036d70e778c024df93d5a9299a4198514b7a8712143de47af6ce830d059350ba8686c760c6a37a8811d" - }, - { - "name": "dotnet-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-musl-x64.tar.gz", - "hash": "f6a42522f3bbf59e58e28f3b5ce0bdd2b81e5f0aa9634ea4be7221145853925c221bdf04988e9e7364efd578c665f5136af55edc2eb9e2b276877ccd92235d80" - }, - { - "name": "dotnet-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-linux-x64.tar.gz", - "hash": "68f0b89227c8e0b3239477409708c1b0c5cc7d80afd6661dc2150946c66e2130cf560c2471609f0fd063f01ca1d8e72f74beec45ecb519cf58f1cdc434615054" - }, - { - "name": "dotnet-runtime-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-osx-arm64.pkg", - "hash": "011963caf28e5fdd3a92b11732dffddf532f6c97ac5525682c32fc8ed3cb542f82aafdaa4020eef673f1b466533e2fdb133dab9334cff51840f45601c27a1a77" - }, - { - "name": "dotnet-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-osx-arm64.tar.gz", - "hash": "63bf6a57f61c4dcf4e0cdcedb8ff6c76cb702a95d4e0033f17b4cd2a3e800e73ab16c401fb098416404ea5716c725c175f9422250b2a8816c08eed2702cd38e5" - }, - { - "name": "dotnet-runtime-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-osx-x64.pkg", - "hash": "d4cc85c39b4c287471784a61410458bc2078f44cf07146ea24ae11a8e96944297133802972de80623ac7aff10e57289628e1cd5cc9a64ac2fa3effec2b369418" - }, - { - "name": "dotnet-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-osx-x64.tar.gz", - "hash": "f644ce6ee158bd86a4aba21bdd955a3aebb0367b5af618b6e77dc85922bc790b9c33b572606a15f566b2729a90923f66a933159124e803494105a695c890b775" - }, - { - "name": "dotnet-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-arm64.exe", - "hash": "6027f09e7bd4612fe9cd1ac2550d0663cb80d63cec1a41cbd4a9f502d14c77ed83f83e3e47b87da28ce0820e894a0539624939d09e9363d52f2218696dc685e5" - }, - { - "name": "dotnet-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-arm64.zip", - "hash": "3a800156e1680f46a0cdeeb60b780ee56e3150c52f1c6e9b440eb30529f2bc36dd928c51afd495396f8f4a7c1998e52168fedd2a1205ca0f7ccda2d880d12a4d" - }, - { - "name": "dotnet-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-x64.exe", - "hash": "a535447c840aa27e21b69de7172f225ae5e3bea3ed632b81372a4cd20919a2ca4c6ae7c3963648bdb98d458fb204c5c5af3e85e0b44c8b5b803c1b3e4d8e791e" - }, - { - "name": "dotnet-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-x64.zip", - "hash": "a417238c10646dac5ff47663b34d05ed51e96e224aa1f29dc2de03a96c273d72dbd3c890a36b728fc01d0a3d6ae50804ade78c9f29310cdab49dcecf8e0e6ad8" - }, - { - "name": "dotnet-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-x86.exe", - "hash": "70f677e2171a2773a0b0dafd0deffce9bdbf97692e34d2032163ea21645394becb71afdeda332edd0f558dc7e7080ed4e4a695f2ee32aa3866e8d7b81ef919a2" - }, - { - "name": "dotnet-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Runtime/9.0.0-preview.1.24080.9/dotnet-runtime-9.0.0-preview.1.24080.9-win-x86.zip", - "hash": "be777abcd6300a3628ea3a154d0c62fae0c4142f3a5e9c4eda5d315d4716014dd42cddc9cac25c2fccddb106bade516f30805584e07c086f2d3fc9a171135dfb" - } - ] - }, - "sdk": { - "version": "9.0.100-preview.1.24101.2", - "version-display": "9.0.100-preview.1", - "runtime-version": "9.0.0-preview.1.24080.9", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-arm.tar.gz", - "hash": "fa14b4545688097f490b9730a9063a3f7e7b779fd57a4bee43e61ef6f61c6aa5ba33ae5e1c8e0bc13dd060709d3eebbd04b044e06a9a70eecc73243db4107086" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-arm64.tar.gz", - "hash": "b7c29e4e4baf2d2ba7b29fc5a080df708c5a915e6fb1ce2ff93ffc8f18e7725fae5d569ab1349ef4b067d05d00886a17c8d1a95e211602db1ee5da820b5edefd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-arm.tar.gz", - "hash": "821f7e1387a50b27c9fcad1e1955cc6aeb4012a0d1cef7273f882409ca18a42d97fe3fcad18eb141e8dd91afc16fa698a720763e4be6d7054af9c4e9104b43fd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-arm64.tar.gz", - "hash": "93a0126c76bcd054a7119fb5e51b64980b130f55850d006d77ed4dd3a5f9ec79bfe49c0160c2c4dd58a01226c7264081f36b594e4b2d5c8d18a400ab57b86460" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-x64.tar.gz", - "hash": "7b44faba92fcc228477dce2ecd3311f0d6b68c30f082ff020472b07fc2615aa0e591da9185667a172a6f708192c6610e6c20594f79cee8e1a046515ffbb8e26b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-x64.tar.gz", - "hash": "e176126d9a12075d91a0ad2b4dd50021a564258742d86560bd216ac36482c763087bd8affc68fe9a8d3c46f61f864bc2c7c2e455739d21614516c4f73fd281fd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-arm64.pkg", - "hash": "5375987c0a02eb33d820802ec9c76acb14ccecf1a35df1f894bf7e362e1400a8b48dad628267b65d8bda29850f1a70ff4cc0960cd57cd61dc7f155e155bc9de6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-arm64.tar.gz", - "hash": "901835cfc277c626d38c7a2bc1a6704115d240812631cd32f4b51833b41ddcd3a4a169a1bbda42a9446eb33b2337f6a8c6410bc3d1bae557c8898d427e2fc8c1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-x64.pkg", - "hash": "8254d65d65ef1bc038255e651ad962bc15249b2f5a760c31e628fa342f3a2bfd2dfd2aa96f1125cf8318d60e8ec99cb7a51dab1d780e606b4f3d47c2b7159f96" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-x64.tar.gz", - "hash": "90c6709c54c0f9f4d7100bbf9c3b8136b6468617034c23f6a60dc17092e311539d54b741e149b70f1b6a6e2c6be0aacc948d4c72abac724f47d5ea05e02a2939" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-arm64.exe", - "hash": "99c61acc8bf757793fa2a08eb29afcf3e365bf285fde929c58ce774424294570c26609468cc94f89d891f0c42769041d6ad9c6c759a0665727dba16288dd2f64" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-arm64.zip", - "hash": "38bc46731201d5796d7a7ee30446fc35f2c225a75c978b896e7b6b09c7d537b22f991acbd413f6352df39cb8e69d94634b085968256377d83843527e55268d0d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x64.exe", - "hash": "82dfbbe479df411c0a177459ed9af55c373561e5b23dfcd09eb1ba713764e0800519dc2b50138108520bb772c8aec696c31f99c85674cb7c7d7b999292668d31" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x64.zip", - "hash": "a993f0a23dee43f43e51509094f385379183ae916ee04f891927bc2398fd3645bfd866d0960c9d0ccf11f7878856dd7317298a6e5ec6a17dd7f32fb3890855a9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x86.exe", - "hash": "9ee4c1da97526bffda9c1ad58e609bbbcad324dcb4e24b1cdd30f1feb0b37333e326b95ae08706e56f52c12ee20556151b13d7d5c04a0283f3420659c706ac63" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x86.zip", - "hash": "1ea49121eebc8ad47dae4148bdda7ee9ca17f65f49af9a0ce39d42dfa3916ac4d8430d7d0c0c7f466f15fc0fdd844b891635e743ca4782571cdde76828f7d236" - } - ] - }, - "sdks": [ - { - "version": "9.0.100-preview.1.24101.2", - "version-display": "9.0.100-preview.1", - "runtime-version": "9.0.0-preview.1.24080.9", - "vs-version": "", - "vs-mac-version": "", - "vs-support": "Visual Studio 2022 (v17.10 Preview 1)", - "vs-mac-support": "", - "csharp-version": "12.0", - "fsharp-version": "8.0", - "vb-version": "16.9", - "files": [ - { - "name": "dotnet-sdk-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-arm.tar.gz", - "hash": "fa14b4545688097f490b9730a9063a3f7e7b779fd57a4bee43e61ef6f61c6aa5ba33ae5e1c8e0bc13dd060709d3eebbd04b044e06a9a70eecc73243db4107086" - }, - { - "name": "dotnet-sdk-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-arm64.tar.gz", - "hash": "b7c29e4e4baf2d2ba7b29fc5a080df708c5a915e6fb1ce2ff93ffc8f18e7725fae5d569ab1349ef4b067d05d00886a17c8d1a95e211602db1ee5da820b5edefd" - }, - { - "name": "dotnet-sdk-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-arm.tar.gz", - "hash": "821f7e1387a50b27c9fcad1e1955cc6aeb4012a0d1cef7273f882409ca18a42d97fe3fcad18eb141e8dd91afc16fa698a720763e4be6d7054af9c4e9104b43fd" - }, - { - "name": "dotnet-sdk-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-arm64.tar.gz", - "hash": "93a0126c76bcd054a7119fb5e51b64980b130f55850d006d77ed4dd3a5f9ec79bfe49c0160c2c4dd58a01226c7264081f36b594e4b2d5c8d18a400ab57b86460" - }, - { - "name": "dotnet-sdk-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-musl-x64.tar.gz", - "hash": "7b44faba92fcc228477dce2ecd3311f0d6b68c30f082ff020472b07fc2615aa0e591da9185667a172a6f708192c6610e6c20594f79cee8e1a046515ffbb8e26b" - }, - { - "name": "dotnet-sdk-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-linux-x64.tar.gz", - "hash": "e176126d9a12075d91a0ad2b4dd50021a564258742d86560bd216ac36482c763087bd8affc68fe9a8d3c46f61f864bc2c7c2e455739d21614516c4f73fd281fd" - }, - { - "name": "dotnet-sdk-osx-arm64.pkg", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-arm64.pkg", - "hash": "5375987c0a02eb33d820802ec9c76acb14ccecf1a35df1f894bf7e362e1400a8b48dad628267b65d8bda29850f1a70ff4cc0960cd57cd61dc7f155e155bc9de6" - }, - { - "name": "dotnet-sdk-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-arm64.tar.gz", - "hash": "901835cfc277c626d38c7a2bc1a6704115d240812631cd32f4b51833b41ddcd3a4a169a1bbda42a9446eb33b2337f6a8c6410bc3d1bae557c8898d427e2fc8c1" - }, - { - "name": "dotnet-sdk-osx-x64.pkg", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-x64.pkg", - "hash": "8254d65d65ef1bc038255e651ad962bc15249b2f5a760c31e628fa342f3a2bfd2dfd2aa96f1125cf8318d60e8ec99cb7a51dab1d780e606b4f3d47c2b7159f96" - }, - { - "name": "dotnet-sdk-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-osx-x64.tar.gz", - "hash": "90c6709c54c0f9f4d7100bbf9c3b8136b6468617034c23f6a60dc17092e311539d54b741e149b70f1b6a6e2c6be0aacc948d4c72abac724f47d5ea05e02a2939" - }, - { - "name": "dotnet-sdk-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-arm64.exe", - "hash": "99c61acc8bf757793fa2a08eb29afcf3e365bf285fde929c58ce774424294570c26609468cc94f89d891f0c42769041d6ad9c6c759a0665727dba16288dd2f64" - }, - { - "name": "dotnet-sdk-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-arm64.zip", - "hash": "38bc46731201d5796d7a7ee30446fc35f2c225a75c978b896e7b6b09c7d537b22f991acbd413f6352df39cb8e69d94634b085968256377d83843527e55268d0d" - }, - { - "name": "dotnet-sdk-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x64.exe", - "hash": "82dfbbe479df411c0a177459ed9af55c373561e5b23dfcd09eb1ba713764e0800519dc2b50138108520bb772c8aec696c31f99c85674cb7c7d7b999292668d31" - }, - { - "name": "dotnet-sdk-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x64.zip", - "hash": "a993f0a23dee43f43e51509094f385379183ae916ee04f891927bc2398fd3645bfd866d0960c9d0ccf11f7878856dd7317298a6e5ec6a17dd7f32fb3890855a9" - }, - { - "name": "dotnet-sdk-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x86.exe", - "hash": "9ee4c1da97526bffda9c1ad58e609bbbcad324dcb4e24b1cdd30f1feb0b37333e326b95ae08706e56f52c12ee20556151b13d7d5c04a0283f3420659c706ac63" - }, - { - "name": "dotnet-sdk-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/Sdk/9.0.100-preview.1.24101.2/dotnet-sdk-9.0.100-preview.1.24101.2-win-x86.zip", - "hash": "1ea49121eebc8ad47dae4148bdda7ee9ca17f65f49af9a0ce39d42dfa3916ac4d8430d7d0c0c7f466f15fc0fdd844b891635e743ca4782571cdde76828f7d236" - } - ] - } - ], - "aspnetcore-runtime": { - "version": "9.0.0-preview.1.24081.5", - "version-display": "9.0.0-preview.1", - "version-aspnetcoremodule": ["19.0.24031.0"], - "vs-version": "", - "files": [ - { - "name": "aspnetcore-runtime-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-arm.tar.gz", - "hash": "688c07f9d896db90a1ea863b008fff5187d50b2aef352298f3e4c16522812f3dc9be22f8bdee89abde8554e7668bb9f35d0aa4746b1fd9c42ea0aa8ef84f1f83" - }, - { - "name": "aspnetcore-runtime-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-arm64.tar.gz", - "hash": "118967e64995d7c242738bf806928ecc52cfae3b0e0429a6951047eaf37d27bdde0adc0c6dc74e32d61b69565f7666cbfd4658396c37988e5d343debcc15bdf6" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-musl-arm.tar.gz", - "hash": "1d322b98cb039938a735267b29f49d1bb5b024fe2fda96608de725c2419d2da3cae8f6e3e7fa2594d0d7768180ced2bc1c2da20582380aa66954e34fe0ed01ea" - }, - { - "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-musl-arm64.tar.gz", - "hash": "b297d9cfa88fbd879f4e36a567b17109d5a0ac32102afdc5243c181f469f5c9beac0ec2ac776b68b7419ad9b9ddb932ef0c8f79a7cc14e6d62a491959685969c" - }, - { - "name": "aspnetcore-runtime-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-musl-x64.tar.gz", - "hash": "5ddef8928f7db38a3bc9fdad0d7cf8bddd8dee698ce8b72e7e7eedca5d769b70eab79ed161576ea8a5eb65806f80b27f6668f200ddd6c9425ab724074c543b03" - }, - { - "name": "aspnetcore-runtime-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-linux-x64.tar.gz", - "hash": "29bfe0b5b72608eba97151909308a67a47dc299902a46bf1a22d67bb5f8a0c87c6f4533c0c2d4679f9440f9ccccf549c434a4280c101f7633bdbdcf049c95817" - }, - { - "name": "aspnetcore-runtime-osx-arm64.tar.gz", - "rid": "osx-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-osx-arm64.tar.gz", - "hash": "09746054c291b10bacf3fba8ad147443fd41f42b6b04d9559281bc7d919ddc56ebe7402021997f6f24b745b3292368719cc2142d0eebba76226c5603545b6743" - }, - { - "name": "aspnetcore-runtime-osx-x64.tar.gz", - "rid": "osx-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-osx-x64.tar.gz", - "hash": "3ed80631a3ca0a4684a70fc0f17d46257a63cc71c7497c958accb4d329eff4a7c832a29c028b608798fbed0b82e2c5b7d5533c57dff2188d4142559b57341192" - }, - { - "name": "aspnetcore-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-win-arm64.zip", - "hash": "4ef745d883f519a3949ff7479950945a6952de6c0ab10aa0d9320dc9c6578221bf7551788f17d62a2c287f5a662ea81c3b747d1a1b28184a32f7cce47f0ef4cb" - }, - { - "name": "aspnetcore-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-win-x64.exe", - "hash": "1644a3474e01a3b5805b341881b4450af885b043d7578360a7a0bfecb13158305d878c9624d697774e10ed5c84c976c1a7f541ecd585bd6d3d53084f6d9fb880" - }, - { - "name": "aspnetcore-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-win-x64.zip", - "hash": "e8ebffbc89b516aedfab48fa8cfd9ec529437df21724b6e7f0a8b8b97eba29d274499a37fca0aaa0f7bd84ab3fb839a2ff09c6042f3abe568d4ec8191becbbd7" - }, - { - "name": "aspnetcore-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-win-x86.exe", - "hash": "219addc5b3fc08f3e9c650171cb2804161c9a4c3a70f5367a32a2ef368a7850a8b18d232f27d5c265b323c4ccc7034f21d820558e2f05c59f8fd6f444e7c44ac" - }, - { - "name": "aspnetcore-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-9.0.0-preview.1.24081.5-win-x86.zip", - "hash": "6e7730207fdfef400edac61ec142dd7440376699e25675d13fe05b347264f69b9a7cc3b047a8051b14c7862d144a465fe63fc9ff2a6d3c3c7a2a3cb46d1f6657" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm.tar.gz", - "rid": "linux-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-arm.tar.gz", - "hash": "2310efa27939af7f28ff3869a640a182a3fca6374b06db98fc9cdc6a5b49b75de9904bb47bb3e15334620357662ede933b08994b35d5bc1dd5c859ca73530602" - }, - { - "name": "aspnetcore-runtime-composite-linux-arm64.tar.gz", - "rid": "linux-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-arm64.tar.gz", - "hash": "1ea9bc90557a4196eecc51f8965994c6feb446c671b19236b6593a8996641410cc15f2ed6b2a7be73217ae89683664cee2af68594e3a0164306b770778d96295" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm.tar.gz", - "rid": "linux-musl-arm", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-musl-arm.tar.gz", - "hash": "6f070ba486fdc59d1717c2089f322329d28a4996d5e165ac55f7ed07dc4f014fa18efc2ab36e50fbe0959d10960a346476fede4ef4115e8972ee105fc7b777a5" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-arm64.tar.gz", - "rid": "linux-musl-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-musl-arm64.tar.gz", - "hash": "5ef4134b9ecdc4b80bb402209fd2adba4c219d235e0f3a4d196c8d7ac0366c9fd40c6a515d1f585b3f9b3bcbeaf7bb9c41a64643ef2f065305abdd47014879c0" - }, - { - "name": "aspnetcore-runtime-composite-linux-musl-x64.tar.gz", - "rid": "linux-musl-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-musl-x64.tar.gz", - "hash": "d5740881123b148f0e9b3d990f2407da9b0a4cb61e6e853c9eb709a52196dccc2e2cb8b9ee5c778fc6022fb5a45a076436020a4817089dbb67e2e126f717b342" - }, - { - "name": "aspnetcore-runtime-composite-linux-x64.tar.gz", - "rid": "linux-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/aspnetcore-runtime-composite-9.0.0-preview.1.24081.5-linux-x64.tar.gz", - "hash": "8022e4a1d37089242905ca9c4fd5f37a22136f377a170a677f1005fc8ce32d5bbc6341c0b80236d8287022533d908a4d91120bac894ab418b20a056de2e45b61" - }, - { - "name": "dotnet-hosting-win.exe", - "rid": "", - "url": "https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/9.0.0-preview.1.24081.5/dotnet-hosting-9.0.0-preview.1.24081.5-win.exe", - "hash": "67a972f36f9e31417e6746b9ea69fc033e945708c2e43be665239ac16f561e92960240f789d942ae886b4d4a38a49e1ed226e5b92f0eeb1e66d178c760cd4960", - "akams": "https://aka.ms/dotnetcore-9-0-windowshosting" - } - ] - }, - "windowsdesktop": { - "version": "9.0.0-preview.1.24081.3", - "version-display": "9.0.0-preview.1", - "files": [ - { - "name": "windowsdesktop-runtime-win-arm64.exe", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-arm64.exe", - "hash": "bf252da538951cce59469e1d2074d34c4b8bb04de33421c9b594c447c8d3b9e2e2cacd28e4f515ba1a2e430db18d11c70bffb07cdcb518a3d035cf88f777a768" - }, - { - "name": "windowsdesktop-runtime-win-arm64.zip", - "rid": "win-arm64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-arm64.zip", - "hash": "2df2ba1949621525b70767bd1230928d8d82255e58a0f28a131ae4345d32e62ceeac41f42bac119c7b60eef0f9731d4920e522a4555e5d64a34ef361ef5128de" - }, - { - "name": "windowsdesktop-runtime-win-x64.exe", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-x64.exe", - "hash": "ef2731f34d6d2e732deaa5dff36e4fc04d6c2d6f600d0faf0a8f4f662e731fb6eeb778efa2dbc287dc04bdc00fda257f194ffb7821958cd4137683feaabe9d12" - }, - { - "name": "windowsdesktop-runtime-win-x64.zip", - "rid": "win-x64", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-x64.zip", - "hash": "15f93de63a9144e01528bafd169d62a0e7fa1fc5a85c4e7422a1553b79ddbbc7213488facc38d677b8fca90778c608d623f49ada121a16664d675a1d7e225d9e" - }, - { - "name": "windowsdesktop-runtime-win-x86.exe", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-x86.exe", - "hash": "0288cddb418da54bbc09fdf9640eaa8ea0c236e4cec8613b70c10f6a2e2f831104d68d0bbe11138ba51bf51861cfdb6fba532394e3e58a7ce255f28f7f71a474" - }, - { - "name": "windowsdesktop-runtime-win-x86.zip", - "rid": "win-x86", - "url": "https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/9.0.0-preview.1.24081.3/windowsdesktop-runtime-9.0.0-preview.1.24081.3-win-x86.zip", - "hash": "e47ae91d7bf992e9dda09519551dc2dc9f5cec7b61542961c3b8c9ca67606204ed2f212934bed8a34bf6331d095683f018bb4418fed442e5b3ead1a11b479f28" - } - ] - } - } - ] -} diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/readme.md b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/readme.md deleted file mode 100644 index 72b5266340..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/readme.md +++ /dev/null @@ -1,6 +0,0 @@ -These are cached versions of the releases files. - - - -The updateReleases.cmd script can be run occasionally to update the default version which we copy to the package extensions folder in order to avoid initial download on first runs. - diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/updateReleases.cmd b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/updateReleases.cmd deleted file mode 100644 index 5a08dd032f..0000000000 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/.releases/updateReleases.cmd +++ /dev/null @@ -1,25 +0,0 @@ -@ECHO OFF - -SETLOCAL ENABLEDELAYEDEXPANSION - -REM Download the index -ECHO Downloading releases.json for version %%V... -curl -o %~dp0.releases.json https://builds.dotnet.microsoft.com/dotnet/release-metadata/releases-index.json -ECHO Saved as %~dp0.releases.json - -REM Define the base URL -SET BASE_URL=https://builds.dotnet.microsoft.com/dotnet/release-metadata - -REM Define the versions to download, these should all be present in the releases-index.json -REM Note, we are assuming a consistent BASE_URL for each release metadata, this *could* change -SET VERSIONS=5.0 6.0 7.0 8.0 9.0 10.0 - -REM Loop through each version and download the corresponding releases.json -FOR %%V IN (%VERSIONS%) DO ( - SET FILENAME=%~dp0%%V.releases.json - ECHO Downloading releases.json for version %%V... - curl -o "!FILENAME!" "!BASE_URL!/%%V/releases.json" - ECHO Saved as !FILENAME! -) - -ENDLOCAL \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/Microsoft.VisualStudio.ProjectSystem.Managed.VS.csproj b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/Microsoft.VisualStudio.ProjectSystem.Managed.VS.csproj index 9b27766c12..06b85ec326 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/Microsoft.VisualStudio.ProjectSystem.Managed.VS.csproj +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/Microsoft.VisualStudio.ProjectSystem.Managed.VS.csproj @@ -39,16 +39,6 @@ - - - - - - - - - - Component diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index d72677ea47..799b694a81 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -4,7 +4,6 @@ using Microsoft.VisualStudio.Linq; using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Threading; -using IFileSystem = Microsoft.VisualStudio.IO.IFileSystem; using Path = Microsoft.IO.Path; namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; @@ -18,7 +17,6 @@ internal class DotNetReleasesProvider : IDotNetReleasesProvider private readonly AsyncLazy _productCollection; private readonly AsyncLazy _appDataPath; private readonly IVsUIService _vsShell; - private readonly IFileSystem _fileSystem; private readonly IProjectThreadingService _projectThreadingService; private ImmutableDictionary>> _productReleasesByProductVersion = ImmutableStringDictionary>>.EmptyOrdinal; @@ -26,12 +24,10 @@ internal class DotNetReleasesProvider : IDotNetReleasesProvider [ImportingConstructor] public DotNetReleasesProvider( IVsUIService vsShell, - IFileSystem fileSystem, IProjectThreadingService projectThreadingService) { _vsShell = vsShell; _projectThreadingService = projectThreadingService; - _fileSystem = fileSystem; _appDataPath = new AsyncLazy( async () => @@ -63,8 +59,6 @@ public DotNetReleasesProvider( try { - CreateDefaultFileIfNotExist(resourcesFileName, ReleasesFileName); - return await ProductCollection.GetFromFileAsync(resourcesFileName, downloadLatest: true); } catch (Exception ex) when (ex.IsCatchable()) @@ -76,21 +70,6 @@ public DotNetReleasesProvider( _projectThreadingService.JoinableTaskFactory); } - private void CreateDefaultFileIfNotExist(string destinationPath, string fileName) - { - if (!_fileSystem.FileExists(destinationPath)) - { - // e.g. %LocalAppData%\Microsoft\VisualStudio\18.0_721820d7Exp\Extensions\Microsoft\C#, Visual Basic and F# project systems\99.0.0.0\.releases\.releases.json - string sourceFile = Path.Join(Path.GetDirectoryName(GetType().Assembly.Location), ".releases", fileName); - - if (_fileSystem.FileExists(sourceFile)) - { - _fileSystem.CreateDirectory(Path.GetDirectoryName(destinationPath)!); - _fileSystem.CopyFile(sourceFile, destinationPath, overwrite: false); - } - } - } - public async Task GetNewerSupportedSdkVersionAsync(string sdkVersion, CancellationToken cancellationToken = default) { ProductCollection? products = await _productCollection.GetValueAsync(cancellationToken); @@ -165,8 +144,6 @@ private void CreateDefaultFileIfNotExist(string destinationPath, string fileName { try { - CreateDefaultFileIfNotExist(resourceFileName, $"{version}{ReleasesFileName}"); - return await product.GetReleasesAsync(resourceFileName, downloadLatest: true); } catch (Exception ex) when (ex.IsCatchable()) diff --git a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.VS.UnitTests/Setup/PackageContentTests.cs b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.VS.UnitTests/Setup/PackageContentTests.cs index cdf89addbd..9a397dae82 100644 --- a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.VS.UnitTests/Setup/PackageContentTests.cs +++ b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.VS.UnitTests/Setup/PackageContentTests.cs @@ -19,13 +19,6 @@ public void ProjectSystem() var expected = new[] { - @".releases/.releases.json", - @".releases/10.0.releases.json", - @".releases/5.0.releases.json", - @".releases/6.0.releases.json", - @".releases/7.0.releases.json", - @".releases/8.0.releases.json", - @".releases/9.0.releases.json", @"[Content_Types].xml", @"catalog.json", @"cs/Microsoft.VisualStudio.ProjectSystem.Managed.resources.dll", From b91c7d58dfcbeac7b5849cb0c2cfc22ab826ff62 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:51:08 +1100 Subject: [PATCH 05/12] Use Microsoft.IO.Path --- .../VS/Retargeting/ProjectRetargetHandler.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs index b4f2889074..e787e2bd04 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs @@ -5,6 +5,7 @@ using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Threading; using IFileSystem = Microsoft.VisualStudio.IO.IFileSystem; +using Path = Microsoft.IO.Path; namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; @@ -112,14 +113,17 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro private string? FindGlobalJsonPath(string startingDirectory) { - string dir = startingDirectory; + string? dir = startingDirectory; + while (!string.IsNullOrEmpty(dir)) { - string globalJsonPath = Path.Combine(dir, "global.json"); + string globalJsonPath = Path.Join(dir, "global.json"); + if (_fileSystem.FileExists(globalJsonPath)) { return globalJsonPath; } + dir = Path.GetDirectoryName(dir); } From 574ea1338982895cb6bca141d0eed9aafd8f6cb2 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 11:51:24 +1100 Subject: [PATCH 06/12] Change folder we cache release data in --- .../ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index 799b694a81..4ae6261f54 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -11,7 +11,7 @@ namespace Microsoft.VisualStudio.ProjectSystem.VS.Retargeting; [Export(typeof(IDotNetReleasesProvider))] internal class DotNetReleasesProvider : IDotNetReleasesProvider { - private const string RetargetingAppDataFolder = "ProjectSystem.Retargeting"; + private const string RetargetingAppDataFolder = @"ProjectSystem\Retargeting"; private const string ReleasesFileName = ".releases.json"; private readonly AsyncLazy _productCollection; From 3c418786854a091569c39d4a8eee984fceb9f8cc Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 12:11:54 +1100 Subject: [PATCH 07/12] Avoid expensive download for supported major versions --- .../VS/Retargeting/DotNetReleasesProvider.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index 4ae6261f54..2172cdb9eb 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -105,7 +105,17 @@ public DotNetReleasesProvider( async Task GetLatestSupportedSdkVersionAsync(ReleaseVersion? currentVersion, Product matchingProduct) { - var lazy = ImmutableInterlocked.GetOrAdd( + if (matchingProduct.SupportPhase is SupportPhase.Active or SupportPhase.Maintenance or SupportPhase.EOL) + { + // For these support phases, we can use the SDK version defined directly on the product + // and avoid downloading the lengthy release data for that particular version. + return matchingProduct.LatestSdkVersion.ToString(); + } + + // TODO in future we want EOL phase to recommend the user move to the highest supported active SDK version. + // Should this suggest only LTS or also STS? + + AsyncLazy> lazy = ImmutableInterlocked.GetOrAdd( ref _productReleasesByProductVersion, key: matchingProduct.ProductVersion, valueFactory: (key, arg) => new AsyncLazy>( From ea1f7ed9556dfb5ab83b0afb725d8eab0317fe3a Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 12:12:36 +1100 Subject: [PATCH 08/12] Formatting --- .../VS/Retargeting/DotNetReleasesProvider.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index 2172cdb9eb..f8f52b7607 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -16,7 +16,7 @@ internal class DotNetReleasesProvider : IDotNetReleasesProvider private readonly AsyncLazy _productCollection; private readonly AsyncLazy _appDataPath; - private readonly IVsUIService _vsShell; + private readonly IVsUIService _vsShell; private readonly IProjectThreadingService _projectThreadingService; private ImmutableDictionary>> _productReleasesByProductVersion = ImmutableStringDictionary>>.EmptyOrdinal; @@ -80,7 +80,7 @@ public DotNetReleasesProvider( return null; } - if (ReleaseVersion.TryParse(sdkVersion, out ReleaseVersion parsedSdkVersion)) + if (ReleaseVersion.TryParse(sdkVersion, out ReleaseVersion? parsedSdkVersion)) { // Find the product that matches the major/minor version of the SDK Product? matchingProduct = products.FirstOrDefault( @@ -103,7 +103,7 @@ public DotNetReleasesProvider( return null; - async Task GetLatestSupportedSdkVersionAsync(ReleaseVersion? currentVersion, Product matchingProduct) + async Task GetLatestSupportedSdkVersionAsync(ReleaseVersion currentVersion, Product matchingProduct) { if (matchingProduct.SupportPhase is SupportPhase.Active or SupportPhase.Maintenance or SupportPhase.EOL) { @@ -130,9 +130,9 @@ public DotNetReleasesProvider( _projectThreadingService.JoinableTaskFactory), factoryArgument: matchingProduct); - var releases = await lazy.GetValueAsync(cancellationToken); + IReadOnlyCollection releases = await lazy.GetValueAsync(cancellationToken); - // Find the latest SDK version + // Find the latest SDK version. SdkReleaseComponent? latestSdk = releases .SelectMany(r => r.Sdks) .MaxByOrDefault(sdk => sdk.Version); From 44680a7fb54d9495afb6bd72c37b7bdd9d89c3c6 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 12:29:16 +1100 Subject: [PATCH 09/12] Avoid JTF.Run in dispose --- .../VS/Retargeting/DotNetReleasesProvider.cs | 6 +-- .../VS/Retargeting/ProjectRetargetHandler.cs | 41 ++++++++----------- 2 files changed, 19 insertions(+), 28 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index f8f52b7607..787063e189 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -61,7 +61,7 @@ public DotNetReleasesProvider( { return await ProductCollection.GetFromFileAsync(resourcesFileName, downloadLatest: true); } - catch (Exception ex) when (ex.IsCatchable()) + catch { // If we fail to load the product collection, return null return null; @@ -94,7 +94,7 @@ public DotNetReleasesProvider( { return await GetLatestSupportedSdkVersionAsync(parsedSdkVersion, matchingProduct); } - catch (Exception ex) when (ex.IsCatchable()) + catch { // we can just fall through and return null here } @@ -156,7 +156,7 @@ public DotNetReleasesProvider( { return await product.GetReleasesAsync(resourceFileName, downloadLatest: true); } - catch (Exception ex) when (ex.IsCatchable()) + catch { // if we fail to load the releases, return null return null; diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs index e787e2bd04..0aca8fe655 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/ProjectRetargetHandler.cs @@ -16,10 +16,10 @@ internal sealed partial class ProjectRetargetHandler : IProjectRetargetHandler, { private readonly IDotNetReleasesProvider _releasesProvider; private readonly IFileSystem _fileSystem; - private readonly IProjectThreadingService _projectThreadingService; private readonly IVsService _projectRetargetingService; private readonly ISolutionService _solutionService; + private IVsTrackProjectRetargeting2? _projectRetargeting; private Guid _currentSdkDescriptionId = Guid.Empty; private Guid _sdkRetargetId = Guid.Empty; @@ -27,13 +27,11 @@ internal sealed partial class ProjectRetargetHandler : IProjectRetargetHandler, public ProjectRetargetHandler( IDotNetReleasesProvider releasesProvider, IFileSystem fileSystem, - IProjectThreadingService projectThreadingService, IVsService projectRetargetingService, ISolutionService solutionService) { _releasesProvider = releasesProvider; _fileSystem = fileSystem; - _projectThreadingService = projectThreadingService; _projectRetargetingService = projectRetargetingService; _solutionService = solutionService; } @@ -64,13 +62,6 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro private async Task GetTargetChangeAndRegisterTargetsAsync() { - IVsTrackProjectRetargeting2? retargetingService = await _projectRetargetingService.GetValueOrNullAsync(); - - if (retargetingService is null) - { - return null; - } - string? sdkVersion = await GetSdkVersionForSolutionAsync(); if (sdkVersion is null) @@ -85,6 +76,8 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro return null; } + _projectRetargeting ??= await _projectRetargetingService.GetValueAsync(); + if (_currentSdkDescriptionId == Guid.Empty) { // register the current and retarget versions, note there is a bug in the current implementation @@ -92,14 +85,14 @@ public Task RetargetAsync(TextWriter outputLogger, RetargetOptions options, IPro // targets, we want to create two distinct ones, as the bug workaround requires different guids IVsProjectTargetDescription currentSdkDescription = RetargetSDKDescription.Create(retargetVersion); // this won't be needed - retargetingService.RegisterProjectTarget(currentSdkDescription); // this wont be needed. + _projectRetargeting.RegisterProjectTarget(currentSdkDescription); // this wont be needed. _currentSdkDescriptionId = currentSdkDescription.TargetId; } if (_sdkRetargetId == Guid.Empty) { IVsProjectTargetDescription retargetSdkDescription = RetargetSDKDescription.Create(retargetVersion); // this won't be needed - retargetingService.RegisterProjectTarget(retargetSdkDescription); // this wont be needed. + _projectRetargeting.RegisterProjectTarget(retargetSdkDescription); // this wont be needed. _sdkRetargetId = retargetSdkDescription.TargetId; } @@ -162,20 +155,18 @@ public void Dispose() { if (_currentSdkDescriptionId != Guid.Empty || _sdkRetargetId != Guid.Empty) { - _projectThreadingService.JoinableTaskFactory.Run(async () => + Assumes.NotNull(_projectRetargeting); + + if (_currentSdkDescriptionId != Guid.Empty) { - IVsTrackProjectRetargeting2? retargetingService = await _projectRetargetingService.GetValueOrNullAsync(); - if (_currentSdkDescriptionId != Guid.Empty) - { - retargetingService?.UnregisterProjectTarget(_currentSdkDescriptionId); - _currentSdkDescriptionId = Guid.Empty; - } - if (_sdkRetargetId != Guid.Empty) - { - retargetingService?.UnregisterProjectTarget(_sdkRetargetId); - _sdkRetargetId = Guid.Empty; - } - }); + _projectRetargeting.UnregisterProjectTarget(_currentSdkDescriptionId); + _currentSdkDescriptionId = Guid.Empty; + } + if (_sdkRetargetId != Guid.Empty) + { + _projectRetargeting.UnregisterProjectTarget(_sdkRetargetId); + _sdkRetargetId = Guid.Empty; + } } } } From fd905f20836305c57375d8613ca813607d35af80 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 12:59:04 +1100 Subject: [PATCH 10/12] Add comment --- .../ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index 787063e189..b1804464d7 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -57,6 +57,9 @@ public DotNetReleasesProvider( string resourcesFileName = Path.Join(appDataPath, RetargetingAppDataFolder, ReleasesFileName); + // NOTE this is doing network and disk IO on the main thread, but the retargeting APIs are + // called on the main thread so it's not clear what we can do about this. + try { return await ProductCollection.GetFromFileAsync(resourcesFileName, downloadLatest: true); From 421a771aeec1790629ec9ffb51433ddda267152b Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 13:27:47 +1100 Subject: [PATCH 11/12] Simplify --- .../ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs index b1804464d7..2860f13017 100644 --- a/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs +++ b/src/Microsoft.VisualStudio.ProjectSystem.Managed.VS/ProjectSystem/VS/Retargeting/DotNetReleasesProvider.cs @@ -121,17 +121,16 @@ public DotNetReleasesProvider( AsyncLazy> lazy = ImmutableInterlocked.GetOrAdd( ref _productReleasesByProductVersion, key: matchingProduct.ProductVersion, - valueFactory: (key, arg) => new AsyncLazy>( + valueFactory: key => new AsyncLazy>( async () => { string appDataPath = await _appDataPath.GetValueAsync(); string resourceFileName = Path.Combine(appDataPath, RetargetingAppDataFolder, $"{key}{ReleasesFileName}"); - return await GetReleasesAsync(arg, resourceFileName, key) ?? []; + return await GetReleasesAsync(matchingProduct, resourceFileName, key) ?? []; }, - _projectThreadingService.JoinableTaskFactory), - factoryArgument: matchingProduct); + _projectThreadingService.JoinableTaskFactory)); IReadOnlyCollection releases = await lazy.GetValueAsync(cancellationToken); From 888a13b39376054669289692155920959ad122d4 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Fri, 21 Nov 2025 15:24:42 +1100 Subject: [PATCH 12/12] Fix test code --- .../Mocks/ISolutionServiceFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs index 3aac97ea3a..f4596f6784 100644 --- a/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs +++ b/tests/Microsoft.VisualStudio.ProjectSystem.Managed.UnitTests/Mocks/ISolutionServiceFactory.cs @@ -9,7 +9,7 @@ public static ISolutionService Create(string? solutionDirectory = null) var mock = new Mock(); mock.Setup(m => m.LoadedInHost) - .Returns(Task.CompletedTask); + .Returns(() => new Task(() => { })); mock.Setup(m => m.GetSolutionDirectoryAsync(It.IsAny())) .ReturnsAsync(solutionDirectory);