mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-04 20:25:11 -05:00
26 lines
711 B
SYSTEMD
26 lines
711 B
SYSTEMD
<Project>
|
|
<!-- Project file used instead of the default csproj when the host system is not windows. This only skip the build. -->
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<NoWarn>NU1503</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
<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" />
|
|
|
|
<ItemGroup>
|
|
<None Include="@(Compile)" />
|
|
<Compile Remove="*" />
|
|
</ItemGroup>
|
|
</Project> |