-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathImageSharpMjpegInput.csproj
More file actions
24 lines (22 loc) · 877 Bytes
/
ImageSharpMjpegInput.csproj
File metadata and controls
24 lines (22 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibVLCSharp" Version="3.6.1" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta13" />
<PackageReference Include="System.IO.Pipelines" Version="6.0.0" />
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.16" />
</ItemGroup>
<ItemGroup>
<Compile Include="../Common/PipeMediaInput.cs"></Compile>
<None Update="OpenSans-Regular.ttf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>