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

39 lines
1.4 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>
2021-08-05 21:05:20 -07:00
<AvaloniaResource Include="**\*.xaml" Exclude="bin\**;obj\**;themes\**">
2021-03-19 17:07:27 -03:00
<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>
2021-08-05 21:05:20 -07:00
<ItemGroup>
<None Update="themes\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</None>
</ItemGroup>
2021-03-19 17:07:27 -03:00
</Project>