2021-06-29 13:49:37 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-03-19 17:07:27 -03:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
2021-07-05 13:20:06 -07:00
|
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
2021-03-30 20:29:50 -03:00
|
|
|
<DebugType>embedded</DebugType>
|
2021-03-19 17:07:27 -03:00
|
|
|
</PropertyGroup>
|
2021-06-29 13:57:11 -07:00
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)|$(Configuration)' == 'win-x64|Debug'">
|
2021-06-29 13:49:37 -07:00
|
|
|
<DefineConstants>WindowsDebug</DefineConstants>
|
2021-03-19 17:07:27 -03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="**\*.xaml.cs">
|
|
|
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<AvaloniaResource Include="**\*.xaml" Exclude="bin\**;obj\**">
|
|
|
|
|
<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>
|
2021-07-12 15:40:56 -07:00
|
|
|
<ProjectReference Include="..\RedBookPlayer.Models\RedBookPlayer.Models.csproj" />
|
2021-03-19 17:07:27 -03:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="Assets\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|