-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVideoKit.csproj
35 lines (28 loc) · 1.05 KB
/
VideoKit.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Exe</OutputType>
<ApplicationIcon>Platforms\Net\App.ico</ApplicationIcon>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>13</LangVersion>
</PropertyGroup>
<ItemGroup>
<!--Don't compile Android code in this project, but do show it in the
explorer window.-->
<Compile Remove="**\*.Android.cs" />
<Compile Remove="Platforms\Android\**" />
<None Include="**\*.Android.cs" />
<None Include="Platforms\Android\**" />
<!-- Ignore rider files -->
<None Include=".idea\**" />
<Compile Remove="Projects\**" />
<EmbeddedResource Remove="Projects\**" />
<None Remove="Projects\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LibVLCSharp" Version="3.9.0" />
<PackageReference Include="StereoKit" Version="0.4.0-preview.1133" />
<PackageReference Include="VideoLAN.LibVLC.Android" Version="3.5.3" />
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.21" />
</ItemGroup>
</Project>