89 строки
3.8 KiB
XML
89 строки
3.8 KiB
XML
<Project>
|
|
<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 ">
|
|
<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>
|
|
|
|
<!-- Android -->
|
|
<PropertyGroup Condition="$(TargetFramework.StartsWith('net6.0-android'))">
|
|
<DefineConstants>$(DefineConstants);MONOANDROID</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<!-- iOS -->
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-ios' ">
|
|
<DefineConstants>$(DefineConstants);IOS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-maccatalyst' ">
|
|
<DefineConstants>$(DefineConstants);MACCATALYST;IOS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-windows')) == true ">
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
|
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|
<DefineConstants>WINDOWS;$(DefineConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" $(TargetFramework.StartsWith('uap10.0')) ">
|
|
<DefineConstants>WINDOWS_UWP;$(DefineConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="$(TargetFramework.Contains('-windows')) == true ">
|
|
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.3.1" />
|
|
<PackageReference Include="Microsoft.Maui.Graphics.Win2D.WinUI.Desktop" Version="6.0.501" />
|
|
</ItemGroup>
|
|
</Project> |