2019-11-30 19:41:36 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-05-31 14:17:14 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<ProduceAssemblyReference>true</ProduceAssemblyReference>
|
|
|
|
</PropertyGroup>
|
2019-11-30 19:41:36 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2019-05-31 14:17:14 +00:00
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
2019-11-30 19:41:36 +00:00
|
|
|
<PackageReference Include="Xamarin.Forms" Version="4.1.0.581479" />
|
|
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.0.1" />
|
|
|
|
<PackageReference Include="Xamarin.Forms.DataGrid" Version="3.1.0" />
|
|
|
|
<PackageReference Include="taglib-sharp-netstandard2.0" Version="2.1.0" />
|
|
|
|
<PackageReference Include="LibVLCSharp.Forms" Version="3.0.0" />
|
|
|
|
<PackageReference Include="VideoLAN.LibVLC.Mac" Version="3.1.3" />
|
|
|
|
<PackageReference Include="Grpc" Version="1.21.0" />
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="1.21.0" PrivateAssests="All" />
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.8.0" />
|
|
|
|
<PackageReference Include="Xam.Plugins.Settings" Version="3.1.1" />
|
|
|
|
<PackageReference Include="Sharpnado.Forms.HorizontalListView" Version="1.2.0" />
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2019-11-30 19:41:36 +00:00
|
|
|
<Folder Include="Design\" />
|
|
|
|
<Folder Include="Design\Components\" />
|
|
|
|
<Folder Include="Design\Views\" />
|
|
|
|
<Folder Include="Design\Views\Songs\" />
|
|
|
|
<Folder Include="Design\Views\MainView\" />
|
|
|
|
<Folder Include="Design\Behaviors\" />
|
|
|
|
<Folder Include="Design\Components\NavigationMenu\" />
|
|
|
|
<Folder Include="Design\Views\Albums\" />
|
|
|
|
<Folder Include="Design\Views\Artists\" />
|
|
|
|
<Folder Include="Design\Views\Stations\" />
|
|
|
|
<Folder Include="Utils\" />
|
|
|
|
<Folder Include="Models\" />
|
|
|
|
<Folder Include="Services\" />
|
|
|
|
<Folder Include="Design\Views\Party\" />
|
|
|
|
<Folder Include="Design\Components\HostSelector\" />
|
|
|
|
<Folder Include="Design\Components\MemberList\" />
|
|
|
|
<Folder Include="Design\Components\Queue\" />
|
|
|
|
<Folder Include="Design\Views\Profile\" />
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2019-11-30 19:41:36 +00:00
|
|
|
<Compile Update="Design\Components\MusicPlayer\Player.xaml.cs">
|
2019-05-31 14:17:14 +00:00
|
|
|
<DependentUpon>Player.xaml</DependentUpon>
|
|
|
|
</Compile>
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2019-11-30 19:41:36 +00:00
|
|
|
<Protobuf Include="Proto\general.proto" />
|
|
|
|
<Protobuf Include="Proto\party.proto" />
|
|
|
|
<Protobuf Include="Proto\events.proto" />
|
|
|
|
<Protobuf Include="Proto\playback.proto" />
|
|
|
|
<Protobuf Include="Proto\sync.proto" />
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
2019-05-16 22:07:36 +00:00
|
|
|
</Project>
|