Skip to content

Commit c3a2b67

Browse files
Merge pull request #334 from CommunityToolkit/fix/UseTargetFrameworks-defaults
Added default targets to UseTargetFrameworks.ps1
2 parents b001ef2 + af23632 commit c3a2b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/Scripts/UseTargetFrameworks.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Param (
22
[Parameter(HelpMessage = "The target frameworks to enable.")]
33
[ValidateSet('all', 'wasm', 'uwp', 'winappsdk', 'wpf', 'gtk', 'macos', 'ios', 'droid')]
4-
[string[]]$targets,
4+
[string[]]$targets = @('uwp', 'winappsdk', 'wasm'),
55

66
[Parameter(HelpMessage = "Disables suppressing changes to the Labs.TargetFrameworks.props file in git, allowing changes to be committed.")]
77
[switch]$allowGitChanges = $false

0 commit comments

Comments
 (0)