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>
|
||||
|
||||
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
||||
<Import Project="Kyoo.Host.WindowsTrait.Skipped.target" Condition="$(IsWindows) != true" />
|
||||
|
||||
<Target Name="Build" Condition="$(IsWindows) != true">
|
||||
<Message Importance="high" Text="Detected current operating system is not windows, skipping WindowsHost build." />
|
||||
</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>
|
||||
<None Remove="*.target" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
Loading…
x
Reference in New Issue
Block a user