Skip to content

Commit f3c24c1

Browse files
committed
Fix multitarget name for droid
1 parent a7d5d46 commit f3c24c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MultiTarget/GenerateMultiTargetAwareProjectReferenceProps.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ $templateContents = $templateContents -replace [regex]::escape("[CanTargetWpf]")
6767
$templateContents = $templateContents -replace [regex]::escape("[CanTargetLinuxGtk]"), "'$(ShouldMultiTarget "linuxgtk")'";
6868
$templateContents = $templateContents -replace [regex]::escape("[CanTargetMacOS]"), "'$(ShouldMultiTarget "macos")'";
6969
$templateContents = $templateContents -replace [regex]::escape("[CanTargetiOS]"), "'$(ShouldMultiTarget "ios")'";
70-
$templateContents = $templateContents -replace [regex]::escape("[CanTargetDroid]"), "'$(ShouldMultiTarget "droid")'";
70+
$templateContents = $templateContents -replace [regex]::escape("[CanTargetDroid]"), "'$(ShouldMultiTarget "android")'";
7171
$templateContents = $templateContents -replace [regex]::escape("[CanTargetNetstandard]"), "'$(ShouldMultiTarget "netstandard")'";
7272

7373
# Save to disk

0 commit comments

Comments
 (0)