diff --git a/doc/articles/features/using-the-uno-sdk.md b/doc/articles/features/using-the-uno-sdk.md
index 81ba50453b23..f7715dbf0e2c 100644
--- a/doc/articles/features/using-the-uno-sdk.md
+++ b/doc/articles/features/using-the-uno-sdk.md
@@ -71,7 +71,7 @@ Here are the supported features:
| `Material` | Adds support for the [Material Design Theme](xref:Uno.Themes.Material.GetStarted) library. If the `Toolkit` feature is also used, it will add support for the [Material Design Toolkit](xref:Toolkit.GettingStarted.Material) library. |
| `Cupertino` | Adds support for the [Cupertino Design Theme](xref:Uno.Themes.Cupertino.GetStarted) library. If the `Toolkit` feature is also used, it will add support for the [Cupertino Design Toolkit](xref:Toolkit.GettingStarted.Cupertino) library. |
| `Mvvm` | Adds support for the [CommunityToolkit.Mvvm](https://www.nuget.org/packages/CommunityToolkit.Mvvm) package. |
-| `Dsp` | Adds support for the [Uno.Dsp packages](https://www.nuget.org/packages?q=uno.dsp). |
+| `Dsp` | Adds support for the [Uno.Dsp.Tasks packages](https://www.nuget.org/packages?q=uno.dsp.tasks). |
| `Prism` | Adds [Prism](https://github.com/PrismLibrary/Prism) support for Uno Platform applications WinUI. |
| `Skia` | Adds support for [SkiaSharp](https://github.com/mono/SkiaSharp). |
| `Svg` | [SVG](xref:Uno.Features.SVG) support for iOS, Android, and Mac Catalyst. This option is not needed when only targeting WebAssembly and WinAppSDK. |
@@ -94,7 +94,7 @@ Here are the supported properties:
|----------------------------------|------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
| `UnoCoreLoggingSingletonVersion` | [Uno.Core.Extensions.Logging.Singleton](https://www.nuget.org/packages/Uno.Core.Extensions.Logging.Singleton) | Provides a logging singleton pattern with helpers and extension methods for simplified logging. |
| `UnoCSharpMarkupVersion` | [Uno.WinUI.Markup](https://www.nuget.org/packages/Uno.WinUI.Markup) and similar packages | Enables [C# Markup](xref:Uno.Extensions.Markup.Overview), the use of C# for building UI markup, similar to XAML but with C# syntax. |
-| `UnoDspTasksVersion` | [Uno.Dsp.Tasks](https://www.nuget.org/packages/Uno.Dsp.Tasks) and similar packages | Includes tasks for Design System Package (DSP) within Uno Platform projects. |
+| `UnoDspTasksVersion` | [Uno.Dsp.Tasks](https://www.nuget.org/packages/Uno.Dsp.Tasks) and similar packages | Includes tasks for Uno DSP (Theme colors import) within Uno Platform projects. |
| `UnoExtensionsVersion` | [Uno.Extensions.Storage.WinUI](https://www.nuget.org/packages/Uno.Extensions.Storage.WinUI) and similar packages | Extends the Uno Platform with additional methods and classes for more versatile application development. |
| `UnoLoggingVersion` | [Uno.Extensions.Logging.OSLog](https://www.nuget.org/packages/Uno.Extensions.Logging.OSLog) and similar packages | Implements logging mechanisms to help with monitoring and debugging Uno Platform applications. |
| `UnoResizetizerVersion` | [Uno.Resizetizer](https://www.nuget.org/packages/Uno.Resizetizer) | Provides tools for automatically resizing and managing image assets in Uno Platform projects. |
diff --git a/doc/articles/getting-started/wizard/includes/themes.md b/doc/articles/getting-started/wizard/includes/themes.md
index b842993d6a13..290c139d81f5 100644
--- a/doc/articles/getting-started/wizard/includes/themes.md
+++ b/doc/articles/getting-started/wizard/includes/themes.md
@@ -28,9 +28,9 @@ Includes references to the [Uno.Extensions.Core.WinUI](https://www.nuget.org/pac
dotnet new unoapp -theme-Service
```
-#### Import DSP
+#### Import Theme File (Uno.Dsp)
-Allows colors in the application to be overridden using a DSP file (Material theme only). This is included by default in the recommended preset, but not in the blank preset.
+Allows colors in the application to be overridden using a theme file (Material theme only). This is included by default in the recommended preset, but not in the blank preset.
```dotnetcli
dotnet new unoapp -dsp
diff --git a/src/SolutionTemplate/5.1/uno51recommended/Directory.Packages.props b/src/SolutionTemplate/5.1/uno51recommended/Directory.Packages.props
index 07aca66197f5..22da180114a9 100644
--- a/src/SolutionTemplate/5.1/uno51recommended/Directory.Packages.props
+++ b/src/SolutionTemplate/5.1/uno51recommended/Directory.Packages.props
@@ -53,7 +53,7 @@
-
+
diff --git a/src/Uno.Sdk/Sdk/Sdk.props.buildschema.json b/src/Uno.Sdk/Sdk/Sdk.props.buildschema.json
index 6bafec5b774b..c4923821ad12 100644
--- a/src/Uno.Sdk/Sdk/Sdk.props.buildschema.json
+++ b/src/Uno.Sdk/Sdk/Sdk.props.buildschema.json
@@ -286,12 +286,12 @@
],
"items": {
"UnoDspImportColors": {
- "description": "Imports a DSP file with color definitions.",
+ "description": "Imports a theme file with color definitions.",
"metadata": {
"Generator": {
"type": { "$ref": "#/types/unoDspGenerator" },
"isRequired": true,
- "description": "The type of generator to use for the DSP file."
+ "description": "The type of generator to use for the theme file (a .json/.zip extracted from Material Theme Builder)."
}
}
},
@@ -370,10 +370,10 @@
"caseSensitive": true,
"values": {
"Xaml": {
- "description": "Generates a XAML file from the DSP file."
+ "description": "Generates a XAML file from the theme file."
},
"CSharp": {
- "description": "Generates a C# file from the DSP file."
+ "description": "Generates a C# file from the theme file."
}
}
},
@@ -474,7 +474,7 @@
"helpUrl": "https://aka.platform.uno/feature-cupertino"
},
"Dsp": {
- "description": "Adds support for the Uno.Dsp package.",
+ "description": "Adds support for the Uno.Dsp.Tasks package.",
"helpUrl": "https://aka.platform.uno/feature-dsp"
},
"Mvvm": {
diff --git a/src/Uno.Sdk/packages.json b/src/Uno.Sdk/packages.json
index 5228d5d2c6fb..874c626c7903 100644
--- a/src/Uno.Sdk/packages.json
+++ b/src/Uno.Sdk/packages.json
@@ -58,7 +58,7 @@
},
{
"group": "Dsp",
- "version": "1.2.9",
+ "version": "1.3.0",
"packages": [
"Uno.Dsp.Tasks"
]
diff --git a/src/Uno.Sdk/targets/Uno.Common.targets b/src/Uno.Sdk/targets/Uno.Common.targets
index e06b35568225..1bd426c16074 100644
--- a/src/Uno.Sdk/targets/Uno.Common.targets
+++ b/src/Uno.Sdk/targets/Uno.Common.targets
@@ -118,6 +118,11 @@
+
+
+
+
+