Files
RedBookPlayer/RedBookPlayer.GUI/RedBookPlayer.GUI.csproj

32 lines
1.1 KiB
XML
Raw Normal View History

<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>
<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'">
<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>
<ProjectReference Include="..\RedBookPlayer.Common\RedBookPlayer.Common.csproj" />
2021-03-19 17:07:27 -03:00
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\*" />
</ItemGroup>
</Project>