-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathExamples.Elmish.MusicPlayer.fsproj
More file actions
38 lines (35 loc) · 1.64 KB
/
Examples.Elmish.MusicPlayer.fsproj
File metadata and controls
38 lines (35 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Examples.MusicPlayer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" />
<AvaloniaResource Include="Assets\Icons\**" />
<Compile Include="Icons.fs" />
<Compile Include="Types.fs" />
<Compile Include="Songs.fs" />
<Compile Include="PlayerLib.fs" />
<Compile Include="Dialogs.fs" />
<Compile Include="Extensions.fs" />
<Compile Include="Playlist.fs" />
<Compile Include="Player.fs" />
<Compile Include="Shell.fs" />
<Compile Include="Program.fs" />
<AvaloniaResource Include="**\*.xaml" />
<Content Include="Assets\Icons\icon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Diagnostics" Version="$(AvaloniaDiagnosticsVersion)" />
<PackageReference Include="VideoLAN.LibVLC.Mac" Version="3.1.3.1" />
<ProjectReference Include="..\..\..\Avalonia.FuncUI.Elmish\Avalonia.FuncUI.Elmish.fsproj" />
<ProjectReference Include="..\..\..\Avalonia.FuncUI\Avalonia.FuncUI.fsproj" />
<PackageReference Include="LibVLCSharp" Version="3.8.5" />
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.20" />
</ItemGroup>
</Project>