2021-07-14 21:49:24 +03:00
|
|
|
<Project>
|
2021-10-26 00:25:56 +03:00
|
|
|
<!-- Fancy file adding/removing based on .platform -->
|
2022-11-10 02:03:53 +03:00
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.iOS')) != true AND $(TargetFramework.Contains('-ios')) != true AND $(TargetFramework.Contains('-maccatalyst')) != true ">
|
2021-10-26 00:25:56 +03:00
|
|
|
<Compile Remove="**\**\*.iOS.cs" />
|
|
|
|
<None Include="**\**\*.iOS.cs" />
|
|
|
|
<Compile Remove="**\iOS\**\*.cs" />
|
|
|
|
<None Include="**\iOS\**\*.cs" />
|
|
|
|
</ItemGroup>
|
2022-11-10 02:03:53 +03:00
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.Mac')) != true AND $(TargetFramework.Contains('-maccatalyst')) != true ">
|
2021-10-26 00:25:56 +03:00
|
|
|
<Compile Remove="**\*.Mac.cs" />
|
|
|
|
<None Include="**\*.Mac.cs" />
|
|
|
|
<Compile Remove="**\Mac\**\*.cs" />
|
|
|
|
<None Include="**\Mac\**\*.cs" />
|
2022-01-11 03:04:02 +03:00
|
|
|
<Compile Remove="**\MacCatalyst\**\*.cs" />
|
|
|
|
<None Include="**\MacCatalyst\**\*.cs" />
|
2021-10-26 00:25:56 +03:00
|
|
|
</ItemGroup>
|
2022-11-10 02:03:53 +03:00
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.Mac')) != true AND $(TargetFramework.Contains('Xamarin.iOS')) != true AND $(TargetFramework.Contains('-ios')) != true AND $(TargetFramework.StartsWith('-maccatalyst')) != true">
|
2021-10-26 00:25:56 +03:00
|
|
|
<Compile Remove="**\*.MaciOS.cs" />
|
|
|
|
<None Include="**\*.MaciOS.cs" />
|
|
|
|
<Compile Remove="**\MaciOS\**\*.cs" />
|
|
|
|
<None Include="**\MaciOS\**\*.cs" />
|
|
|
|
</ItemGroup>
|
2022-11-10 02:03:53 +03:00
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('MonoAndroid')) != true AND $(TargetFramework.Contains('-android')) != true ">
|
2021-10-26 00:25:56 +03:00
|
|
|
<Compile Remove="**\**\*.Android.cs" />
|
|
|
|
<None Include="**\**\*.Android.cs" />
|
|
|
|
<Compile Remove="**\Android\**\*.cs" />
|
|
|
|
<None Include="**\Android\**\*.cs" />
|
|
|
|
</ItemGroup>
|
2022-11-10 02:03:53 +03:00
|
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard')) != true AND '$(TargetFramework)' != 'net6.0' AND '$(TargetFramework)' != 'net7.0'">
|
2021-10-26 00:25:56 +03:00
|
|
|
<Compile Remove="**\*.Standard.cs" />
|
|
|
|
<None Include="**\*.Standard.cs" />
|
|
|
|
<Compile Remove="**\Standard\**\*.cs" />
|
|
|
|
<None Include="**\Standard\**\*.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$(TargetFramework.Contains('-windows')) != true ">
|
|
|
|
<Compile Remove="**\*.Windows.cs" />
|
|
|
|
<None Include="**\*.Windows.cs" />
|
|
|
|
<Compile Remove="**\Windows\**\*.cs" />
|
|
|
|
<None Include="**\Windows\**\*.cs" />
|
|
|
|
<Compile Remove="**\*.uwp.cs" />
|
|
|
|
<None Include="**\*.uwp.cs" />
|
|
|
|
<MauiXaml Remove="**\*.Windows.xaml" />
|
|
|
|
<None Include="**\*.Windows.xaml" />
|
|
|
|
<Compile Remove="**\*.Windows.xaml.cs" />
|
|
|
|
<None Include="**\*.Windows.xaml.cs" />
|
|
|
|
<MauiXaml Remove="**\Windows\**\*.xaml" />
|
|
|
|
<None Include="**\Windows\**\*.xaml" />
|
|
|
|
<Compile Remove="**\Windows\**\*.xaml.cs" />
|
|
|
|
<None Include="**\Windows\**\*.xaml.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
|
|
|
|
<Compile Remove="**\*.uwp.cs" />
|
|
|
|
<None Include="**\*.uwp.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="bin\**;obj\**" />
|
|
|
|
<None Remove="bin\**;obj\**" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
2021-07-14 21:49:24 +03:00
|
|
|
</Project>
|