From c619f3a830662dfc6c12b70e2116f8d2c6cc562c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <81994075+raphm4044@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:30:43 +0100 Subject: [PATCH] Add more development tools to applications.json (#4093) * Add .NET Desktop Runtime 10 to applications.json * Add LLVM to applications.json * Add NASM to applications.json --- config/applications.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/config/applications.json b/config/applications.json index bf828f34..c63e1a26 100644 --- a/config/applications.json +++ b/config/applications.json @@ -496,6 +496,14 @@ "link": "https://dotnet.microsoft.com/download/dotnet/9.0", "winget": "Microsoft.DotNet.DesktopRuntime.9" }, + "dotnet10": { + "category": "Microsoft Tools", + "choco": "dotnet-10.0-runtime", + "content": ".NET Desktop Runtime 10", + "description": ".NET Desktop Runtime 10 is a runtime environment required for running applications developed with .NET 10.", + "link": "https://dotnet.microsoft.com/download/dotnet/10.0", + "winget": "Microsoft.DotNet.DesktopRuntime.10" + }, "dmt": { "winget": "GNE.DualMonitorTools", "choco": "dual-monitor-tools", @@ -3226,5 +3234,23 @@ "link": "https://zed.dev/", "winget": "ZedIndustries.Zed", "foss": true + }, + "LLLVM": { + "category": "Development", + "choco": "llvm", + "winget": "LLVM.LLVM", + "description": "A collection of modular and reusable compiler and toolchain technologies.", + "content": "LLVM", + "link": "https://llvm.org", + "foss": true + }, + "NASM": { + "category": "Development", + "choco": "nasm", + "winget": "NASM.NASM", + "description": "A powerful assembler for the x86 platform.", + "content": "NASM", + "link": "https://nasm.us", + "foss": true } }