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

Commit 8c690f3

Browse files
committed
Added AndroidFragmentType msbuild property
The upcoming code behind generation feature requires knowing the type of `Fragment` to use in some cases. By default it uses `Android.App.Fragment`, but if the user installs the support fragment package, we want to default to use `Android.Support.V4.App.Fragment` instead. This inclusion of a msbuild property should override the default and use the support library version instead.
1 parent 53ae09f commit 8c690f3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

support-fragment/nuget/merge.targets

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<AndroidFragmentType>Android.Support.V4.App.Fragment</AndroidFragmentType>
5+
</PropertyGroup>
6+
</Project>

0 commit comments

Comments
 (0)