66 строки
2.9 KiB
XML
66 строки
2.9 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<CometMauiVersion>6.0.101-preview.12.2336</CometMauiVersion>
|
|
</PropertyGroup>
|
|
<Import Project="External\Maui\eng\AndroidX.targets" />
|
|
<Import Project="External\Maui\eng\Versions.props" />
|
|
<Import Project="External\Maui\eng\Microsoft.Extensions.targets" />
|
|
<!-- Fancy file adding/removing based on .platform -->
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.iOS')) != true AND $(TargetFramework.StartsWith('net6.0-ios')) != true AND $(TargetFramework.StartsWith('net6.0-maccatalyst')) != true ">
|
|
<Compile Remove="**\**\*.iOS.cs" />
|
|
<None Include="**\**\*.iOS.cs" />
|
|
<Compile Remove="**\iOS\**\*.cs" />
|
|
<None Include="**\iOS\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.Mac')) != true ">
|
|
<Compile Remove="**\*.Mac.cs" />
|
|
<None Include="**\*.Mac.cs" />
|
|
<Compile Remove="**\Mac\**\*.cs" />
|
|
<None Include="**\Mac\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('Xamarin.Mac')) != true AND $(TargetFramework.StartsWith('Xamarin.iOS')) != true AND $(TargetFramework.StartsWith('net6.0-ios')) != true AND $(TargetFramework.StartsWith('net6.0-maccatalyst')) != true">
|
|
<Compile Remove="**\*.MaciOS.cs" />
|
|
<None Include="**\*.MaciOS.cs" />
|
|
<Compile Remove="**\MaciOS\**\*.cs" />
|
|
<None Include="**\MaciOS\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('MonoAndroid')) != true AND $(TargetFramework.StartsWith('net6.0-android')) != true ">
|
|
<Compile Remove="**\**\*.Android.cs" />
|
|
<None Include="**\**\*.Android.cs" />
|
|
<Compile Remove="**\Android\**\*.cs" />
|
|
<None Include="**\Android\**\*.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard')) != true AND '$(TargetFramework)' != 'net6.0'">
|
|
<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>
|
|
|
|
|
|
</Project>
|