Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 9ef8764

Browse files
committed
Fix template project ids
1 parent 6f20122 commit 9ef8764

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/AndroidXProject.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
}
129129
}
130130
<!-- some additional fixes -->
131-
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.Transition.Transition")
131+
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.Transition")
132132
{
133133
<ProjectReference Include="..\androidx.fragment.fragment\androidx.fragment.fragment.csproj" PrivateAssets="none" />
134134
}
@@ -144,14 +144,14 @@
144144
}
145145
</ItemGroup>
146146

147-
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.Annotation.Annotation")
147+
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.Annotation")
148148
{
149149
<ItemGroup>
150150
<None Include="..\..\source\buildtasks\support-annotations\bin\$(Configuration)\Xamarin.Android.Support.BuildTasks.dll" Pack="True" PackagePath="build\$(TargetFramework)" />
151151
</ItemGroup>
152152
}
153153

154-
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.VectorDrawable.VectorDrawable")
154+
@if (@Model.NuGetPackageId == "Xamarin.AndroidX.VectorDrawable")
155155
{
156156
<ItemGroup>
157157
<None Include="..\..\source\buildtasks\support-vector-drawable\bin\$(Configuration)\Xamarin.Android.Support.Tasks.VectorDrawable.dll" Pack="True" PackagePath="build\$(TargetFramework)" />

0 commit comments

Comments
 (0)