chore: import upstream snapshot with attribution
.NET Tests / test-codebase (push) Has been cancelled
Translation Validation / validate-translations (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:01:52 +08:00
commit 643e9f9fcb
1003 changed files with 247032 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
$schema: https://raw.githubusercontent.com/PowerShell/DSC/main/schemas/2024/04/config/document.json
metadata:
name: UniGetUI Complete Environment
description: Installs all dependencies and tools for UniGetUI development and runtime
author: Martí Climent
resources:
# Basic dependencies
- name: Install Microsoft Edge WebView2
type: Microsoft.WinGet/Package
properties:
id: Microsoft.EdgeWebView2Runtime
source: winget
- name: Install Microsoft Visual C++ 2015-2022 Redistributable
type: Microsoft.WinGet/Package
properties:
id: Microsoft.VCRedist.2015+.x64
source: winget
- name: Install UniGetUI
type: Microsoft.WinGet/Package
properties:
id: MartiCliment.UniGetUI
source: winget
# Package Managers (for testing UniGetUI functionality)
- name: Install Chocolatey
type: Microsoft.WinGet/Package
properties:
id: Chocolatey.Chocolatey
source: winget
- name: Install Python
type: Microsoft.WinGet/Package
properties:
id: Python.Python.3.13
source: winget
- name: Install PowerShell 7
type: Microsoft.WinGet/Package
properties:
id: Microsoft.PowerShell
source: winget
- name: Install NodeJS
type: Microsoft.WinGet/Package
properties:
id: OpenJS.NodeJS
source: winget
- name: Install Rust (Cargo)
type: Microsoft.WinGet/Package
properties:
id: Rustlang.Rustup
source: winget
- name: Install .NET 10 SDK
type: Microsoft.WinGet/Package
properties:
id: Microsoft.DotNet.SDK.10
source: winget
# vcpkg bootstrap is optional; run scripts\dev-setup-optional.ps1 if needed.