# 25.10.6

> **Release date: January 19, 2026**

**Release date: January 19, 2026**

## Bug fixes

### Projects with UIAutomation Dependency

Resolved an issue that prevented successful compilation of projects containing UIAutomation dependencies. The CLI now correctly handles and builds projects that include UIAutomation packages.

### NuGet.config Auto-Discovery

Fixed the auto-discovery mechanism for user-level and machine-level NuGet.config files. The CLI now properly locates and applies NuGet configuration from both standard locations during package restore operations.

## Known issues and workarounds

### PowerShell Parameter Handling for Secrets

When using the `applicationSecret` parameter in PowerShell scripts, special characters such as `$` may cause unexpected behavior due to PowerShell's variable expansion in double-quoted strings.

**Workaround:** Use single quotes (`''`) instead of double quotes (`""`) when passing the `applicationSecret` parameter to prevent PowerShell from interpreting special characters.

```powershell
# Incorrect - double quotes allow variable expansion
uipcli package deploy --applicationSecret "mySecret$123"

# Correct - single quotes treat the string literally
uipcli package deploy --applicationSecret 'mySecret$123'
```
