2019-12-01 11:53:30 +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-12-01 11:53:30 +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-12-01 11:53:30 +00:00
|
|
|
<PackageReference Include="Xamarin.Forms" Version="4.3.0.991211" />
|
|
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.3.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.3.1" />
|
|
|
|
<PackageReference Include="VideoLAN.LibVLC.Mac" Version="3.1.3.1" />
|
|
|
|
<PackageReference Include="Grpc" Version="2.25.0" />
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.25.0" PrivateAssests="All">
|
2019-12-01 00:30:39 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2019-12-01 11:53:30 +00:00
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.10.1" />
|
|
|
|
<PackageReference Include="Xam.Plugins.Settings" Version="3.1.1" />
|
|
|
|
<PackageReference Include="Sharpnado.Forms.HorizontalListView" Version="1.3.0" />
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2019-12-01 11:53:30 +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\Library\" />
|
|
|
|
<Folder Include="Design\Views\Profile\" />
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2019-12-01 11:53:30 +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-12-01 11:53:30 +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-11-30 20:46:09 +00:00
|
|
|
<ItemGroup>
|
2019-12-01 11:53:30 +00:00
|
|
|
<EmbeddedResource Update="Design\Components\NavigationMenu\NavigationMenu.css">
|
2019-12-01 00:30:39 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</EmbeddedResource>
|
2019-11-30 20:46:09 +00:00
|
|
|
</ItemGroup>
|
2019-05-16 22:07:36 +00:00
|
|
|
</Project>
|