2020-01-19 22:30:09 +00:00
|
|
|
<Project
|
|
|
|
Sdk="Microsoft.NET.Sdk">
|
2019-05-31 14:17:14 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<ProduceAssemblyReference>true</ProduceAssemblyReference>
|
|
|
|
</PropertyGroup>
|
2020-01-19 22:30:09 +00:00
|
|
|
<PropertyGroup
|
|
|
|
Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2019-05-31 14:17:14 +00:00
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +00:00
|
|
|
<PackageReference
|
|
|
|
Include="Xamarin.Forms"
|
|
|
|
Version="4.3.0.991211"/>
|
|
|
|
<PackageReference
|
|
|
|
Include="Xamarin.Essentials"
|
|
|
|
Version="1.3.1"/>
|
|
|
|
<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>
|
2020-01-19 22:30:09 +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"/>
|
|
|
|
<PackageReference
|
|
|
|
Include="DLToolkit.Forms.Controls.FlowListView"
|
|
|
|
Version="2.0.11"/>
|
|
|
|
<PackageReference
|
|
|
|
Include="CarouselView.FormsPlugin"
|
|
|
|
Version="5.2.0"/>
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +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\MemberList\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Components\Library\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Views\Profile\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Components\DataGrid\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Resources\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Extensions\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Components\ImageButton\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Components\Dialogs\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Views\Party\NewPartyDialog\"/>
|
|
|
|
<Folder
|
|
|
|
Include="Design\Components\TabView\"/>
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
2019-12-02 00:14:36 +00:00
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +00:00
|
|
|
<Compile
|
|
|
|
Remove="Design\Behaviors\DeselectItemBehaviorBase.cs"/>
|
2019-12-02 00:14:36 +00:00
|
|
|
</ItemGroup>
|
2019-05-31 14:17:14 +00:00
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +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>
|
2020-01-19 22:30:09 +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"/>
|
|
|
|
<Protobuf
|
|
|
|
Include="Proto\party.v2.proto"/>
|
2019-05-31 14:17:14 +00:00
|
|
|
</ItemGroup>
|
2019-12-01 23:26:13 +00:00
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +00:00
|
|
|
<EmbeddedResource
|
|
|
|
Include="Resources\backward.png"/>
|
|
|
|
<EmbeddedResource
|
|
|
|
Include="Resources\forwards.png"/>
|
|
|
|
<EmbeddedResource
|
|
|
|
Include="Resources\like.png"/>
|
|
|
|
<EmbeddedResource
|
|
|
|
Include="Resources\play.png"/>
|
2019-12-01 23:26:13 +00:00
|
|
|
</ItemGroup>
|
2019-11-30 20:46:09 +00:00
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +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-12-01 23:26:13 +00:00
|
|
|
<ItemGroup>
|
2020-01-19 22:30:09 +00:00
|
|
|
<None
|
|
|
|
Remove="Design\Resources\unselected.png"/>
|
|
|
|
<None
|
|
|
|
Remove="Design\Components\MediaPlayer\play.png"/>
|
|
|
|
<None
|
|
|
|
Remove="Resources\backward.png"/>
|
|
|
|
<None
|
|
|
|
Remove="Resources\forwards.png"/>
|
|
|
|
<None
|
|
|
|
Remove="Resources\like.png"/>
|
|
|
|
<None
|
|
|
|
Remove="Resources\play.png"/>
|
2019-12-01 23:26:13 +00:00
|
|
|
</ItemGroup>
|
2019-05-16 22:07:36 +00:00
|
|
|
</Project>
|