-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #866 from unoplatform/dev/nr/templateext
feat: Updating Extensions Template
- Loading branch information
Showing
49 changed files
with
917 additions
and
679 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 35 additions & 7 deletions
42
src/Uno.Extensions.Templates/content/unoapp-extensions/.template.config/dotnetcli.host.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,57 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/dotnetcli.host", | ||
"symbolInfo": { | ||
"WebAssembly": { | ||
"wasm": { | ||
"longName": "webassembly", | ||
"shortName": "wasm" | ||
}, | ||
"iOS": { | ||
"ios": { | ||
"longName": "ios", | ||
"shortName": "ios" | ||
}, | ||
"Android": { | ||
"android": { | ||
"longName": "android", | ||
"shortName": "android" | ||
"shortName": "droid" | ||
}, | ||
"macOS": { | ||
"macos": { | ||
"longName": "macos", | ||
"shortName": "macos" | ||
}, | ||
"maccatalyst": { | ||
"longName": "maccatalyst", | ||
"shortName": "catalyst" | ||
}, | ||
"skia-wpf": { | ||
"longName": "skia-wpf", | ||
"shortName": "skia-wpf" | ||
"shortName": "wpf" | ||
}, | ||
"skia-gtk": { | ||
"longName": "skia-gtk", | ||
"shortName": "skia-gtk" | ||
"shortName": "gtk" | ||
}, | ||
"skia-linux-fb": { | ||
"longName": "skia-linux-fb", | ||
"shortName": "linux" | ||
}, | ||
"winAppSdk": { | ||
"longName": "windowsAppSdk", | ||
"shortName": "win" | ||
}, | ||
"tests": { | ||
"longName": "tests", | ||
"shortName": "tests" | ||
}, | ||
"wasm-pwa-manifest": { | ||
"longName": "wasm-pwa-manifest", | ||
"shortName": "pwa" | ||
}, | ||
"vscode": { | ||
"longName": "vscode", | ||
"shortName": "vscode" | ||
}, | ||
"skipRestore": { | ||
"longName": "skipPackageRestore", | ||
"shortName": "skipRestore" | ||
} | ||
} | ||
} |
134 changes: 134 additions & 0 deletions
134
src/Uno.Extensions.Templates/content/unoapp-extensions/.template.config/ide.host.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/ide.host", | ||
"name": { | ||
"text": "Multi-Platform App (Uno.Extensions)" | ||
}, | ||
"description": { | ||
"text": "Solution template for creating a multi-platform C# & XAML application targeting Windows App SDK, Android, iOS, macOS, WebAssembly, Skia/WPF and Skia/GTK for Linux." | ||
}, | ||
"order": 610, | ||
"icon": "uno-logo.png", | ||
"learnMoreLink": "https://github.com/unoplatform/uno", | ||
"symbolInfo": [ | ||
{ | ||
"id": "wasm", | ||
"name": { | ||
"text": "Web - WebAssembly" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the WebAssembly platform support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "ios", | ||
"name": { | ||
"text": "Mobile - iOS" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the iOS platform in the Mobile support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "android", | ||
"name": { | ||
"text": "Mobile - Android" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the Android platform in the Mobile support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "winAppSdk", | ||
"name": { | ||
"text": "Desktop - WinUI (Windows App SDK)" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the Widnows App SDK platform support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "skia-gtk", | ||
"name": { | ||
"text": "Desktop - Gtk (Linux, macOS, Windows 7 or later)" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the Skia/GTK platform support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "macos", | ||
"name": { | ||
"text": "Desktop - macOS (AppKit)" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the macOS (AppKit) platform in the Mobile support project" | ||
}, | ||
"defaultValue": "false", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "maccatalyst", | ||
"name": { | ||
"text": "Desktop - macOS (Catalyst)" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the macOS (Catalyst) platform in the Mobile support project" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "skia-wpf", | ||
"name": { | ||
"text": "Desktop - WPF (Windows 7 or later)" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the Skia/WPF platform support project" | ||
}, | ||
"defaultValue": "false", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "skia-linux-fb", | ||
"name": { | ||
"text": "Desktop - Linux Framebuffer" | ||
}, | ||
"description": | ||
{ | ||
"text": "Enables the Skia/Linux Framebuffer platform support project" | ||
}, | ||
"defaultValue": "false", | ||
"isVisible":true | ||
}, | ||
{ | ||
"id": "tests", | ||
"name": { | ||
"text": "Testing - Unit and UI Tests" | ||
}, | ||
"description": | ||
{ | ||
"text": "Includes projects for unit and UI tests" | ||
}, | ||
"defaultValue": "true", | ||
"isVisible":true | ||
} | ||
] | ||
} |
Oops, something went wrong.