Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"localization": "false",
"logging": "none",
"markup": "xaml",
"webview": "false",
"mediaElement": "false",
"navigation": "blank",
"platforms": "android|ios|wasm|desktop",
Expand Down Expand Up @@ -132,6 +133,7 @@
"localization": "true",
"logging": "default",
"markup": "xaml",
"webview": "false",
"mediaElement": "false",
"navigation": "regions",
"platforms": "android|ios|wasm|desktop",
Expand Down Expand Up @@ -231,7 +233,7 @@
// and we recently removed .NET 8 option from the template (see PR #1373).
// This feature will be re-enabled once multi-threading becomes available again.
//"SymbolIds": [ "toolkit", "mauiEmbedding", "server", "wasmMultiThreading", "wasmPwaManifest", "vscode", "enableDeveloperMode", "mediaElement" ]
"SymbolIds": [ "toolkit", "mauiEmbedding", "server", "wasmPwaManifest", "vscode", "enableDeveloperMode", "mediaElement" ]
"SymbolIds": [ "toolkit", "mauiEmbedding", "server", "wasmPwaManifest", "vscode", "enableDeveloperMode", "webview", "mediaElement" ]
}
,
{
Expand Down Expand Up @@ -681,6 +683,9 @@
"vscode": {
"Icon": "/Assets/Features.VSCode.svg"
},
"webview": {
"Icon": "/Assets/Features.WebView.svg"
},
"mediaElement": {
"Icon": "/Assets/Features.MediaElement.svg"
},
Expand Down Expand Up @@ -777,6 +782,7 @@
"themeService",
"continuousIntegration",
"isCustomized",
"webview",
"mediaElement",
"renderer"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@
"longName": "maui-embedding",
"shortName": "maui"
},
"webview": {
"longName": "webview",
"shortName": "webview"
},
"mediaElement": {
"longName": "media-element",
"shortName": "media"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,13 @@
// "datatype": "bool",
// "defaultValue": "false"
// },
"webview": {
"displayName": "WebView",
"description": "Configures application to bundle native assets required for the WebView2 control.",
"type": "parameter",
"datatype": "bool",
"defaultValue": "false"
},
"mediaElement": {
"displayName": "Media Element",
"description": "Configures application to bundle native assets required for the MediaElement",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
<!--#if (useUnoLottie)-->
Lottie;
<!--#endif-->
<!--#if (webview)-->
WebView;
<!--#endif-->
<!--#if (mediaElement)-->
MediaElement;
<!--#endif-->
Expand Down
Loading