Skip to content

Commit 2c03712

Browse files
committed
Set DebugType to portable for all target frameworks
Added DebugType=portable for Debug and Release configurations across all supported target frameworks in Plugin.Maui.ML.csproj.
1 parent 01a0302 commit 2c03712

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

src/Plugin.Maui.ML/Plugin.Maui.ML.csproj

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,46 @@
6060
</WarningsAsErrors>
6161
</PropertyGroup>
6262

63+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'">
64+
<DebugType>portable</DebugType>
65+
</PropertyGroup>
66+
67+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-ios|AnyCPU'">
68+
<DebugType>portable</DebugType>
69+
</PropertyGroup>
70+
71+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-maccatalyst|AnyCPU'">
72+
<DebugType>portable</DebugType>
73+
</PropertyGroup>
74+
75+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0|AnyCPU'">
76+
<DebugType>portable</DebugType>
77+
</PropertyGroup>
78+
79+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-windows10.0.19041.0|AnyCPU'">
80+
<DebugType>portable</DebugType>
81+
</PropertyGroup>
82+
83+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'">
84+
<DebugType>portable</DebugType>
85+
</PropertyGroup>
86+
87+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-ios|AnyCPU'">
88+
<DebugType>portable</DebugType>
89+
</PropertyGroup>
90+
91+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-maccatalyst|AnyCPU'">
92+
<DebugType>portable</DebugType>
93+
</PropertyGroup>
94+
95+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0|AnyCPU'">
96+
<DebugType>portable</DebugType>
97+
</PropertyGroup>
98+
99+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-windows10.0.19041.0|AnyCPU'">
100+
<DebugType>portable</DebugType>
101+
</PropertyGroup>
102+
63103
<!-- Android-specific files -->
64104
<ItemGroup Condition="$(TargetFramework.Contains('-android')) != true">
65105
<Compile Remove="**\*.Android.cs" />

0 commit comments

Comments
 (0)