mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Build: Fixing windows host build
This commit is contained in:
parent
ecf4dcfee1
commit
17ae46546b
@ -0,0 +1,16 @@
|
|||||||
|
<Project>
|
||||||
|
<Target Name="Build">
|
||||||
|
<Message Importance="high" Text="Detected current operating system is not windows, skipping WindowsHost build." />
|
||||||
|
</Target>
|
||||||
|
<Target Name="Clean"/>
|
||||||
|
<Target Name="Pack"/>
|
||||||
|
<Target Name="Restore"/>
|
||||||
|
<Target Name="Publish">
|
||||||
|
<Message Importance="high" Text="Detected current operating system is not windows, skipping WindowsHost build." />
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="@(Compile)" Visible="true" />
|
||||||
|
<Compile Remove="*" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -23,17 +23,9 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
||||||
|
<Import Project="Kyoo.Host.WindowsTrait.Skipped.target" Condition="$(IsWindows) != true" />
|
||||||
|
|
||||||
<Target Name="Build" Condition="$(IsWindows) != true">
|
<ItemGroup>
|
||||||
<Message Importance="high" Text="Detected current operating system is not windows, skipping WindowsHost build." />
|
<None Remove="*.target" />
|
||||||
</Target>
|
|
||||||
<Target Name="Clean" Condition="$(IsWindows) != true" />
|
|
||||||
<Target Name="Pack" Condition="$(IsWindows) != true" />
|
|
||||||
<Target Name="Restore" Condition="$(IsWindows) != true" />
|
|
||||||
<Target Name="Publish" Condition="$(IsWindows) != true" />
|
|
||||||
|
|
||||||
<ItemGroup Condition="$(IsWindows) != true">
|
|
||||||
<None Include="@(Compile)" Visible="true" />
|
|
||||||
<Compile Remove="*" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user