mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
<DebugType>embedded</DebugType>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)|$(Configuration)' == 'win-x64|Debug'">
|
|
<DefineConstants>WindowsDebug</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="**\*.xaml.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<AvaloniaResource Include="**\*.xaml" Exclude="bin\**;obj\**;themes\**">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.9.12" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.9.12" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.12" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RedBookPlayer.Models\RedBookPlayer.Models.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="themes\**">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|