42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<ProduceAssemblyReference>true</ProduceAssemblyReference>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>pdbonly</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Xamarin.Forms" Version="3.6.0.264807" />
|
|
<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="NAudio" Version="1.9.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Frontend\" />
|
|
<Folder Include="Backend\" />
|
|
<Folder Include="Frontend\Components\" />
|
|
<Folder Include="Frontend\Views\" />
|
|
<Folder Include="Frontend\Views\Songs\" />
|
|
<Folder Include="Frontend\Views\MainView\" />
|
|
<Folder Include="Frontend\Behaviors\" />
|
|
<Folder Include="Frontend\Components\NavigationMenu\" />
|
|
<Folder Include="Frontend\Views\Albums\" />
|
|
<Folder Include="Frontend\Views\Artists\" />
|
|
<Folder Include="Frontend\Views\Stations\" />
|
|
<Folder Include="Frontend\Components\MusicPlayer\" />
|
|
<Folder Include="Backend\Utils\" />
|
|
<Folder Include="Backend\Models\" />
|
|
<Folder Include="Backend\Services\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Frontend\Components\MusicPlayer\Player.xaml.cs">
|
|
<DependentUpon>Player.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project> |