提交 56dde3e9 编写于 作者: Y Youssef Victor

chore: Adjust and simplify

上级 a3928a44
......@@ -15,85 +15,40 @@
<_IsNetStd>false</_IsNetStd>
<_IsNetStd Condition="'$(TargetFramework)'=='netstandard2.0' or $(_IsNetCore)">true</_IsNetStd>
<_IsUWP>false</_IsUWP>
<_IsUWP Condition="'$(TargetFramework)'=='uap10.0'">true</_IsUWP>
</PropertyGroup>
<ItemGroup>
<AndroidResource Include="Resources\**\*.xml" Condition="$(IsAndroid)" />
<None Include="**\*.netstd.cs" Exclude="bin\**\*.netstd.cs;obj\**\*.netstd.cs" />
<Compile Remove="**\*.netstd.cs" />
<Compile Include="**\*.netstd.cs"
Exclude="bin\**\*.netstd.cs;obj\**\*.netstd.cs"
Condition="$(_IsNetStd)" />
<None Include="**\*.wasm.cs" Exclude="bin\**\*.wasm.cs;obj\**\*.wasm.cs" />
<Compile Remove="**\*.wasm.cs" />
<Compile Include="**\*.wasm.cs"
Exclude="bin\**\*.wasm.cs;obj\**\*.wasm.cs"
Condition="'$(UnoRuntimeIdentifier)'=='WebAssembly'" />
<None Include="**\*.skia.cs" Exclude="bin\**\*.skia.cs;obj\**\*.skia.cs" />
<Compile Remove="**\*.skia.cs" />
<Compile Include="**\*.skia.cs"
Exclude="bin\**\*.skia.cs;obj\**\*.skia.cs"
Condition="'$(UnoRuntimeIdentifier)'=='Skia'" />
<None Include="**\*.netstdref.cs" Exclude="bin\**\*.netstdref.cs;obj\**\*.netstdref.cs" />
<Compile Remove="**\*.netstdref.cs" />
<Compile Include="**\*.netstdref.cs"
Exclude="bin\**\*.netstdref.cs;obj\**\*.netstdref.cs"
Condition="$(_IsNetStd) and '$(UnoRuntimeIdentifier)'=='Reference'" />
<None Include="**\*.iOS.cs" Exclude="bin\**\*.iOS.cs;obj\**\*.iOS.cs" />
<Compile Remove="**\*.iOS.cs" />
<Compile Include="**\*.iOS.cs"
Exclude="bin\**\*.iOS.cs;obj\**\*.iOS.cs"
Condition="$(IsIOSOrCatalyst)" />
<None Include="**\*.macOS.cs" Exclude="bin\**\*.macOS.cs;obj\**\*.macOS.cs" />
<Compile Remove="**\*.macOS.cs" />
<Compile Include="**\*.macOS.cs"
Exclude="bin\**\*.macOS.cs;obj\**\*.macOS.cs"
Condition="$(IsMacOS)" />
<None Include="**\*.iOSmacOS.cs" Exclude="bin\**\*.iOSmacOS.cs;obj\**\*.iOSmacOS.cs" />
<Compile Remove="**\*.iOSmacOS.cs" />
<Compile Include="**\*.iOSmacOS.cs"
Exclude="bin\**\*.iOSmacOS.cs;obj\**\*.iOSmacOS.cs"
Condition="$(IsMacOS) or $(IsIOSOrCatalyst)" />
<None Include="**\*.Android.cs" Exclude="bin\**\*.Android.cs;obj\**\*.Android.cs" />
<Compile Remove="**\*.Android.cs" />
<Compile Include="**\*.Android.cs"
Exclude="bin\**\*.Android.cs;obj\**\*.Android.cs"
Condition="$(IsAndroid)" />
<None Include="**\*.Xamarin.cs" Exclude="bin\**\*.Xamarin.cs;obj\**\*.Xamarin.cs" />
<Compile Remove="**\*.Xamarin.cs" />
<Compile Include="**\*.Xamarin.cs"
Exclude="bin\**\*.Xamarin.cs;obj\**\*.Xamarin.cs"
Condition="$(IsAndroid) or $(IsIOSOrCatalyst) or $(IsMacOS)" />
<None Include="**\*.UWP.cs" Exclude="bin\**\*.UWP.cs;obj\**\*.UWP.cs" />
<Compile Remove="**\*.UWP.cs" />
<Compile Include="**\*.UWP.cs"
Exclude="bin\**\*.UWP.cs;obj\**\*.UWP.cs"
Condition="'$(TargetFramework)'=='uap10.0'" />
<None Include="**\*.WinRT.cs" Exclude="bin\**\*.WinRT.cs;obj\**\*.WinRT.cs" />
<Compile Remove="**\*.WinRT.cs" />
<Compile Include="**\*.WinRT.cs"
Exclude="bin\**\*.WinRT.cs;obj\**\*.WinRT.cs"
Condition="'$(TargetFramework)'=='uap10.0'" />
<None Include="**\*.net.cs" Exclude="bin\**\*.WinRT.cs;obj\**\*.net.cs" />
<Compile Remove="**\*.net.cs" />
<Compile Include="**\*.net.cs"
Exclude="bin\**\*.net.cs;obj\**\*.net.cs"
Condition="'$(TargetFramework)'=='net461'" />
<None Include="**\*.netstd.cs" Exclude="bin\**\*.netstd.cs;obj\**\*.netstd.cs" Condition="!$(_IsNetStd)" />
<Compile Remove="**\*.netstd.cs" Condition="!$(_IsNetStd)" />
<None Include="**\*.wasm.cs" Exclude="bin\**\*.wasm.cs;obj\**\*.wasm.cs" Condition="'$(UnoRuntimeIdentifier)'!='WebAssembly'" />
<Compile Remove="**\*.wasm.cs" Condition="'$(UnoRuntimeIdentifier)'!='WebAssembly'" />
<None Include="**\*.skia.cs" Exclude="bin\**\*.skia.cs;obj\**\*.skia.cs" Condition="'$(UnoRuntimeIdentifier)'!='Skia'" />
<Compile Remove="**\*.skia.cs" Condition="'$(UnoRuntimeIdentifier)'!='Skia'" />
<None Include="**\*.netstdref.cs" Exclude="bin\**\*.netstdref.cs;obj\**\*.netstdref.cs" Condition="!$(_IsNetStd) or '$(UnoRuntimeIdentifier)'!='Reference'" />
<Compile Remove="**\*.netstdref.cs" Condition="!$(_IsNetStd) or '$(UnoRuntimeIdentifier)'!='Reference'" />
<None Include="**\*.iOS.cs" Exclude="bin\**\*.iOS.cs;obj\**\*.iOS.cs" Condition="!$(IsIOSOrCatalyst)" />
<Compile Remove="**\*.iOS.cs" Condition="!$(IsIOSOrCatalyst)" />
<None Include="**\*.macOS.cs" Exclude="bin\**\*.macOS.cs;obj\**\*.macOS.cs" Condition="!$(IsMacOS)" />
<Compile Remove="**\*.macOS.cs" Condition="!$(IsMacOS)" />
<None Include="**\*.iOSmacOS.cs" Exclude="bin\**\*.iOSmacOS.cs;obj\**\*.iOSmacOS.cs" Condition="!$(IsMacOS) and !$(IsIOSOrCatalyst)" />
<Compile Remove="**\*.iOSmacOS.cs" Condition="!$(IsMacOS) and !$(IsIOSOrCatalyst)" />
<None Include="**\*.Android.cs" Exclude="bin\**\*.Android.cs;obj\**\*.Android.cs" Condition="!$(IsAndroid)" />
<Compile Remove="**\*.Android.cs" Condition="!$(IsAndroid)" />
<None Include="**\*.Xamarin.cs" Exclude="bin\**\*.Xamarin.cs;obj\**\*.Xamarin.cs" Condition="!$(IsAndroid) and !$(IsIOSOrCatalyst) and !$(IsMacOS)" />
<Compile Remove="**\*.Xamarin.cs" Condition="!$(IsAndroid) and !$(IsIOSOrCatalyst) and !$(IsMacOS)" />
<None Include="**\*.net.cs" Exclude="bin\**\*.net.cs;obj\**\*.net.cs" Condition="'$(TargetFramework)'!='net461'" />
<Compile Remove="**\*.net.cs" Condition="'$(TargetFramework)'!='net461'" />
</ItemGroup>
</Project>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册